{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/KVNwaLPHdUkFPLwcSOs8/243zS7yXQCZnOkXE3xJe/D15zXG0Ur.js", "ssg:https://framerusercontent.com/modules/dx1tbHduJvKmyeKpEBUV/n4WfOc4Dl1DQmrwXvlFc/AaxkBSX5h.js", "ssg:https://framerusercontent.com/modules/7WdsjY5ScY0Bhyd6vcM6/1ZCGGPGxrPS9FROhGNIj/aVITOSoBv.js", "ssg:https://framerusercontent.com/modules/n6znlTngYmoa5wJH0zL0/JNRobNTC1J9iQM2zTMKw/BxAOfkfKI.js", "ssg:https://framerusercontent.com/modules/5eU2CjxQbXXF7Z2tXkEX/Ea7VyPuCufVJ22nNdInb/EisFHUCft.js", "ssg:https://framerusercontent.com/modules/eFbp6SbTIwpGaxZWaoQO/N3IQCyMvtfwFyrpFWvyO/kuGxgy_3h.js", "ssg:https://framerusercontent.com/modules/otRTFoT0Fmjwcr7a9Itl/vregt5rLnjEqY1VCP1Dj/O7VfY2SHv.js", "ssg:https://framerusercontent.com/modules/ateRxbaAQcl0CKxBVxRK/vDkxvkJ1gzscQMT9go61/EDJTXkl36.js", "ssg:https://framerusercontent.com/modules/1vtqImOFdiavNqsJVWCg/sby4jDqsbUf5w8BWnT8s/ZQ98XFpM0.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "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\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>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 filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);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=filteredSlots.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=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.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(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.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:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.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<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.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:OPACITY_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?OPACITY_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:OPACITY_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 _child_props,_child_props1;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=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_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:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.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},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.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\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},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:0,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:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ 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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},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:0,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:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (e1877f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/5OLGG8neSMGb8O2hxLNm/zQyMSoFKNKp1ZkwNDDRl/Rp59sPfE3.js\";const cycleOrder=[\"cofyJGHR3\",\"jWrAzpDki\"];const serializationHash=\"framer-P2mpM\";const variantClassNames={cofyJGHR3:\"framer-v-tywqig\",jWrAzpDki:\"framer-v-1468rc6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"cofyJGHR3\",Phone:\"jWrAzpDki\"};const getProps=({company,height,id,image,name1,reviewContent,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,dUGIFftMv:(_ref=name1!==null&&name1!==void 0?name1:props.dUGIFftMv)!==null&&_ref!==void 0?_ref:\"Name\",gzIWG1Med:(_ref1=image!==null&&image!==void 0?image:props.gzIWG1Med)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/YNU6h6vkta0ifN79B8CCPiOCuRI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YNU6h6vkta0ifN79B8CCPiOCuRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/YNU6h6vkta0ifN79B8CCPiOCuRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YNU6h6vkta0ifN79B8CCPiOCuRI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YNU6h6vkta0ifN79B8CCPiOCuRI.png 4000w\"},tsk5CjC_4:(_ref2=company!==null&&company!==void 0?company:props.tsk5CjC_4)!==null&&_ref2!==void 0?_ref2:\"Company\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"cofyJGHR3\",vyxFwoWIQ:(_ref4=reviewContent!==null&&reviewContent!==void 0?reviewContent:props.vyxFwoWIQ)!==null&&_ref4!==void 0?_ref4:'\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam\"'};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vyxFwoWIQ,gzIWG1Med,dUGIFftMv,tsk5CjC_4,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cofyJGHR3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-tywqig\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"cofyJGHR3\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jWrAzpDki:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0ZpbmFuY2llciBEaXNwbGF5IExpZ2h0\",\"--framer-font-family\":'\"Financier Display Light\", \"Financier Display Light Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231)))\"},children:'\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam\"'})}),className:\"framer-hxsia9\",fonts:[\"CUSTOM;Financier Display Light\"],layoutDependency:layoutDependency,layoutId:\"kLLZgVehz\",style:{\"--extracted-gdpscs\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:vyxFwoWIQ,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jWrAzpDki:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0ZpbmFuY2llciBEaXNwbGF5IExpZ2h0\",\"--framer-font-family\":'\"Financier Display Light\", \"Financier Display Light Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231)))\"},children:'\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam\"'})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12t73oy\",layoutDependency:layoutDependency,layoutId:\"U5lpBmt_K\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12r89ma\",layoutDependency:layoutDependency,layoutId:\"sh8XKQqpZ\",style:{backgroundColor:\"var(--token-64990846-1147-4915-89ba-e974bfe7f2a4, rgb(32, 33, 36))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:4e3,pixelHeight:4e3,pixelWidth:4e3,sizes:\"50px\",...toResponsiveImage(gzIWG1Med)},className:\"framer-1nt6gzg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LlYhdX9Cm\",...addPropertyOverrides({jWrAzpDki:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:4e3,pixelHeight:4e3,pixelWidth:4e3,sizes:\"40px\",...toResponsiveImage(gzIWG1Med)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c117dm\",layoutDependency:layoutDependency,layoutId:\"Ck7ni8Nas\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Name\"})}),className:\"framer-kw7lto\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uRkYXMthG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:dUGIFftMv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgRm91bmRlcnMgR3JvdGVzayBSZWd1bGFy\",\"--framer-font-family\":'\"Test Founders Grotesk Regular\", \"Test Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231)))\"},children:\"Company\"})}),className:\"framer-3m811w\",fonts:[\"CUSTOM;Test Founders Grotesk Regular\"],layoutDependency:layoutDependency,layoutId:\"nxI66ESbF\",style:{\"--extracted-r6o4lv\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:tsk5CjC_4,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-P2mpM.framer-18ptno3, .framer-P2mpM .framer-18ptno3 { display: block; }\",\".framer-P2mpM.framer-tywqig { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: auto; justify-content: center; overflow: hidden; padding: 0px 22px 0px 22px; position: relative; width: 861px; }\",\".framer-P2mpM .framer-hxsia9, .framer-P2mpM .framer-kw7lto, .framer-P2mpM .framer-3m811w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-P2mpM .framer-12t73oy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P2mpM .framer-12r89ma { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 50px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-P2mpM .framer-1nt6gzg { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-P2mpM .framer-1c117dm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-P2mpM.framer-tywqig, .framer-P2mpM .framer-12t73oy, .framer-P2mpM .framer-12r89ma, .framer-P2mpM .framer-1c117dm { gap: 0px; } .framer-P2mpM.framer-tywqig > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-P2mpM.framer-tywqig > :first-child, .framer-P2mpM .framer-12t73oy > :first-child, .framer-P2mpM .framer-1c117dm > :first-child { margin-top: 0px; } .framer-P2mpM.framer-tywqig > :last-child, .framer-P2mpM .framer-12t73oy > :last-child, .framer-P2mpM .framer-1c117dm > :last-child { margin-bottom: 0px; } .framer-P2mpM .framer-12t73oy > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-P2mpM .framer-12r89ma > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-P2mpM .framer-12r89ma > :first-child { margin-left: 0px; } .framer-P2mpM .framer-12r89ma > :last-child { margin-right: 0px; } .framer-P2mpM .framer-1c117dm > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } }\",\".framer-P2mpM.framer-v-1468rc6.framer-tywqig { gap: 28px; width: 459px; }\",\".framer-P2mpM.framer-v-1468rc6 .framer-12t73oy { gap: 6px; }\",\".framer-P2mpM.framer-v-1468rc6 .framer-12r89ma { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-P2mpM.framer-v-1468rc6.framer-tywqig, .framer-P2mpM.framer-v-1468rc6 .framer-12t73oy { gap: 0px; } .framer-P2mpM.framer-v-1468rc6.framer-tywqig > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-P2mpM.framer-v-1468rc6.framer-tywqig > :first-child, .framer-P2mpM.framer-v-1468rc6 .framer-12t73oy > :first-child { margin-top: 0px; } .framer-P2mpM.framer-v-1468rc6.framer-tywqig > :last-child, .framer-P2mpM.framer-v-1468rc6 .framer-12t73oy > :last-child { margin-bottom: 0px; } .framer-P2mpM.framer-v-1468rc6 .framer-12t73oy > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 271\n * @framerIntrinsicWidth 861\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jWrAzpDki\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vyxFwoWIQ\":\"reviewContent\",\"gzIWG1Med\":\"image\",\"dUGIFftMv\":\"name1\",\"tsk5CjC_4\":\"company\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerD15zXG0Ur=withCSS(Component,css,\"framer-P2mpM\");export default FramerD15zXG0Ur;FramerD15zXG0Ur.displayName=\"Testimonial/Style 4\";FramerD15zXG0Ur.defaultProps={height:271,width:861};addPropertyControls(FramerD15zXG0Ur,{variant:{options:[\"cofyJGHR3\",\"jWrAzpDki\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},vyxFwoWIQ:{defaultValue:'\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam\"',displayTextArea:false,title:\"Review Content\",type:ControlType.String},gzIWG1Med:{__defaultAssetReference:\"data:framer/asset-reference,YNU6h6vkta0ifN79B8CCPiOCuRI.png?originalFilename=Image-Dark.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},dUGIFftMv:{defaultValue:\"Name\",displayTextArea:false,title:\"Name\",type:ControlType.String},tsk5CjC_4:{defaultValue:\"Company\",displayTextArea:false,title:\"Company\",type:ControlType.String}});addFonts(FramerD15zXG0Ur,[{explicitInter:true,fonts:[{family:\"Financier Display Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/t7QafxBZBqHLIDhu3SNEwmzfT8.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Test Founders Grotesk Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/noPQ6VFaDhk4XoDkgx88chhQKlY.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD15zXG0Ur\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"861\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"271\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jWrAzpDki\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"vyxFwoWIQ\\\":\\\"reviewContent\\\",\\\"gzIWG1Med\\\":\\\"image\\\",\\\"dUGIFftMv\\\":\\\"name1\\\",\\\"tsk5CjC_4\\\":\\\"company\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c7f0859)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import Carousel1 from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import TestimonialStyle4 from\"https://framerusercontent.com/modules/KVNwaLPHdUkFPLwcSOs8/243zS7yXQCZnOkXE3xJe/D15zXG0Ur.js\";const TestimonialStyle4Fonts=getFonts(TestimonialStyle4);const CarouselFonts=getFonts(Carousel);const Carousel1Fonts=getFonts(Carousel1);const TestimonialStyle4Controls=getPropertyControls(TestimonialStyle4);const cycleOrder=[\"D7B53fNuc\",\"isNpTL74x\",\"H_cFy6m2v\"];const serializationHash=\"framer-3ERF2\";const variantClassNames={D7B53fNuc:\"framer-v-8g1qi7\",H_cFy6m2v:\"framer-v-1v67ne9\",isNpTL74x:\"framer-v-10mbxk1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Desktop:\"cofyJGHR3\",Phone:\"jWrAzpDki\"};const humanReadableVariantMap={Desktop:\"D7B53fNuc\",Phone:\"H_cFy6m2v\",Tablet:\"isNpTL74x\"};const getProps=({height,id,screen,width,...props})=>{var _humanReadableEnumMap_screen,_ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,t6G59K00p:(_ref1=(_ref=(_humanReadableEnumMap_screen=humanReadableEnumMap[screen])!==null&&_humanReadableEnumMap_screen!==void 0?_humanReadableEnumMap_screen:screen)!==null&&_ref!==void 0?_ref:props.t6G59K00p)!==null&&_ref1!==void 0?_ref1:\"cofyJGHR3\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"D7B53fNuc\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,t6G59K00p,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"D7B53fNuc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"H_cFy6m2v\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"H_cFy6m2v\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8g1qi7\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"D7B53fNuc\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a70fa06b-4a53-4849-b9b7-7a791bd3e02c, rgb(255, 255, 255))\",...style},...addPropertyOverrides({H_cFy6m2v:{\"data-framer-name\":\"Phone\"},isNpTL74x:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zcw4gr-container\",layoutDependency:layoutDependency,layoutId:\"sDUT6ZzJ6-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-64990846-1147-4915-89ba-e974bfe7f2a4, rgb(32, 33, 36))\",arrowPadding:0,arrowRadius:32,arrowSize:32,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:222,type:\"spring\"},fadeWidth:8},gap:0,height:\"100%\",id:\"sDUT6ZzJ6\",layoutId:\"sDUT6ZzJ6\",padding:0,paddingBottom:66,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:4,dotsFill:\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(20, 20, 20))\",dotsGap:17,dotsInset:10,dotSize:7,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y6c6oq-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"qbjCyJhYE-container\",name:\"1\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Joshua Shifren\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/u4xog0Ma7a3TLsNg6kRsgiXr7I.webp\"},\"\"),height:\"100%\",id:\"qbjCyJhYE\",layoutId:\"qbjCyJhYE\",name:\"1\",style:{width:\"100%\"},tsk5CjC_4:\"Founder, Neon Navy\",variant:\"cofyJGHR3\",vyxFwoWIQ:'\"Bolster\u2019s omakase-inspired method not only showcased their creative prowess but also demonstrated \\u2028a remarkable ability \\u2028to engage clients in \\u2028a unique and meaningful way. \"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dc8x0o-container\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"FYVFo1vxQ-container\",name:\"2\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Galym Uteulin\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/X4LOY6MfQookKnViJunbU3zagk.webp\"},\"Galym Uteulin\"),height:\"100%\",id:\"FYVFo1vxQ\",layoutId:\"FYVFo1vxQ\",name:\"2\",style:{width:\"100%\"},tsk5CjC_4:\"Founder, ZenGuard AI\",variant:\"cofyJGHR3\",vyxFwoWIQ:'\"Awesome result - I strongly recommend Bolster for anyone looking for a branding/marketing partner, especially if you are a young startup.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wsbfut-container\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"raS3GsWn_-container\",name:\"3\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"David Ly Khim\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/l4I2vSk7OllJJJEdwACjlrJQ1IA.webp\"},\"\"),height:\"100%\",id:\"raS3GsWn_\",layoutId:\"raS3GsWn_\",name:\"3\",style:{width:\"100%\"},tsk5CjC_4:\"Founder, Omniscient\",variant:t6G59K00p,vyxFwoWIQ:'\"Bolster took all the information I provided and crafted an identity we\\'re extremely excited about. Their team is a pleasure to work with and I strongly recommend them for any design needs.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uca92n-container\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"nnmzbnMro-container\",name:\"4\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Brynn Putnam\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/qb1NePpKsb02MQdCFfGsmlFlHgk.png\"},\"\"),height:\"100%\",id:\"nnmzbnMro\",layoutId:\"nnmzbnMro\",name:\"4\",style:{width:\"100%\"},tsk5CjC_4:\"CEO & Founder, Elderhood and MIRROR\",variant:t6G59K00p,vyxFwoWIQ:'\"Henry is a pleasure to work with! He & his team helped us create a beautiful brand for a challenging new category and then led the creation of a full suite of web, print & marketing assets.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5aeeuw-container\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"ys1c39Mfj-container\",name:\"5\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Matt Sanocki\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/VWvYSefrOin7og2yvZbdgf7ZZI.jpeg\"},\"\"),height:\"100%\",id:\"ys1c39Mfj\",layoutId:\"ys1c39Mfj\",name:\"5\",style:{width:\"100%\"},tsk5CjC_4:\"Founder, Mineral.io\",variant:t6G59K00p,vyxFwoWIQ:'\"From the initial discussions to the final product, Henry and his team displayed an unmatched level of professionalism and creativity. I was blown away by the results.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ep33b-container\",\"data-framer-name\":\"6\",layoutDependency:layoutDependency,layoutId:\"sB9Dussj2-container\",name:\"6\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Gabrielle Langholtz\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/GkecpuoqmzXSim4dJyfVfyUlYVw.jpeg\",srcSet:\"https://framerusercontent.com/images/GkecpuoqmzXSim4dJyfVfyUlYVw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GkecpuoqmzXSim4dJyfVfyUlYVw.jpeg 800w\"},\"\"),height:\"100%\",id:\"sB9Dussj2\",layoutId:\"sB9Dussj2\",name:\"6\",style:{width:\"100%\"},tsk5CjC_4:\"Director of Communications, Carversville Farm Foundation\",variant:t6G59K00p,vyxFwoWIQ:\"Henry & his team invested the time to understand our organization\u2019s key goals, explored multiple directions, incorporated feedback successfully, & ultimately delivered a strong new brand on an extremely fast timeline.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13lwhu5-container\",\"data-framer-name\":\"7\",layoutDependency:layoutDependency,layoutId:\"XjfmFKi1W-container\",name:\"7\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Max Klein\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/1yMIxRwLXqhHltg5oZidChSfHFI.jpg\"},\"\"),height:\"100%\",id:\"XjfmFKi1W\",layoutId:\"XjfmFKi1W\",name:\"7\",style:{width:\"100%\"},tsk5CjC_4:\"Founder and CEO, LEA\",variant:t6G59K00p,vyxFwoWIQ:'\"Engaging with Bolster to create LEA\\'s brand was a great decision. Their innovative approach was fast, and the result accurately reflects our mission to empower financial advisors.\"',width:\"100%\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({isNpTL74x:{progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"stretch\"}}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-166sbgr-container\",\"data-framer-name\":\"phone\",layoutDependency:layoutDependency,layoutId:\"gpttHv4mo-container\",name:\"phone\",children:/*#__PURE__*/_jsx(Carousel1,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:0,height:\"100%\",id:\"gpttHv4mo\",layoutId:\"gpttHv4mo\",name:\"phone\",padding:0,paddingBottom:44,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"441px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d6hx2n-container\",\"data-framer-name\":\"Phone1\",layoutDependency:layoutDependency,layoutId:\"emzsNIT9U-container\",name:\"Phone1\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Joshua Shifren\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/u4xog0Ma7a3TLsNg6kRsgiXr7I.webp\"},\"\"),height:\"100%\",id:\"emzsNIT9U\",layoutId:\"emzsNIT9U\",name:\"Phone1\",style:{width:\"100%\"},tsk5CjC_4:\"Founder, Neon Navy\",variant:\"jWrAzpDki\",vyxFwoWIQ:'\"Bolster\u2019s omakase-inspired method not only showcased their creative prowess but also demonstrated \\u2028a remarkable ability \\u2028to engage clients in \\u2028a unique and meaningful way. \"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"440px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sa5juz-container\",\"data-framer-name\":\"Phone2\",layoutDependency:layoutDependency,layoutId:\"Z57mQRC16-container\",name:\"Phone2\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Galym Uteulin\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/X4LOY6MfQookKnViJunbU3zagk.webp\"},\"Galym Uteulin\"),height:\"100%\",id:\"Z57mQRC16\",layoutId:\"Z57mQRC16\",name:\"Phone2\",style:{width:\"100%\"},tsk5CjC_4:\"Founder, ZenGuard AI\",variant:\"jWrAzpDki\",vyxFwoWIQ:'\"Awesome result - I strongly recommend Bolster for anyone looking for a branding/marketing partner, especially if you are a young startup.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"440px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1djngv7-container\",\"data-framer-name\":\"Phone3\",layoutDependency:layoutDependency,layoutId:\"icJ8bMK8m-container\",name:\"Phone3\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"David Ly Khim\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/l4I2vSk7OllJJJEdwACjlrJQ1IA.webp\"},\"\"),height:\"100%\",id:\"icJ8bMK8m\",layoutId:\"icJ8bMK8m\",name:\"Phone3\",style:{width:\"100%\"},tsk5CjC_4:\"Founder, Omniscient\",variant:\"jWrAzpDki\",vyxFwoWIQ:'\"Bolster took all the information I provided and crafted an identity we\\'re extremely excited about. Their team is a pleasure to work with and I strongly recommend them for any design needs.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a8u0t6-container\",\"data-framer-name\":\"Phone 4\",layoutDependency:layoutDependency,layoutId:\"C_SfLGlh2-container\",name:\"Phone 4\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Brynn Putnam\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/qb1NePpKsb02MQdCFfGsmlFlHgk.png\"},\"\"),height:\"100%\",id:\"C_SfLGlh2\",layoutId:\"C_SfLGlh2\",name:\"Phone 4\",style:{width:\"100%\"},tsk5CjC_4:\"CEO & Founder, Elderhood and MIRROR\",variant:\"jWrAzpDki\",vyxFwoWIQ:'\"Henry is a pleasure to work with! He & his team helped us create a beautiful brand for a challenging new category and then led the creation of a full suite of web, print & marketing assets.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ttlsix-container\",\"data-framer-name\":\"Phone 5\",layoutDependency:layoutDependency,layoutId:\"T6dpqSfiQ-container\",name:\"Phone 5\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Matt Sanocki\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/VWvYSefrOin7og2yvZbdgf7ZZI.jpeg\"},\"\"),height:\"100%\",id:\"T6dpqSfiQ\",layoutId:\"T6dpqSfiQ\",name:\"Phone 5\",style:{width:\"100%\"},tsk5CjC_4:\"Founder, Mineral.io\",variant:\"jWrAzpDki\",vyxFwoWIQ:'\"From the initial discussions to the final product, Henry and his team displayed an unmatched level of professionalism and creativity. I was blown away by the results.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-auynfl-container\",\"data-framer-name\":\"Phone 6\",layoutDependency:layoutDependency,layoutId:\"CD3J87JzA-container\",name:\"Phone 6\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Gabrielle Langholtz\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/GkecpuoqmzXSim4dJyfVfyUlYVw.jpeg\",srcSet:\"https://framerusercontent.com/images/GkecpuoqmzXSim4dJyfVfyUlYVw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GkecpuoqmzXSim4dJyfVfyUlYVw.jpeg 800w\"},\"\"),height:\"100%\",id:\"CD3J87JzA\",layoutId:\"CD3J87JzA\",name:\"Phone 6\",style:{width:\"100%\"},tsk5CjC_4:\"Director of Communications, Carversville Farm Foundation\",variant:\"jWrAzpDki\",vyxFwoWIQ:\"Henry & his team invested the time to understand our organization\u2019s key goals, explored multiple directions, incorporated feedback successfully, & ultimately delivered a strong new brand on an extremely fast timeline.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"341px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ufmboy-container\",\"data-framer-name\":\"Phone 7\",layoutDependency:layoutDependency,layoutId:\"gNVaCAMlr-container\",name:\"Phone 7\",children:/*#__PURE__*/_jsx(TestimonialStyle4,{dUGIFftMv:\"Max Klein\",gzIWG1Med:addImageAlt({src:\"https://framerusercontent.com/images/1yMIxRwLXqhHltg5oZidChSfHFI.jpg\"},\"\"),height:\"100%\",id:\"gNVaCAMlr\",layoutId:\"gNVaCAMlr\",name:\"Phone 7\",style:{width:\"100%\"},tsk5CjC_4:\"Founder and CEO, LEA\",variant:\"jWrAzpDki\",vyxFwoWIQ:'\"Engaging with Bolster to create LEA\\'s brand was a great decision. Their innovative approach was fast, and the result accurately reflects our mission to empower financial advisors.\"',width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({H_cFy6m2v:{align:\"flex-start\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:4,dotsFill:\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(20, 20, 20))\",dotsGap:17,dotsInset:18,dotSize:7,dotsOpacity:.5,dotsPadding:10,dotsRadius:30,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"}}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3ERF2.framer-19nuu0q, .framer-3ERF2 .framer-19nuu0q { display: block; }\",\".framer-3ERF2.framer-8g1qi7 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 66px 66px 44px 66px; position: relative; width: 1200px; }\",\".framer-3ERF2 .framer-zcw4gr-container, .framer-3ERF2 .framer-166sbgr-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3ERF2 .framer-y6c6oq-container, .framer-3ERF2 .framer-1dc8x0o-container, .framer-3ERF2 .framer-1wsbfut-container, .framer-3ERF2 .framer-1uca92n-container, .framer-3ERF2 .framer-5aeeuw-container, .framer-3ERF2 .framer-14ep33b-container, .framer-3ERF2 .framer-13lwhu5-container, .framer-3ERF2 .framer-1a8u0t6-container, .framer-3ERF2 .framer-ttlsix-container, .framer-3ERF2 .framer-auynfl-container, .framer-3ERF2 .framer-ufmboy-container { height: auto; position: relative; width: 341px; }\",\".framer-3ERF2 .framer-d6hx2n-container { height: auto; position: relative; width: 441px; }\",\".framer-3ERF2 .framer-1sa5juz-container, .framer-3ERF2 .framer-1djngv7-container { height: auto; position: relative; width: 440px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3ERF2.framer-8g1qi7 { gap: 0px; } .framer-3ERF2.framer-8g1qi7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3ERF2.framer-8g1qi7 > :first-child { margin-top: 0px; } .framer-3ERF2.framer-8g1qi7 > :last-child { margin-bottom: 0px; } }\",\".framer-3ERF2.framer-v-10mbxk1.framer-8g1qi7 { padding: 44px; width: 810px; }\",\".framer-3ERF2.framer-v-1v67ne9.framer-8g1qi7 { padding: 44px 11px 22px 11px; width: 317px; }\",\".framer-3ERF2.framer-v-1v67ne9 .framer-166sbgr-container { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 491\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"isNpTL74x\":{\"layout\":[\"fixed\",\"auto\"]},\"H_cFy6m2v\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"t6G59K00p\":\"screen\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAaxkBSX5h=withCSS(Component,css,\"framer-3ERF2\");export default FramerAaxkBSX5h;FramerAaxkBSX5h.displayName=\"Testimonials/8\";FramerAaxkBSX5h.defaultProps={height:491,width:1200};addPropertyControls(FramerAaxkBSX5h,{variant:{options:[\"D7B53fNuc\",\"isNpTL74x\",\"H_cFy6m2v\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},t6G59K00p:(TestimonialStyle4Controls===null||TestimonialStyle4Controls===void 0?void 0:TestimonialStyle4Controls[\"variant\"])&&{...TestimonialStyle4Controls[\"variant\"],defaultValue:\"cofyJGHR3\",description:undefined,hidden:undefined,title:\"Screen\"}});addFonts(FramerAaxkBSX5h,[{explicitInter:true,fonts:[]},...TestimonialStyle4Fonts,...CarouselFonts,...Carousel1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAaxkBSX5h\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"isNpTL74x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H_cFy6m2v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"t6G59K00p\\\":\\\"screen\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"491\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AaxkBSX5h.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";const SlideshowFonts=getFonts(Slideshow);const enabledGestures={T2IzVjxxs:{hover:true}};const cycleOrder=[\"T2IzVjxxs\",\"EhfIIxMc1\"];const serializationHash=\"framer-kGQqe\";const variantClassNames={EhfIIxMc1:\"framer-v-1bujey5\",T2IzVjxxs:\"framer-v-1caoc6g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"T2IzVjxxs\",\"Variant 2\":\"EhfIIxMc1\"};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:\"T2IzVjxxs\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T2IzVjxxs\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"EhfIIxMc1\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1caoc6g\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"T2IzVjxxs\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"T2IzVjxxs-hover\":{\"data-framer-name\":undefined},EhfIIxMc1:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1in0ssl-container\",layoutDependency:layoutDependency,layoutId:\"i5RJXDz1H-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:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1024,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"i5RJXDz1H\",intervalControl:.9,itemAmount:1,layoutId:\"i5RJXDz1H\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1401,intrinsicWidth:1080,pixelHeight:2802,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/fxkN1UZQu6w7oeJ4DEPwVY44fU.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/fxkN1UZQu6w7oeJ4DEPwVY44fU.webp?scale-down-to=1024 789w,https://framerusercontent.com/images/fxkN1UZQu6w7oeJ4DEPwVY44fU.webp?scale-down-to=2048 1578w,https://framerusercontent.com/images/fxkN1UZQu6w7oeJ4DEPwVY44fU.webp 2160w\"},className:\"framer-1r6rs09\",\"data-framer-name\":\"Instagram_story_13\",layoutDependency:layoutDependency,layoutId:\"ZZu_VGYFT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1401,intrinsicWidth:1080,pixelHeight:2802,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/nq7KAqDqEukS4JtuDYZu5V6elQQ.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/nq7KAqDqEukS4JtuDYZu5V6elQQ.webp?scale-down-to=1024 789w,https://framerusercontent.com/images/nq7KAqDqEukS4JtuDYZu5V6elQQ.webp?scale-down-to=2048 1578w,https://framerusercontent.com/images/nq7KAqDqEukS4JtuDYZu5V6elQQ.webp 2160w\"},className:\"framer-1uh4vt1\",\"data-framer-name\":\"Instagram_story_6\",layoutDependency:layoutDependency,layoutId:\"tJsFDiX0D\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1401,intrinsicWidth:1080,pixelHeight:2802,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/levIPTs16sAJDy9AE7JYvJ5CNs.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/levIPTs16sAJDy9AE7JYvJ5CNs.webp?scale-down-to=1024 789w,https://framerusercontent.com/images/levIPTs16sAJDy9AE7JYvJ5CNs.webp?scale-down-to=2048 1578w,https://framerusercontent.com/images/levIPTs16sAJDy9AE7JYvJ5CNs.webp 2160w\"},className:\"framer-1rxouiy\",\"data-framer-name\":\"Instagram_story_8\",layoutDependency:layoutDependency,layoutId:\"X9Sr8DniE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1401,intrinsicWidth:1080,pixelHeight:2802,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/R0FI47mgAmPssl5RrObZO8mntk.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/R0FI47mgAmPssl5RrObZO8mntk.webp?scale-down-to=1024 789w,https://framerusercontent.com/images/R0FI47mgAmPssl5RrObZO8mntk.webp?scale-down-to=2048 1578w,https://framerusercontent.com/images/R0FI47mgAmPssl5RrObZO8mntk.webp 2160w\"},className:\"framer-14nntlp\",\"data-framer-name\":\"Instagram_story_7\",layoutDependency:layoutDependency,layoutId:\"OcBIt2mga\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1401,intrinsicWidth:1080,pixelHeight:2802,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/rTnsL5dujFiWCeLEExwQkpSBI.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rTnsL5dujFiWCeLEExwQkpSBI.webp?scale-down-to=1024 789w,https://framerusercontent.com/images/rTnsL5dujFiWCeLEExwQkpSBI.webp?scale-down-to=2048 1578w,https://framerusercontent.com/images/rTnsL5dujFiWCeLEExwQkpSBI.webp 2160w\"},className:\"framer-1ry6uoh\",\"data-framer-name\":\"Instagram_story_4\",layoutDependency:layoutDependency,layoutId:\"nDRecNspm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1401,intrinsicWidth:1080,pixelHeight:2802,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/8Q8r9KZZ6NlWEBWvaTLZlGxDEY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/8Q8r9KZZ6NlWEBWvaTLZlGxDEY.webp?scale-down-to=1024 789w,https://framerusercontent.com/images/8Q8r9KZZ6NlWEBWvaTLZlGxDEY.webp?scale-down-to=2048 1578w,https://framerusercontent.com/images/8Q8r9KZZ6NlWEBWvaTLZlGxDEY.webp 2160w\"},className:\"framer-nqaw5f\",\"data-framer-name\":\"Instagram_story_9\",layoutDependency:layoutDependency,layoutId:\"WnI16eWbD\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1401,intrinsicWidth:1080,pixelHeight:2802,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/IubB5uzsaMavkgJWDvlpKjsNNY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/IubB5uzsaMavkgJWDvlpKjsNNY.webp?scale-down-to=1024 789w,https://framerusercontent.com/images/IubB5uzsaMavkgJWDvlpKjsNNY.webp?scale-down-to=2048 1578w,https://framerusercontent.com/images/IubB5uzsaMavkgJWDvlpKjsNNY.webp 2160w\"},className:\"framer-1hnxr4m\",\"data-framer-name\":\"Instagram_story_3\",layoutDependency:layoutDependency,layoutId:\"URKDC0jct\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1401,intrinsicWidth:1080,pixelHeight:2802,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/sCDN3LGMYpoiiQJMXBYQgU2i3nY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/sCDN3LGMYpoiiQJMXBYQgU2i3nY.webp?scale-down-to=1024 789w,https://framerusercontent.com/images/sCDN3LGMYpoiiQJMXBYQgU2i3nY.webp?scale-down-to=2048 1578w,https://framerusercontent.com/images/sCDN3LGMYpoiiQJMXBYQgU2i3nY.webp 2160w\"},className:\"framer-1s3oucr\",\"data-framer-name\":\"Instagram_story_11\",layoutDependency:layoutDependency,layoutId:\"PuC4IIwRZ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1401,intrinsicWidth:1080,pixelHeight:2802,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/O5e2t87xs5jQIEJoLLMDDwLo.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/O5e2t87xs5jQIEJoLLMDDwLo.webp?scale-down-to=1024 789w,https://framerusercontent.com/images/O5e2t87xs5jQIEJoLLMDDwLo.webp?scale-down-to=2048 1578w,https://framerusercontent.com/images/O5e2t87xs5jQIEJoLLMDDwLo.webp 2160w\"},className:\"framer-1yjoo7p\",\"data-framer-name\":\"Instagram_story_2\",layoutDependency:layoutDependency,layoutId:\"hu4oRg9Gu\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:false},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1401,intrinsicWidth:1080,pixelHeight:2802,pixelWidth:2160,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 62px)`,src:\"https://framerusercontent.com/images/LAFnKlSIjC0jYzQmlXDQA25c.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/LAFnKlSIjC0jYzQmlXDQA25c.webp?scale-down-to=1024 789w,https://framerusercontent.com/images/LAFnKlSIjC0jYzQmlXDQA25c.webp?scale-down-to=2048 1578w,https://framerusercontent.com/images/LAFnKlSIjC0jYzQmlXDQA25c.webp 2160w\"},className:\"framer-12iy1pt\",\"data-framer-name\":\"Instagram_story_1\",layoutDependency:layoutDependency,layoutId:\"ugyKg8n52\",style:{opacity:1},variants:{\"T2IzVjxxs-hover\":{opacity:0}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kGQqe.framer-7t7np9, .framer-kGQqe .framer-7t7np9 { display: block; }\",\".framer-kGQqe.framer-1caoc6g { cursor: default; height: 731px; overflow: hidden; position: relative; width: 528px; }\",\".framer-kGQqe .framer-1in0ssl-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 528px / 2); position: absolute; top: 0px; width: 528px; }\",\".framer-kGQqe .framer-1r6rs09, .framer-kGQqe .framer-1uh4vt1, .framer-kGQqe .framer-1rxouiy, .framer-kGQqe .framer-14nntlp, .framer-kGQqe .framer-1ry6uoh, .framer-kGQqe .framer-nqaw5f, .framer-kGQqe .framer-1hnxr4m, .framer-kGQqe .framer-1s3oucr, .framer-kGQqe .framer-1yjoo7p { align-content: center; align-items: center; aspect-ratio: 0.7708779443254818 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 1401px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1080px; }\",\".framer-kGQqe .framer-12iy1pt { aspect-ratio: 0.7708779443254818 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 766px); left: -45px; overflow: visible; position: absolute; right: -17px; top: -17px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kGQqe .framer-1r6rs09, .framer-kGQqe .framer-1uh4vt1, .framer-kGQqe .framer-1rxouiy, .framer-kGQqe .framer-14nntlp, .framer-kGQqe .framer-1ry6uoh, .framer-kGQqe .framer-nqaw5f, .framer-kGQqe .framer-1hnxr4m, .framer-kGQqe .framer-1s3oucr, .framer-kGQqe .framer-1yjoo7p { gap: 0px; } .framer-kGQqe .framer-1r6rs09 > *, .framer-kGQqe .framer-1uh4vt1 > *, .framer-kGQqe .framer-1rxouiy > *, .framer-kGQqe .framer-14nntlp > *, .framer-kGQqe .framer-1ry6uoh > *, .framer-kGQqe .framer-nqaw5f > *, .framer-kGQqe .framer-1hnxr4m > *, .framer-kGQqe .framer-1s3oucr > *, .framer-kGQqe .framer-1yjoo7p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-kGQqe .framer-1r6rs09 > :first-child, .framer-kGQqe .framer-1uh4vt1 > :first-child, .framer-kGQqe .framer-1rxouiy > :first-child, .framer-kGQqe .framer-14nntlp > :first-child, .framer-kGQqe .framer-1ry6uoh > :first-child, .framer-kGQqe .framer-nqaw5f > :first-child, .framer-kGQqe .framer-1hnxr4m > :first-child, .framer-kGQqe .framer-1s3oucr > :first-child, .framer-kGQqe .framer-1yjoo7p > :first-child { margin-top: 0px; } .framer-kGQqe .framer-1r6rs09 > :last-child, .framer-kGQqe .framer-1uh4vt1 > :last-child, .framer-kGQqe .framer-1rxouiy > :last-child, .framer-kGQqe .framer-14nntlp > :last-child, .framer-kGQqe .framer-1ry6uoh > :last-child, .framer-kGQqe .framer-nqaw5f > :last-child, .framer-kGQqe .framer-1hnxr4m > :last-child, .framer-kGQqe .framer-1s3oucr > :last-child, .framer-kGQqe .framer-1yjoo7p > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 731\n * @framerIntrinsicWidth 528\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"EhfIIxMc1\":{\"layout\":[\"fixed\",\"fixed\"]},\"XrWKabWCX\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraVITOSoBv=withCSS(Component,css,\"framer-kGQqe\");export default FrameraVITOSoBv;FrameraVITOSoBv.displayName=\"Carversville\";FrameraVITOSoBv.defaultProps={height:731,width:528};addPropertyControls(FrameraVITOSoBv,{variant:{options:[\"T2IzVjxxs\",\"EhfIIxMc1\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameraVITOSoBv,[{explicitInter:true,fonts:[]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraVITOSoBv\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"528\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EhfIIxMc1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XrWKabWCX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"731\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aVITOSoBv.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";const SlideshowFonts=getFonts(Slideshow);const enabledGestures={bVGbVDMHE:{hover:true}};const cycleOrder=[\"bVGbVDMHE\",\"EpOc3MEmo\"];const serializationHash=\"framer-z94k8\";const variantClassNames={bVGbVDMHE:\"framer-v-1fnjbcn\",EpOc3MEmo:\"framer-v-1d5m0o4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"bVGbVDMHE\",\"Variant 2\":\"EpOc3MEmo\"};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:\"bVGbVDMHE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bVGbVDMHE\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"EpOc3MEmo\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fnjbcn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bVGbVDMHE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"bVGbVDMHE-hover\":{\"data-framer-name\":undefined},EpOc3MEmo:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11at6e5-container\",layoutDependency:layoutDependency,layoutId:\"DtjJTzd6D-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:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1024,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"DtjJTzd6D\",intervalControl:.9,itemAmount:1,layoutId:\"DtjJTzd6D\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1081,pixelHeight:2160,pixelWidth:2162,sizes:\"1081px\",src:\"https://framerusercontent.com/images/Eb3dBtCfRCXWBPc5dMJT82kHb5k.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Eb3dBtCfRCXWBPc5dMJT82kHb5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/Eb3dBtCfRCXWBPc5dMJT82kHb5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Eb3dBtCfRCXWBPc5dMJT82kHb5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Eb3dBtCfRCXWBPc5dMJT82kHb5k.png 2162w\"},className:\"framer-foqw6v\",\"data-framer-name\":\"$1080x1080_2\",layoutDependency:layoutDependency,layoutId:\"ZlKnnHkjn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/enqEsU2PrNw9Y4arKpvlKJ8OUzs.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/enqEsU2PrNw9Y4arKpvlKJ8OUzs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/enqEsU2PrNw9Y4arKpvlKJ8OUzs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/enqEsU2PrNw9Y4arKpvlKJ8OUzs.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/enqEsU2PrNw9Y4arKpvlKJ8OUzs.webp 2160w\"},className:\"framer-126tgqp\",\"data-framer-name\":\"Instagram_post_5\",layoutDependency:layoutDependency,layoutId:\"EMo_kZgKz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/e1o6BKH5VZXf3UbAaDM4MRfn2c8.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/e1o6BKH5VZXf3UbAaDM4MRfn2c8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/e1o6BKH5VZXf3UbAaDM4MRfn2c8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/e1o6BKH5VZXf3UbAaDM4MRfn2c8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/e1o6BKH5VZXf3UbAaDM4MRfn2c8.webp 2160w\"},className:\"framer-vckyzx\",\"data-framer-name\":\"Instagram_post_8\",layoutDependency:layoutDependency,layoutId:\"XzfB6S1Y0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/igQluJSBPxS4yi1MPgVjBfIBdg.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/igQluJSBPxS4yi1MPgVjBfIBdg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/igQluJSBPxS4yi1MPgVjBfIBdg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/igQluJSBPxS4yi1MPgVjBfIBdg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/igQluJSBPxS4yi1MPgVjBfIBdg.webp 2160w\"},className:\"framer-176hby9\",\"data-framer-name\":\"Instagram_post_1\",layoutDependency:layoutDependency,layoutId:\"sqB7pMr7T\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/3HOv3jhCvHpUpoLHluHJdsKjc.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3HOv3jhCvHpUpoLHluHJdsKjc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/3HOv3jhCvHpUpoLHluHJdsKjc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/3HOv3jhCvHpUpoLHluHJdsKjc.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/3HOv3jhCvHpUpoLHluHJdsKjc.webp 2160w\"},className:\"framer-1olgctm\",\"data-framer-name\":\"Instagram_post_4\",layoutDependency:layoutDependency,layoutId:\"QGfHHNpLM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/v0Ksht9Ftzm3iDgpDp2EsismAY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/v0Ksht9Ftzm3iDgpDp2EsismAY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/v0Ksht9Ftzm3iDgpDp2EsismAY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/v0Ksht9Ftzm3iDgpDp2EsismAY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/v0Ksht9Ftzm3iDgpDp2EsismAY.webp 2160w\"},className:\"framer-1e8mo68\",\"data-framer-name\":\"Instagram_post_6\",layoutDependency:layoutDependency,layoutId:\"iCUKWb8VI\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/BDemsddIDTSqfQExZBJG8HFl5ow.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BDemsddIDTSqfQExZBJG8HFl5ow.webp?scale-down-to=512 512w,https://framerusercontent.com/images/BDemsddIDTSqfQExZBJG8HFl5ow.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/BDemsddIDTSqfQExZBJG8HFl5ow.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/BDemsddIDTSqfQExZBJG8HFl5ow.webp 2160w\"},className:\"framer-gud3t0\",\"data-framer-name\":\"Instagram_post_9\",layoutDependency:layoutDependency,layoutId:\"VtEZjCpOP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/FQrKD8L405t2NLsVD54TLbkvPQY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/FQrKD8L405t2NLsVD54TLbkvPQY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/FQrKD8L405t2NLsVD54TLbkvPQY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/FQrKD8L405t2NLsVD54TLbkvPQY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/FQrKD8L405t2NLsVD54TLbkvPQY.webp 2160w\"},className:\"framer-ioer48\",\"data-framer-name\":\"Instagram_post_10\",layoutDependency:layoutDependency,layoutId:\"bzfKnvZRv\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:false},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 53px)`,src:\"https://framerusercontent.com/images/kMRPcII32gmkwnPZaqit0qGRwQ.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kMRPcII32gmkwnPZaqit0qGRwQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kMRPcII32gmkwnPZaqit0qGRwQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kMRPcII32gmkwnPZaqit0qGRwQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/kMRPcII32gmkwnPZaqit0qGRwQ.webp 2160w\"},className:\"framer-c19fq7\",\"data-framer-name\":\"Instagram_post_2\",layoutDependency:layoutDependency,layoutId:\"k0paY4ol5\",style:{opacity:1},variants:{\"bVGbVDMHE-hover\":{opacity:0}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-z94k8.framer-4pzusi, .framer-z94k8 .framer-4pzusi { display: block; }\",\".framer-z94k8.framer-1fnjbcn { cursor: default; height: 506px; overflow: hidden; position: relative; width: 506px; }\",\".framer-z94k8 .framer-11at6e5-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 506px / 2); position: absolute; top: 0px; width: 506px; }\",\".framer-z94k8 .framer-foqw6v { aspect-ratio: 1.000925925925926 / 1; height: var(--framer-aspect-ratio-supported, 1080px); overflow: visible; position: relative; width: 1081px; }\",\".framer-z94k8 .framer-126tgqp, .framer-z94k8 .framer-vckyzx, .framer-z94k8 .framer-176hby9, .framer-z94k8 .framer-1olgctm, .framer-z94k8 .framer-1e8mo68, .framer-z94k8 .framer-gud3t0, .framer-z94k8 .framer-ioer48 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 1080px); overflow: visible; position: relative; width: 1080px; }\",\".framer-z94k8 .framer-c19fq7 { aspect-ratio: 1 / 1; bottom: -28px; flex: none; height: var(--framer-aspect-ratio-supported, 559px); left: -26px; overflow: visible; position: absolute; right: -26px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 506\n * @framerIntrinsicWidth 506\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"EpOc3MEmo\":{\"layout\":[\"fixed\",\"fixed\"]},\"rCQH4_kVq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBxAOfkfKI=withCSS(Component,css,\"framer-z94k8\");export default FramerBxAOfkfKI;FramerBxAOfkfKI.displayName=\"Omniscient\";FramerBxAOfkfKI.defaultProps={height:506,width:506};addPropertyControls(FramerBxAOfkfKI,{variant:{options:[\"bVGbVDMHE\",\"EpOc3MEmo\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBxAOfkfKI,[{explicitInter:true,fonts:[]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBxAOfkfKI\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"506\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EpOc3MEmo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rCQH4_kVq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"506\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BxAOfkfKI.map", "// Generated by Framer (e1877f1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"ujJwcNzfR\",\"Ec6jscVGz\",\"p9gxmCOJ2\"];const serializationHash=\"framer-8WYmZ\";const variantClassNames={Ec6jscVGz:\"framer-v-1r3wut7\",p9gxmCOJ2:\"framer-v-1aaihmz\",ujJwcNzfR:\"framer-v-20maut\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"ujJwcNzfR\",Phone:\"p9gxmCOJ2\",Tablet:\"Ec6jscVGz\"};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:\"ujJwcNzfR\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ujJwcNzfR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-20maut\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ujJwcNzfR\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Ec6jscVGz:{\"data-framer-name\":\"Tablet\"},p9gxmCOJ2:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pdb5qg-container\",layoutDependency:layoutDependency,layoutId:\"aNRAE_p12-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:120,height:\"100%\",hoverFactor:1,id:\"aNRAE_p12\",layoutId:\"aNRAE_p12\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:65,pixelWidth:296,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YVAQ6xBMhmrZ6r9yL2YbW08.png\"},className:\"framer-gsuzr7\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"amgCJrMIb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:75,pixelWidth:137,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oJ9gEqpPQCbtBRlBE8hj35eTqCA.png\"},className:\"framer-gu0e3t\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"w745gz4Yc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:103,pixelWidth:268,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QBvJ9sc88nPocJYkrB5QTPwTM.png?lossless=1\"},className:\"framer-1x4r102\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"G35g9q0Ms\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:60,pixelWidth:227,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2DmnBNj1ZXmjgi30ORChg13voIk.png\"},className:\"framer-16gwh39\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"r9VCi4BnK\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:79,pixelWidth:257,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3tWjsganwkRJmNN5FhxPbwg5BxQ.png\"},className:\"framer-ho2x75\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"JeBxOjF7a\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:75,pixelWidth:380,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mZf1THEHHOkc2nuBdaR4d5wSY.png\"},className:\"framer-7v9w5g\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"OGHJWtw4d\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:67,pixelWidth:131,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hotWLZrbDHFWSdoQaRhCD4EiJxo.png\"},className:\"framer-1auvwm8\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"w4DDNvdeK\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:72,pixelWidth:276,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ba1fupcZRPfUbGiiHQrl7UFLe8.png\"},className:\"framer-u793ke\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"nXNDrLTNf\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:51,pixelWidth:460,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZNmrzIvKPb4Uix89GCkAwqGf0.png\"},className:\"framer-1gnns5a\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"VSukzErE5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:63,pixelWidth:282,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Tu7lWLfMfiwxBYO2BWGzjEbwmg.png\"},className:\"framer-7nwdr8\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"He_mbAcRe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:40,pixelWidth:441,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/G8FuINq7td78mNY8dsYeZk3rlo.png\"},className:\"framer-m0n5x4\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"VaNPx5TcE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:156,intrinsicWidth:648,pixelHeight:66,pixelWidth:323,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VqV26Z42M2FILvBOCN9bluaEjqM.png\"},className:\"framer-vkjhe8\",\"data-framer-name\":\"Logo_Dark\",layoutDependency:layoutDependency,layoutId:\"CFbqTGRVP\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Ec6jscVGz:{gap:74},p9gxmCOJ2:{gap:51,sizingOptions:{heightType:false,widthType:true}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8WYmZ.framer-1qkoni9, .framer-8WYmZ .framer-1qkoni9 { display: block; }\",\".framer-8WYmZ.framer-20maut { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 164px; height: auto; justify-content: center; overflow: hidden; padding: 60px 40px 60px 40px; position: relative; width: 1200px; }\",\".framer-8WYmZ .framer-pdb5qg-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-8WYmZ .framer-gsuzr7, .framer-8WYmZ .framer-1x4r102, .framer-8WYmZ .framer-ho2x75, .framer-8WYmZ .framer-u793ke, .framer-8WYmZ .framer-7nwdr8, .framer-8WYmZ .framer-m0n5x4, .framer-8WYmZ .framer-vkjhe8 { aspect-ratio: 4.102564102564102 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 164px; }\",\".framer-8WYmZ .framer-gu0e3t { height: 38px; overflow: visible; position: relative; width: 89px; }\",\".framer-8WYmZ .framer-16gwh39 { aspect-ratio: 4.2105263157894735 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 138px; }\",\".framer-8WYmZ .framer-7v9w5g { aspect-ratio: 4.102564102564102 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 186px; }\",\".framer-8WYmZ .framer-1auvwm8 { height: 40px; overflow: visible; position: relative; width: 97px; }\",\".framer-8WYmZ .framer-1gnns5a { height: 40px; overflow: visible; position: relative; width: 219px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8WYmZ.framer-20maut { gap: 0px; } .framer-8WYmZ.framer-20maut > * { margin: 0px; margin-bottom: calc(164px / 2); margin-top: calc(164px / 2); } .framer-8WYmZ.framer-20maut > :first-child { margin-top: 0px; } .framer-8WYmZ.framer-20maut > :last-child { margin-bottom: 0px; } }\",\".framer-8WYmZ.framer-v-1r3wut7.framer-20maut { gap: 64px; padding: 40px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8WYmZ.framer-v-1r3wut7.framer-20maut { gap: 0px; } .framer-8WYmZ.framer-v-1r3wut7.framer-20maut > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-8WYmZ.framer-v-1r3wut7.framer-20maut > :first-child { margin-top: 0px; } .framer-8WYmZ.framer-v-1r3wut7.framer-20maut > :last-child { margin-bottom: 0px; } }\",\".framer-8WYmZ.framer-v-1aaihmz.framer-20maut { gap: 45px; padding: 40px 20px 40px 20px; width: 375px; }\",\".framer-8WYmZ.framer-v-1aaihmz .framer-pdb5qg-container { height: 27px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8WYmZ.framer-v-1aaihmz.framer-20maut { gap: 0px; } .framer-8WYmZ.framer-v-1aaihmz.framer-20maut > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-8WYmZ.framer-v-1aaihmz.framer-20maut > :first-child { margin-top: 0px; } .framer-8WYmZ.framer-v-1aaihmz.framer-20maut > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 160\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ec6jscVGz\":{\"layout\":[\"fixed\",\"auto\"]},\"p9gxmCOJ2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEisFHUCft=withCSS(Component,css,\"framer-8WYmZ\");export default FramerEisFHUCft;FramerEisFHUCft.displayName=\"Logos/3\";FramerEisFHUCft.defaultProps={height:160,width:1200};addPropertyControls(FramerEisFHUCft,{variant:{options:[\"ujJwcNzfR\",\"Ec6jscVGz\",\"p9gxmCOJ2\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEisFHUCft,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEisFHUCft\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ec6jscVGz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p9gxmCOJ2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"160\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EisFHUCft.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";const SlideshowFonts=getFonts(Slideshow);const ImageWithFX=withFX(Image);const enabledGestures={OjWrmCYTA:{hover:true}};const cycleOrder=[\"OjWrmCYTA\",\"woaurOKU_\"];const serializationHash=\"framer-0KMdp\";const variantClassNames={OjWrmCYTA:\"framer-v-1ycjesm\",woaurOKU_:\"framer-v-3iova\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"OjWrmCYTA\",\"Variant 2\":\"woaurOKU_\"};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:\"OjWrmCYTA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OjWrmCYTA\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"woaurOKU_\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsxs(ImageWithFX,{...restProps,...gestureHandlers,__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:806,pixelWidth:1001,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6LMu6f3VKsmc0iPJyrmPlQQ7ZI4.webp\",srcSet:\"https://framerusercontent.com/images/6LMu6f3VKsmc0iPJyrmPlQQ7ZI4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6LMu6f3VKsmc0iPJyrmPlQQ7ZI4.webp 1001w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ycjesm\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"OjWrmCYTA\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"OjWrmCYTA-hover\":{\"data-framer-name\":undefined,background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},woaurOKU_:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3v7w2b-container\",layoutDependency:layoutDependency,layoutId:\"eVDheiJXM-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:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1024,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"eVDheiJXM\",intervalControl:.9,itemAmount:1,layoutId:\"eVDheiJXM\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:646,intrinsicWidth:526.5,pixelHeight:1292,pixelWidth:1053,sizes:\"527px\",src:\"https://framerusercontent.com/images/yBCEvhbQMXg4dpnLMlKe0l4lkpo.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yBCEvhbQMXg4dpnLMlKe0l4lkpo.webp?scale-down-to=1024 834w,https://framerusercontent.com/images/yBCEvhbQMXg4dpnLMlKe0l4lkpo.webp 1053w\"},className:\"framer-1etriay\",\"data-framer-name\":\"PPF_LYRS_0022\",layoutDependency:layoutDependency,layoutId:\"Un9xOldIV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:620.5,intrinsicWidth:425,pixelHeight:1241,pixelWidth:850,sizes:\"434px\",src:\"https://framerusercontent.com/images/JrfcUVrMtiE7ddC7d5ttpHK0YOU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JrfcUVrMtiE7ddC7d5ttpHK0YOU.webp?scale-down-to=1024 701w,https://framerusercontent.com/images/JrfcUVrMtiE7ddC7d5ttpHK0YOU.webp 850w\"},className:\"framer-1vjvc65\",\"data-framer-name\":\"Mask_group\",layoutDependency:layoutDependency,layoutId:\"NwwjdLlDN\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:775.5,intrinsicWidth:517,pixelHeight:1551,pixelWidth:1034,sizes:\"480px\",src:\"https://framerusercontent.com/images/I1v6V0mBGmwXP4Jad7Xvn6xu8E.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/I1v6V0mBGmwXP4Jad7Xvn6xu8E.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/I1v6V0mBGmwXP4Jad7Xvn6xu8E.webp 1034w\"},className:\"framer-19k6q4w\",\"data-framer-name\":\"Sign_1588_1\",layoutDependency:layoutDependency,layoutId:\"ygUhgbK_u\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:639.5,intrinsicWidth:530.5,pixelHeight:1279,pixelWidth:1061,sizes:\"531px\",src:\"https://framerusercontent.com/images/N4Wr2naDsbsJ56jzl188Ux9M.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/N4Wr2naDsbsJ56jzl188Ux9M.webp?scale-down-to=1024 849w,https://framerusercontent.com/images/N4Wr2naDsbsJ56jzl188Ux9M.webp 1061w\"},className:\"framer-19qetm0\",\"data-framer-name\":\"Frame_332759298\",layoutDependency:layoutDependency,layoutId:\"qYpzAsiaB\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:601,intrinsicWidth:795,pixelHeight:1202,pixelWidth:1590,sizes:\"795px\",src:\"https://framerusercontent.com/images/4M96MYiAJWn3qhtxY6qRgIT1Q.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4M96MYiAJWn3qhtxY6qRgIT1Q.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4M96MYiAJWn3qhtxY6qRgIT1Q.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4M96MYiAJWn3qhtxY6qRgIT1Q.webp 1590w\"},className:\"framer-6asdk5\",\"data-framer-name\":\"Frame_332759299\",layoutDependency:layoutDependency,layoutId:\"CDgzYZ9_C\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:false},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1667,intrinsicWidth:2500,pixelHeight:3334,pixelWidth:5e3,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 550px)`,src:\"https://framerusercontent.com/images/na8LtmwzoQrbeepXIRwXjaN25s.webp?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/na8LtmwzoQrbeepXIRwXjaN25s.webp?scale-down-to=512 512w,https://framerusercontent.com/images/na8LtmwzoQrbeepXIRwXjaN25s.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/na8LtmwzoQrbeepXIRwXjaN25s.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/na8LtmwzoQrbeepXIRwXjaN25s.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/na8LtmwzoQrbeepXIRwXjaN25s.webp 5000w\"},className:\"framer-qrur8w\",\"data-framer-name\":\"Newton\",layoutDependency:layoutDependency,layoutId:\"eJv398CVR\",style:{opacity:1},variants:{\"OjWrmCYTA-hover\":{opacity:0}}})]})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0KMdp.framer-v8fe36, .framer-0KMdp .framer-v8fe36 { display: block; }\",\".framer-0KMdp.framer-1ycjesm { cursor: default; height: 634px; overflow: hidden; position: relative; width: 528px; }\",\".framer-0KMdp .framer-3v7w2b-container { bottom: -16px; flex: none; left: -9px; position: absolute; right: -24px; top: -15px; }\",\".framer-0KMdp .framer-1etriay { aspect-ratio: 0.815015479876161 / 1; height: var(--framer-aspect-ratio-supported, 647px); overflow: visible; position: relative; width: 527px; }\",\".framer-0KMdp .framer-1vjvc65 { aspect-ratio: 0.684931506849315 / 1; height: var(--framer-aspect-ratio-supported, 634px); overflow: visible; position: relative; width: 434px; }\",\".framer-0KMdp .framer-19k6q4w { height: 646px; overflow: visible; position: relative; width: 480px; }\",\".framer-0KMdp .framer-19qetm0 { aspect-ratio: 0.8295543393275997 / 1; height: var(--framer-aspect-ratio-supported, 640px); overflow: visible; position: relative; width: 531px; }\",\".framer-0KMdp .framer-6asdk5 { aspect-ratio: 1.3227953410981697 / 1; height: var(--framer-aspect-ratio-supported, 601px); overflow: visible; position: relative; width: 795px; }\",\".framer-0KMdp .framer-qrur8w { bottom: -76px; flex: none; left: 0px; overflow: visible; position: absolute; right: -550px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 634\n * @framerIntrinsicWidth 528\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"woaurOKU_\":{\"layout\":[\"fixed\",\"fixed\"]},\"kBWh8JK7k\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkuGxgy_3h=withCSS(Component,css,\"framer-0KMdp\");export default FramerkuGxgy_3h;FramerkuGxgy_3h.displayName=\"Newton\";FramerkuGxgy_3h.defaultProps={height:634,width:528};addPropertyControls(FramerkuGxgy_3h,{variant:{options:[\"OjWrmCYTA\",\"woaurOKU_\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkuGxgy_3h,[{explicitInter:true,fonts:[]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkuGxgy_3h\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"634\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"woaurOKU_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kBWh8JK7k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"528\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kuGxgy_3h.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";const SlideshowFonts=getFonts(Slideshow);const enabledGestures={xCJocTkUw:{hover:true}};const cycleOrder=[\"xCJocTkUw\",\"c_exCJX8Z\"];const serializationHash=\"framer-DgLqQ\";const variantClassNames={c_exCJX8Z:\"framer-v-1svtwms\",xCJocTkUw:\"framer-v-bz63vl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"xCJocTkUw\",\"Variant 2\":\"c_exCJX8Z\"};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:\"xCJocTkUw\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xCJocTkUw\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"c_exCJX8Z\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",pixelHeight:806,pixelWidth:1001,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6LMu6f3VKsmc0iPJyrmPlQQ7ZI4.webp\",srcSet:\"https://framerusercontent.com/images/6LMu6f3VKsmc0iPJyrmPlQQ7ZI4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6LMu6f3VKsmc0iPJyrmPlQQ7ZI4.webp 1001w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-bz63vl\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"xCJocTkUw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"xCJocTkUw-hover\":{\"data-framer-name\":undefined},c_exCJX8Z:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aapsoz-container\",layoutDependency:layoutDependency,layoutId:\"fGZUXLBmW-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:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1024,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"fGZUXLBmW\",intervalControl:.9,itemAmount:1,layoutId:\"fGZUXLBmW\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/F9zIHzvYjry8j6KDXzZqmYCveAU.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/F9zIHzvYjry8j6KDXzZqmYCveAU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/F9zIHzvYjry8j6KDXzZqmYCveAU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/F9zIHzvYjry8j6KDXzZqmYCveAU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/F9zIHzvYjry8j6KDXzZqmYCveAU.webp 2160w\"},className:\"framer-15e7twv\",\"data-framer-name\":\"$1080x1080_4\",layoutDependency:layoutDependency,layoutId:\"oGtHLkv1I\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/YUhDw3UjlDEkdCmCxRGSdDvJzUw.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YUhDw3UjlDEkdCmCxRGSdDvJzUw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/YUhDw3UjlDEkdCmCxRGSdDvJzUw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/YUhDw3UjlDEkdCmCxRGSdDvJzUw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/YUhDw3UjlDEkdCmCxRGSdDvJzUw.webp 2160w\"},className:\"framer-18sbssl\",\"data-framer-name\":\"$1080x1080_7\",layoutDependency:layoutDependency,layoutId:\"q8TYiY1ed\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/vF7jcT7QhvPTemGqA4zLYn1Brq0.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/vF7jcT7QhvPTemGqA4zLYn1Brq0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vF7jcT7QhvPTemGqA4zLYn1Brq0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/vF7jcT7QhvPTemGqA4zLYn1Brq0.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/vF7jcT7QhvPTemGqA4zLYn1Brq0.webp 2160w\"},className:\"framer-obndzp\",\"data-framer-name\":\"$1080x1080_9\",layoutDependency:layoutDependency,layoutId:\"qcB8rICWS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/a1EFtrLNZrp7ret3DeImMx10M.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/a1EFtrLNZrp7ret3DeImMx10M.webp?scale-down-to=512 512w,https://framerusercontent.com/images/a1EFtrLNZrp7ret3DeImMx10M.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/a1EFtrLNZrp7ret3DeImMx10M.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/a1EFtrLNZrp7ret3DeImMx10M.webp 2160w\"},className:\"framer-19w6zur\",\"data-framer-name\":\"$1080x1080_2\",layoutDependency:layoutDependency,layoutId:\"DT7PHr9J7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/ipwvDGkukZMKMDp5UuKS7A6pBY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ipwvDGkukZMKMDp5UuKS7A6pBY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ipwvDGkukZMKMDp5UuKS7A6pBY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ipwvDGkukZMKMDp5UuKS7A6pBY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/ipwvDGkukZMKMDp5UuKS7A6pBY.webp 2160w\"},className:\"framer-1hgx7au\",\"data-framer-name\":\"$1080x1080_8\",layoutDependency:layoutDependency,layoutId:\"APhcl4c9m\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/zZQ0kXJaWYWLmVmbRjaLhcANdo.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/zZQ0kXJaWYWLmVmbRjaLhcANdo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zZQ0kXJaWYWLmVmbRjaLhcANdo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zZQ0kXJaWYWLmVmbRjaLhcANdo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/zZQ0kXJaWYWLmVmbRjaLhcANdo.webp 2160w\"},className:\"framer-1taaoux\",\"data-framer-name\":\"$1080x1080_5\",layoutDependency:layoutDependency,layoutId:\"AFLcD8P2l\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:\"1080px\",src:\"https://framerusercontent.com/images/suurcZsdlTkZp7savrJTKCQsqs.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/suurcZsdlTkZp7savrJTKCQsqs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/suurcZsdlTkZp7savrJTKCQsqs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/suurcZsdlTkZp7savrJTKCQsqs.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/suurcZsdlTkZp7savrJTKCQsqs.webp 2160w\"},className:\"framer-dchjzk\",\"data-framer-name\":\"$1080x1080_3\",layoutDependency:layoutDependency,layoutId:\"fHiZrFDhH\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:false},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2160,pixelWidth:2160,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 223px)`,src:\"https://framerusercontent.com/images/4jG5kVxUCzcWlhfMKmis5XL2A.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4jG5kVxUCzcWlhfMKmis5XL2A.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4jG5kVxUCzcWlhfMKmis5XL2A.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4jG5kVxUCzcWlhfMKmis5XL2A.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/4jG5kVxUCzcWlhfMKmis5XL2A.webp 2160w\"},className:\"framer-1xlfyg7\",\"data-framer-name\":\"$1080x1080\",layoutDependency:layoutDependency,layoutId:\"hPTfho_Cx\",style:{opacity:1},variants:{\"xCJocTkUw-hover\":{opacity:0}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DgLqQ.framer-19ra707, .framer-DgLqQ .framer-19ra707 { display: block; }\",\".framer-DgLqQ.framer-bz63vl { cursor: default; height: 551px; overflow: hidden; position: relative; width: 462px; }\",\".framer-DgLqQ .framer-1aapsoz-container { bottom: -16px; flex: none; left: -9px; position: absolute; right: -24px; top: -15px; }\",\".framer-DgLqQ .framer-15e7twv, .framer-DgLqQ .framer-18sbssl, .framer-DgLqQ .framer-obndzp, .framer-DgLqQ .framer-19w6zur, .framer-DgLqQ .framer-1hgx7au, .framer-DgLqQ .framer-1taaoux, .framer-DgLqQ .framer-dchjzk { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 1080px); overflow: visible; position: relative; width: 1080px; }\",\".framer-DgLqQ .framer-1xlfyg7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 685px); left: -111px; overflow: visible; position: absolute; right: -111px; top: -67px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 551\n * @framerIntrinsicWidth 462\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"c_exCJX8Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"SyRzbDuCX\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerO7VfY2SHv=withCSS(Component,css,\"framer-DgLqQ\");export default FramerO7VfY2SHv;FramerO7VfY2SHv.displayName=\"Kard\";FramerO7VfY2SHv.defaultProps={height:551,width:462};addPropertyControls(FramerO7VfY2SHv,{variant:{options:[\"xCJocTkUw\",\"c_exCJX8Z\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerO7VfY2SHv,[{explicitInter:true,fonts:[]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO7VfY2SHv\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"551\",\"framerIntrinsicWidth\":\"462\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c_exCJX8Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SyRzbDuCX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O7VfY2SHv.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Founders Grotesk Semibold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Founders Grotesk Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/wFXVAS0FabtkJGb06911Qh5fAE.woff2\"}]}];export const css=['.framer-SEpZf .framer-styles-preset-1m2h69c:not(.rich-text-wrapper), .framer-SEpZf .framer-styles-preset-1m2h69c.rich-text-wrapper h2 { --framer-font-family: \"Founders Grotesk Semibold\", \"Founders Grotesk Semibold Placeholder\", sans-serif; --framer-font-size: 21px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-SEpZf .framer-styles-preset-1m2h69c:not(.rich-text-wrapper), .framer-SEpZf .framer-styles-preset-1m2h69c.rich-text-wrapper h2 { --framer-font-family: \"Founders Grotesk Semibold\", \"Founders Grotesk Semibold Placeholder\", sans-serif; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-SEpZf .framer-styles-preset-1m2h69c:not(.rich-text-wrapper), .framer-SEpZf .framer-styles-preset-1m2h69c.rich-text-wrapper h2 { --framer-font-family: \"Founders Grotesk Semibold\", \"Founders Grotesk Semibold Placeholder\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.01em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-SEpZf\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c126521)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import Testimonials8 from\"#framer/local/canvasComponent/AaxkBSX5h/AaxkBSX5h.js\";import Omakase from\"#framer/local/canvasComponent/ADBVpYs5I/ADBVpYs5I.js\";import Carversville from\"#framer/local/canvasComponent/aVITOSoBv/aVITOSoBv.js\";import Omniscient from\"#framer/local/canvasComponent/BxAOfkfKI/BxAOfkfKI.js\";import Logos3 from\"#framer/local/canvasComponent/EisFHUCft/EisFHUCft.js\";import PrimaryButton from\"#framer/local/canvasComponent/FnZoNQ6Gt/FnZoNQ6Gt.js\";import Newton from\"#framer/local/canvasComponent/kuGxgy_3h/kuGxgy_3h.js\";import Footer from\"#framer/local/canvasComponent/MkVNnkLpq/MkVNnkLpq.js\";import Kard from\"#framer/local/canvasComponent/O7VfY2SHv/O7VfY2SHv.js\";import Group332759125 from\"#framer/local/canvasComponent/un6U7I_yq/un6U7I_yq.js\";import TopNav from\"#framer/local/canvasComponent/Vnjh35A5B/Vnjh35A5B.js\";import*as sharedStyle3 from\"#framer/local/css/Be4T4K9PG/Be4T4K9PG.js\";import*as sharedStyle1 from\"#framer/local/css/EDJTXkl36/EDJTXkl36.js\";import*as sharedStyle2 from\"#framer/local/css/Rp59sPfE3/Rp59sPfE3.js\";import*as sharedStyle from\"#framer/local/css/WkRxpnn8B/WkRxpnn8B.js\";import metadataProvider from\"#framer/local/webPageMetadata/ZQ98XFpM0/ZQ98XFpM0.js\";const TopNavFonts=getFonts(TopNav);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const SlideshowFonts=getFonts(Slideshow);const PrimaryButtonFonts=getFonts(PrimaryButton);const MotionDivWithFX=withFX(motion.div);const Logos3Fonts=getFonts(Logos3);const NewtonFonts=getFonts(Newton);const KardFonts=getFonts(Kard);const HeroFonts=getFonts(Hero);const CarversvilleFonts=getFonts(Carversville);const OmniscientFonts=getFonts(Omniscient);const Group332759125Fonts=getFonts(Group332759125);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const OmakaseFonts=getFonts(Omakase);const Testimonials8Fonts=getFonts(Testimonials8);const FooterFonts=getFonts(Footer);const breakpoints={aj7chSL9K:\"(min-width: 810px) and (max-width: 1199px)\",NZ5Gg_5Ii:\"(max-width: 809px)\",VWu1Y5pBF:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-12cV8\";const variantClassNames={aj7chSL9K:\"framer-v-154ri28\",NZ5Gg_5Ii:\"framer-v-1y2l6fx\",VWu1Y5pBF:\"framer-v-a50vwv\"};const transition1={damping:42,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-89};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={damping:30,delay:.2,mass:1,stiffness:111,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-3,y:0};const animation3={filter:\"blur(1px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={damping:71,delay:.075,mass:1,stiffness:168,type:\"spring\"};const textEffect={effect:animation3,tokenization:\"word\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation3,tokenization:\"word\",transition:transition3,trigger:\"onInView\",type:\"appear\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition4={damping:30,delay:.1,mass:1,stiffness:122,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:150,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-211,y:0};const transition5={delay:.25,duration:.8,ease:[.35,.03,0,.94],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:-211,y:0};const transition6={delay:.35,duration:.8,ease:[.35,.03,0,.94],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:-211,y:0};const transition7={delay:.55,duration:.8,ease:[.35,.03,0,.94],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:-211,y:0};const transition8={delay:.65,duration:.8,ease:[.35,.03,0,.94],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:-211,y:0};const transition9={damping:30,delay:0,mass:1,stiffness:120,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"VWu1Y5pBF\",Phone:\"NZ5Gg_5Ii\",Tablet:\"aj7chSL9K\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"VWu1Y5pBF\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"x0t1qTlq_\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"NZ5Gg_5Ii\")return false;return true;};const router=useRouter();const elementId1=useRouteElementId(\"juseWVjUT\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"jNXoA977b\");const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"NZ5Gg_5Ii\")return true;return false;};const elementId3=useRouteElementId(\"zLERpKgkk\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"JJe6WWNq6\");const ref6=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"VWu1Y5pBF\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-a50vwv\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:\"min(100vw, 1440px)\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qa95ml-container\",id:elementId,layoutScroll:true,ref:ref2,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{variant:\"vnmWGj_p2\"}},children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"x0t1qTlq_\",layoutId:\"x0t1qTlq_\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"G0UB3jTJ4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3f1b47\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZpbmFuY2llciBEaXNwbGF5IExpZ2h0\",\"--framer-font-family\":'\"Financier Display Light\", \"Financier Display Light Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"A design studio for small and nimble businesses doing big things\"})})},NZ5Gg_5Ii:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZpbmFuY2llciBEaXNwbGF5IExpZ2h0\",\"--framer-font-family\":'\"Financier Display Light\", \"Financier Display Light Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"A design studio for small and nimble businesses doing big things\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZpbmFuY2llciBEaXNwbGF5IExpZ2h0\",\"--framer-font-family\":'\"Financier Display Light\", \"Financier Display Light Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"A design studio for small and nimble businesses doing big things\"})}),className:\"framer-45his5\",\"data-framer-appear-id\":\"45his5\",\"data-framer-name\":\"We call this free service the Bolster Omakase: No monthly subscription, no costly strategy phase. Just a few simple steps and a couple of weeks to see if we\u2019re a good fit. You get a free brand design package that you can use however you\u2019d like.\",effect:textEffect,fonts:[\"CUSTOM;Financier Display Light\"],initial:animation2,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4o2fc9\",\"data-framer-name\":\"Work Slider\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:94,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c17i63-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{gap:0,intervalControl:1.6,transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"}}},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:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,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:\"K5YjVsgB4\",intervalControl:2.4,itemAmount:1,layoutId:\"K5YjVsgB4\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,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:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590.5,intrinsicWidth:1050,pixelHeight:1181,pixelWidth:2100,sizes:\"1050px\",src:\"https://framerusercontent.com/images/aZmvbnjytvOv7DgOM5hx6Y8HZY.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aZmvbnjytvOv7DgOM5hx6Y8HZY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aZmvbnjytvOv7DgOM5hx6Y8HZY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/aZmvbnjytvOv7DgOM5hx6Y8HZY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/aZmvbnjytvOv7DgOM5hx6Y8HZY.webp 2100w\"},className:\"framer-1f28xa6\",\"data-framer-name\":\"MM_UrbanPoster_UP_NYC2_04_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590.5,intrinsicWidth:1050,pixelHeight:1181,pixelWidth:2100,sizes:\"1050px\",src:\"https://framerusercontent.com/images/U3Dek0DKYoOXMXIuAZQqHFn4.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/U3Dek0DKYoOXMXIuAZQqHFn4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/U3Dek0DKYoOXMXIuAZQqHFn4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/U3Dek0DKYoOXMXIuAZQqHFn4.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/U3Dek0DKYoOXMXIuAZQqHFn4.webp 2100w\"},className:\"framer-nbj6ye\",\"data-framer-name\":\"Desktop_26_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590.5,intrinsicWidth:1050,pixelHeight:1181,pixelWidth:2100,sizes:\"1050px\",src:\"https://framerusercontent.com/images/hwOvumTELH8fCk62qdpo5z9qAnA.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hwOvumTELH8fCk62qdpo5z9qAnA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hwOvumTELH8fCk62qdpo5z9qAnA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/hwOvumTELH8fCk62qdpo5z9qAnA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/hwOvumTELH8fCk62qdpo5z9qAnA.webp 2100w\"},className:\"framer-1lq9eqq\",\"data-framer-name\":\"MM_Billboard_BB_TKY_11_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590.5,intrinsicWidth:1050,pixelHeight:1181,pixelWidth:2100,sizes:\"1050px\",src:\"https://framerusercontent.com/images/BxULQM9K4zsAf9wIGlohIB5jgg.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BxULQM9K4zsAf9wIGlohIB5jgg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/BxULQM9K4zsAf9wIGlohIB5jgg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/BxULQM9K4zsAf9wIGlohIB5jgg.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/BxULQM9K4zsAf9wIGlohIB5jgg.webp 2100w\"},className:\"framer-80xewx\",\"data-framer-name\":\"MM_Book_BK_MTL_01_2_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590.5,intrinsicWidth:1050,pixelHeight:1181,pixelWidth:2100,sizes:\"1050px\",src:\"https://framerusercontent.com/images/pTM3og4cfx0LAbi55D2eVP0H38s.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/pTM3og4cfx0LAbi55D2eVP0H38s.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pTM3og4cfx0LAbi55D2eVP0H38s.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/pTM3og4cfx0LAbi55D2eVP0H38s.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/pTM3og4cfx0LAbi55D2eVP0H38s.webp 2100w\"},className:\"framer-1doohjg\",\"data-framer-name\":\"MM_Phone_PH_G_07_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590.5,intrinsicWidth:1050,pixelHeight:1181,pixelWidth:2100,sizes:\"1050px\",src:\"https://framerusercontent.com/images/QM26cOBVgKXtBvwqGixcOsG1rEo.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/QM26cOBVgKXtBvwqGixcOsG1rEo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/QM26cOBVgKXtBvwqGixcOsG1rEo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/QM26cOBVgKXtBvwqGixcOsG1rEo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/QM26cOBVgKXtBvwqGixcOsG1rEo.webp 2100w\"},className:\"framer-17jguxu\",\"data-framer-name\":\"PPF_LYRS_001_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590.5,intrinsicWidth:1050,pixelHeight:1181,pixelWidth:2100,sizes:\"1050px\",src:\"https://framerusercontent.com/images/j2665BXYUFJvZhBngr6dw5KwR44.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/j2665BXYUFJvZhBngr6dw5KwR44.webp?scale-down-to=512 512w,https://framerusercontent.com/images/j2665BXYUFJvZhBngr6dw5KwR44.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/j2665BXYUFJvZhBngr6dw5KwR44.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/j2665BXYUFJvZhBngr6dw5KwR44.webp 2100w\"},className:\"framer-1fk0eru\",\"data-framer-name\":\"PPF_LYRS_003_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590.5,intrinsicWidth:1050.5,pixelHeight:1181,pixelWidth:2101,sizes:\"1051.3895px\",src:\"https://framerusercontent.com/images/PISwRb5VqfFWoxA6wVUIBS2Xz08.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/PISwRb5VqfFWoxA6wVUIBS2Xz08.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PISwRb5VqfFWoxA6wVUIBS2Xz08.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PISwRb5VqfFWoxA6wVUIBS2Xz08.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/PISwRb5VqfFWoxA6wVUIBS2Xz08.webp 2101w\"},className:\"framer-1o1n2qw\",\"data-framer-name\":\"Sign_2305_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590.5,intrinsicWidth:1050,pixelHeight:1181,pixelWidth:2100,sizes:\"1050px\",src:\"https://framerusercontent.com/images/crOobMNSujX9bzLlWi8qowLllBk.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/crOobMNSujX9bzLlWi8qowLllBk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/crOobMNSujX9bzLlWi8qowLllBk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/crOobMNSujX9bzLlWi8qowLllBk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/crOobMNSujX9bzLlWi8qowLllBk.webp 2100w\"},className:\"framer-5hdoz2\",\"data-framer-name\":\"TEST_SHEET_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:525.5,intrinsicWidth:1050,pixelHeight:1051,pixelWidth:2100,sizes:\"1050px\",src:\"https://framerusercontent.com/images/2Kzkvix018IMlOkaQKCSbbqPRgo.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2Kzkvix018IMlOkaQKCSbbqPRgo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2Kzkvix018IMlOkaQKCSbbqPRgo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2Kzkvix018IMlOkaQKCSbbqPRgo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/2Kzkvix018IMlOkaQKCSbbqPRgo.webp 2100w\"},className:\"framer-nyuwlw\",\"data-framer-name\":\"Frame_19_1\"})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{duration:0,type:\"tween\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y1rkw6\",\"data-framer-name\":\"Positioning\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lyri0a\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10nm0m1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1idquwe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ikeml6\",\"data-styles-preset\":\"WkRxpnn8B\",children:\"Focused on creating value for growing businesses\"})}),className:\"framer-84p8ai\",\"data-framer-name\":\"A design studio for small and nimble businesses doing big things.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KlBtkJ2rm\"},implicitPathVariables:undefined},{href:{webPageId:\"KlBtkJ2rm\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{y:(componentViewport?.y||0)+88+763+0+32+0+0+97.80000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,y:(componentViewport?.y||0)+88+1031+0+60+0+0+97.80000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pobg1q-container hidden-1y2l6fx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{qmu24Hv6y:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(PrimaryButton,{csw3pGeE1:false,height:\"100%\",id:\"uVTWr5T6P\",layoutId:\"uVTWr5T6P\",OSK0VM6ik:\"Get in Touch\",qmu24Hv6y:resolvedLinks[0],variant:\"BNxyX9iMr\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h53gcg\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q2hb41\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y1nrbe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m2h69c\",\"data-styles-preset\":\"EDJTXkl36\",children:\"Startups\"})}),className:\"framer-1pyi11s\",\"data-framer-name\":\"OMAKASE - 059\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",children:\"Startups with budget and/or time constraints who need design help with sales & fundraising materials.\"})}),className:\"framer-1jhhsjn\",\"data-framer-name\":\"Startups with budget and/or time constraints who need design help with sales & fundraising materials.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h26z1s\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dudxso\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m2h69c\",\"data-styles-preset\":\"EDJTXkl36\",children:\"Professional services\"})}),className:\"framer-bxattb\",\"data-framer-name\":\"OMAKASE - 059\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",children:\"Professional services firms like agencies, wealth managers, technicians, and consultants.\"})}),className:\"framer-1fpswu7\",\"data-framer-name\":\"Startups with budget and/or time constraints who need design help with sales & fundraising materials.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oirodt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q12mpq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xeux18\",\"data-styles-preset\":\"Be4T4K9PG\",children:\"B2B SaaS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m2h69c\",\"data-styles-preset\":\"EDJTXkl36\",children:\"B2B SaaS\"})}),className:\"framer-6lreg5\",\"data-framer-name\":\"OMAKASE - 059\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",children:\"B2B software companies that have various sales & marketing design needs.\"})}),className:\"framer-1qbj2od\",\"data-framer-name\":\"Startups with budget and/or time constraints who need design help with sales & fundraising materials.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{y:(componentViewport?.y||0)+88+1387},NZ5Gg_5Ii:{y:(componentViewport?.y||0)+100+463}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+88+1505,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ehpwzx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{variant:\"Ec6jscVGz\"},NZ5Gg_5Ii:{variant:\"p9gxmCOJ2\"}},children:/*#__PURE__*/_jsx(Logos3,{height:\"100%\",id:\"zhPshA4W2\",layoutId:\"zhPshA4W2\",style:{width:\"100%\"},variant:\"ujJwcNzfR\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-roauuy\",\"data-framer-name\":\"Work 1\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sg36yg\",\"data-framer-name\":\"Frame 332759274\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{height:478,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 124px) / 2, 1px)`,y:(componentViewport?.y||0)+88+1592+32+0+0},NZ5Gg_5Ii:{height:321,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 22px) / 2, 1px)`,y:(componentViewport?.y||0)+100+1388.8+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:653,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 154px) / 2, 1px)`,y:(componentViewport?.y||0)+88+1710+44+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n4ekt8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{variant:\"woaurOKU_\"}},children:/*#__PURE__*/_jsx(Newton,{height:\"100%\",id:\"cjpGLn1L2\",layoutId:\"cjpGLn1L2\",style:{height:\"100%\",width:\"100%\"},variant:\"OjWrmCYTA\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x06r24\",\"data-framer-name\":\"Frame 332759274\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{height:420,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 124px) / 2, 1px)`,y:(componentViewport?.y||0)+88+1592+61+0+0},NZ5Gg_5Ii:{height:231,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 22px) / 2, 1px)`,y:(componentViewport?.y||0)+100+1388.8+45+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:606,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 154px) / 2, 1px)`,y:(componentViewport?.y||0)+88+1710+67.5+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-134soph-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{variant:\"c_exCJX8Z\"}},children:/*#__PURE__*/_jsx(Kard,{height:\"100%\",id:\"U9Ng4IqYa\",layoutId:\"U9Ng4IqYa\",style:{height:\"100%\",width:\"100%\"},variant:\"xCJocTkUw\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gi4u83\",\"data-framer-name\":\"Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1es9ri\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5ib06b\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4n9ju8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ikeml6\",\"data-styles-preset\":\"WkRxpnn8B\",children:\"Design has the power to scale businesses \u2014 Bolster enables this power.\"})}),className:\"framer-1xw89ut\",\"data-framer-name\":\"A design studio for small and nimble businesses doing big things.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yyfpuf\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8bxwcl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s3lftl-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"Pgjl6lTt_\",layoutId:\"Pgjl6lTt_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m2h69c\",\"data-styles-preset\":\"EDJTXkl36\",children:\"earn trust\"})}),className:\"framer-1ey90f6\",\"data-framer-name\":\"A design studio for small and nimble businesses doing big things.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jf40ov\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1beitf1-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"zmenr2syT\",layoutId:\"zmenr2syT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m2h69c\",\"data-styles-preset\":\"EDJTXkl36\",children:\"pitch successfully\"})}),className:\"framer-12814x6\",\"data-framer-name\":\"A design studio for small and nimble businesses doing big things.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-142snd6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i4skgk-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"NVJqLQw89\",layoutId:\"NVJqLQw89\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m2h69c\",\"data-styles-preset\":\"EDJTXkl36\",children:\"standout from competitors\"})}),className:\"framer-11mnuov\",\"data-framer-name\":\"A design studio for small and nimble businesses doing big things.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wmz548\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wp755v-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"EEDH8U0pX\",layoutId:\"EEDH8U0pX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1m2h69c\",\"data-styles-preset\":\"EDJTXkl36\",children:\"raise money\"})}),className:\"framer-8ubdf7\",\"data-framer-name\":\"A design studio for small and nimble businesses doing big things.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iegyb3\",\"data-framer-name\":\"Work2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eoq97l\",\"data-framer-name\":\"Frame 332759274\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{height:486,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 124px) / 2, 1px)`,y:(componentViewport?.y||0)+88+2449+32+0+0},NZ5Gg_5Ii:{height:371,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 22px) / 2, 1px)`,y:(componentViewport?.y||0)+100+2067.6+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:682,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 154px) / 2, 1px)`,y:(componentViewport?.y||0)+88+2904+44+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i93uun-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{variant:\"EhfIIxMc1\"}},children:/*#__PURE__*/_jsx(Carversville,{height:\"100%\",id:\"DgsjjuUo4\",layoutId:\"DgsjjuUo4\",style:{height:\"100%\",width:\"100%\"},variant:\"T2IzVjxxs\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gl66a1\",\"data-framer-name\":\"Frame 332759274\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{height:365,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 124px) / 2, 1px)`,y:(componentViewport?.y||0)+88+2449+92.5+0+0},NZ5Gg_5Ii:{height:278,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 22px) / 2, 1px)`,y:(componentViewport?.y||0)+100+2067.6+46.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:506,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 154px) / 2, 1px)`,y:(componentViewport?.y||0)+88+2904+132+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-3sibcw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{variant:\"EpOc3MEmo\"}},children:/*#__PURE__*/_jsx(Omniscient,{height:\"100%\",id:\"BUgi8JAp5\",layoutId:\"BUgi8JAp5\",style:{height:\"100%\",width:\"100%\"},variant:\"bVGbVDMHE\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sidzoq\",\"data-framer-name\":\"Capabilities\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wnbo2o\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16u1gxn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b9uwfc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ikeml6\",\"data-styles-preset\":\"WkRxpnn8B\",children:\"Focusing on the design essentials that help you grow\"})}),className:\"framer-1tywkxz\",\"data-framer-name\":\"A design studio for small and nimble businesses doing big things.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KlBtkJ2rm\"},implicitPathVariables:undefined},{href:{webPageId:\"KlBtkJ2rm\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{y:(componentViewport?.y||0)+88+3044+0+32+0+0+87.80000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,y:(componentViewport?.y||0)+88+3719+0+80+0+0+87.80000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vs42oa-container hidden-1y2l6fx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{qmu24Hv6y:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(PrimaryButton,{csw3pGeE1:false,height:\"100%\",id:\"WmAN5oARW\",layoutId:\"WmAN5oARW\",OSK0VM6ik:\"Get in Touch\",qmu24Hv6y:resolvedLinks1[0],variant:\"BNxyX9iMr\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fbwpv9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1015wwl\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jgzxhm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xeux18\",\"data-styles-preset\":\"Be4T4K9PG\",children:\"brand\"})}),className:\"framer-4ysirj\",\"data-framer-name\":\"OMAKASE - 059\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Brand and Identity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Brand Guide\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Expansion and Cohesion\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Brand and Identity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Brand Guide\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Expansion and Cohesion\"})]}),className:\"framer-66vz7n\",\"data-framer-name\":\"Startups with budget and/or time constraints who need design help with sales & fundraising materials.\",fonts:[\"CUSTOM;Founders Grotesk Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ike67w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xeux18\",\"data-styles-preset\":\"Be4T4K9PG\",children:\"application\"})}),className:\"framer-1msanmi\",\"data-framer-name\":\"OMAKASE - 059\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Websites\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Tradeshow Activation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Collateral\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Websites\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Tradeshow Activation\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Collateral\"})]}),className:\"framer-1dmxkri\",\"data-framer-name\":\"Professional services firms like agencies, wealth managers, technicians, and consultants.\",fonts:[\"CUSTOM;Founders Grotesk Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gcmg0v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1xeux18\",\"data-styles-preset\":\"Be4T4K9PG\",children:\"growth\"})}),className:\"framer-1dkw7m\",\"data-framer-name\":\"OMAKASE - 059\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Sales and Investor Decks\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Digital Ad Creative\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"One-pagers\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Sales and Investor Decks\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Digital Ad Creative\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"One-pagers\"})]}),className:\"framer-1jfbygz\",\"data-framer-name\":\"B2B software companies that have various sales & marketing design needs.\",fonts:[\"CUSTOM;Founders Grotesk Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-znbi36\",\"data-framer-name\":\"Framer\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dupuw1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wlza77\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3m0iwx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZpbmFuY2llciBEaXNwbGF5IExpZ2h0\",\"--framer-font-family\":'\"Financier Display Light\", \"Financier Display Light Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Bolster Builds Websites on Framer\"})})},NZ5Gg_5Ii:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZpbmFuY2llciBEaXNwbGF5IExpZ2h0\",\"--framer-font-family\":'\"Financier Display Light\", \"Financier Display Light Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Bolster Builds Websites on Framer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZpbmFuY2llciBEaXNwbGF5IExpZ2h0\",\"--framer-font-family\":'\"Financier Display Light\", \"Financier Display Light Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Bolster Builds Websites on Framer\"})}),className:\"framer-zq56z0\",\"data-framer-name\":\"A design studio for small and nimble businesses doing big things.\",effect:textEffect1,fonts:[\"CUSTOM;Financier Display Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{y:(componentViewport?.y||0)+88+4418+0+32+0+0+68},NZ5Gg_5Ii:{y:(componentViewport?.y||0)+100+3923.3999999999996+22+0+0+0+0+68}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,width:\"111px\",y:(componentViewport?.y||0)+88+4844+0+44+0+0+73.80000000000001,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation11,className:\"framer-v0kpoa-container\",\"data-framer-appear-id\":\"v0kpoa\",initial:animation12,optimized:true,children:/*#__PURE__*/_jsx(Group332759125,{height:\"100%\",id:\"URI06izyb\",layoutId:\"URI06izyb\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dmkq2z\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-thoohu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dexx8v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"We help clients launch stunning websites. As an official Framer Partner, we bring custom website experiences to life.\"})}),className:\"framer-1pvrgz9\",\"data-framer-name\":\"Startups with budget and/or time constraints who need design help with sales & fundraising materials.\",fonts:[\"CUSTOM;Founders Grotesk Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"f8CoFAenb\"},implicitPathVariables:undefined},{href:{webPageId:\"f8CoFAenb\"},implicitPathVariables:undefined},{href:{webPageId:\"f8CoFAenb\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{y:(componentViewport?.y||0)+88+4418+0+32+0+0+0+0+0+154},NZ5Gg_5Ii:{width:`max(min(${componentViewport?.width||\"100vw\"} - 44px, 1200px), 1px)`,y:(componentViewport?.y||0)+100+3923.3999999999996+22+0+0+105+31+0+0+0+162}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,y:(componentViewport?.y||0)+88+4844+0+44+0+0+0+0+0+163,children:/*#__PURE__*/_jsx(Container,{className:\"framer-51savy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{qmu24Hv6y:resolvedLinks2[1]},NZ5Gg_5Ii:{qmu24Hv6y:resolvedLinks2[2],style:{width:\"100%\"},variant:\"V5ph7WVR2\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{csw3pGeE1:false,height:\"100%\",id:\"y9lX4F5Ct\",layoutId:\"y9lX4F5Ct\",OSK0VM6ik:\"Learn More\",qmu24Hv6y:resolvedLinks2[0],variant:\"BNxyX9iMr\",width:\"100%\"})})})})})})]})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{y:(componentViewport?.y||0)+88+4716},NZ5Gg_5Ii:{y:(componentViewport?.y||0)+100+4322.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:613,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+88+5191,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f5ahe0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{variant:\"LwQAcPU1K\"},NZ5Gg_5Ii:{variant:\"LwQAcPU1K\"}},children:/*#__PURE__*/_jsx(Omakase,{height:\"100%\",id:\"FFlt_W03_\",layoutId:\"FFlt_W03_\",style:{width:\"100%\"},variant:\"aYf8kaII0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5wji5d\",\"data-framer-name\":\"Omakase CTA\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cxfrfp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-152x15s\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gp6ci5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ikeml6\",\"data-styles-preset\":\"WkRxpnn8B\",children:\"Omakase\\xa0\u2014 the free brand sprint\"})}),className:\"framer-1v5yrtx\",\"data-framer-name\":\"A design studio for small and nimble businesses doing big things.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hQDTRUbfo\"},implicitPathVariables:undefined},{href:{webPageId:\"hQDTRUbfo\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{y:(componentViewport?.y||0)+88+5374+0+32+0+0+87.80000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,y:(componentViewport?.y||0)+88+5849+0+80+0+0+87.80000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rkmcql-container hidden-1y2l6fx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{qmu24Hv6y:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(PrimaryButton,{csw3pGeE1:false,height:\"100%\",id:\"xulPzxbiE\",layoutId:\"xulPzxbiE\",OSK0VM6ik:\"Learn More & Sign up\",qmu24Hv6y:resolvedLinks3[0],variant:\"BNxyX9iMr\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ra5j56\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s04u7g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgRm91bmRlcnMgR3JvdGVzayBSZWd1bGFy\",\"--framer-font-family\":'\"Test Founders Grotesk Regular\", \"Test Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"We offer a risk-free way for our customers to experience our design services before they buy. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgRm91bmRlcnMgR3JvdGVzayBSZWd1bGFy\",\"--framer-font-family\":'\"Test Founders Grotesk Regular\", \"Test Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",children:\"The Bolster Omakase is our free brand design sprint that delivers a usable visual identity package in weeks.\\u2028\\u2028\\u2028\\u2028Customers can choose to use it right away for free at no cost. We are literally giving away quality design.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgRm91bmRlcnMgR3JvdGVzayBSZWd1bGFy\",\"--framer-font-family\":'\"Test Founders Grotesk Regular\", \"Test Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1Rlc3QgRm91bmRlcnMgR3JvdGVzayBSZWd1bGFy\",\"--framer-font-family\":'\"Test Founders Grotesk Regular\", \"Test Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-b9e5778e-1587-4f00-86b1-93845a61e6cd, rgb(234, 236, 231))\"},children:\"Many of our Omakase customers opt in to our design services to build out presentation decks, websites, and other collateral.\"})]}),fonts:[\"CUSTOM;Test Founders Grotesk Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",children:\"We offer a risk-free way for our customers to experience our design services before they buy. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",children:\"The Bolster Omakase is our free brand design sprint that delivers a usable visual identity package in weeks.\\u2028\\u2028\\u2028\\u2028Customers can choose to use it right away for free at no cost. We are literally giving away quality design.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",children:\"Many of our Omakase customers opt in to our design services to build out presentation decks, websites, and other collateral.\"})]}),className:\"framer-wua6g1\",\"data-framer-name\":\"Startups with budget and/or time constraints who need design help with sales & fundraising materials.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hQDTRUbfo\"},implicitPathVariables:undefined},{href:{webPageId:\"hQDTRUbfo\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{height:35,width:`max(min(max(min(${componentViewport?.width||\"100vw\"} - 44px, 1200px), 1px), 1200px), 1px)`,y:(componentViewport?.y||0)+100+4957.4+22+0+0+0+77.80000000000001+0+10+644}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7h5mle-container hidden-a50vwv hidden-154ri28\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{qmu24Hv6y:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(PrimaryButton,{csw3pGeE1:false,height:\"100%\",id:\"QbXSLg7_8\",layoutId:\"QbXSLg7_8\",OSK0VM6ik:\"Learn More & Sign up\",qmu24Hv6y:resolvedLinks4[0],style:{width:\"100%\"},variant:\"V5ph7WVR2\",width:\"100%\"})})})})})})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qrvrts\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-122ek4l\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px, 1px)`,y:(componentViewport?.y||0)+88+6093+0+0+0},NZ5Gg_5Ii:{width:`max(min(${componentViewport?.width||\"100vw\"} - 44px, 1200px), 1px)`,y:(componentViewport?.y||0)+100+5790.2+22+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:491,width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 160px, 1px)`,y:(componentViewport?.y||0)+88+6604+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hza42w-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{variant:\"isNpTL74x\"},NZ5Gg_5Ii:{t6G59K00p:\"jWrAzpDki\",variant:\"H_cFy6m2v\"}},children:/*#__PURE__*/_jsx(Testimonials8,{height:\"100%\",id:\"dbV8exJlS\",layoutId:\"dbV8exJlS\",style:{width:\"100%\"},t6G59K00p:\"cofyJGHR3\",variant:\"D7B53fNuc\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-npv729\",\"data-framer-name\":\"Team\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lgpe6n\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ym1d1g\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3r5t0e\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjmhle\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ikeml6\",\"data-styles-preset\":\"WkRxpnn8B\",children:\"Purpose built by an experienced team\"})}),className:\"framer-1ku0pxh\",\"data-framer-name\":\"A design studio for small and nimble businesses doing big things.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qnncak\",\"data-framer-name\":\"Frame 332759257\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+88+6629+0+0+0+32+0+0+87.80000000000001+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iF4GW7bReOl8I1eyjXL0J6dqM0.png\"}},NZ5Gg_5Ii:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+6347.2+22+0+22+0+0+0+0+0+87.80000000000001+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iF4GW7bReOl8I1eyjXL0J6dqM0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+88+7140+0+0+0+80+0+0+87.80000000000001+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iF4GW7bReOl8I1eyjXL0J6dqM0.png\"},className:\"framer-rhn8t2\",\"data-border\":true,\"data-framer-name\":\"Screenshot 2024-03-23 at 12.13 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+88+6629+0+0+0+32+0+0+87.80000000000001+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RLQWQIdHg1A8ZtgrTpLzouRhvc.png\"}},NZ5Gg_5Ii:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+6347.2+22+0+22+0+0+0+0+0+87.80000000000001+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RLQWQIdHg1A8ZtgrTpLzouRhvc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+88+7140+0+0+0+80+0+0+87.80000000000001+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RLQWQIdHg1A8ZtgrTpLzouRhvc.png\"},className:\"framer-1hin1h5\",\"data-border\":true,\"data-framer-name\":\"Screenshot 2024-03-23 at 12.14 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+88+6629+0+0+0+32+0+0+87.80000000000001+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0wJXPSQDlOYjYhd9Bc0TICNpaz0.png\"}},NZ5Gg_5Ii:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+6347.2+22+0+22+0+0+0+0+0+87.80000000000001+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0wJXPSQDlOYjYhd9Bc0TICNpaz0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+88+7140+0+0+0+80+0+0+87.80000000000001+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0wJXPSQDlOYjYhd9Bc0TICNpaz0.png\"},className:\"framer-c9bb26\",\"data-border\":true,\"data-framer-name\":\"Screenshot 2024-03-23 at 12.14 2\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o27wlh\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11xy4yv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1bzz0xf\",\"data-styles-preset\":\"Rp59sPfE3\",children:[\"Bolster is a small team of experienced creatives. We've worked with hundred of early stage businesses and built an agency around this experience.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Bolster is part of \",/*#__PURE__*/_jsx(Link,{href:\"https://www.barrel-holdings.com/\",nodeId:\"SgvOsIKmn\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Barrel Holdings\"})}),\", a portfolio of services businesses that help organizations grow through various creative, engineering, and strategy services.\"]})}),className:\"framer-hrqzby\",\"data-framer-name\":\"Startups with budget and/or time constraints who need design help with sales & fundraising materials.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aj7chSL9K:{y:(componentViewport?.y||0)+88+6883.8},NZ5Gg_5Ii:{y:(componentViewport?.y||0)+100+6788.708595275879}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:341,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+88+7502.508595275879,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14mmqy4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{variant:\"GorVCVN9R\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"RuKtV1gic\",layoutId:\"RuKtV1gic\",style:{width:\"100%\"},variant:\"JH3UdQbm6\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NZ5Gg_5Ii:{height:35,width:\"90vw\",y:943}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rxww1h-container hidden-a50vwv hidden-154ri28\",layoutScroll:true,children:/*#__PURE__*/_jsx(PrimaryButton,{csw3pGeE1:false,height:\"100%\",id:\"NvWwr_Mk6\",layoutId:\"NvWwr_Mk6\",OSK0VM6ik:\"Get in Touch\",qmu24Hv6y:\"mailto:newbiz@\",style:{width:\"100%\"},variant:\"ptvyqyjkb\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-229f4d81-b8c3-4e9d-b5b7-2391e7fbeecf, rgb(234, 236, 231)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-12cV8.framer-r84dnu, .framer-12cV8 .framer-r84dnu { display: block; }\",\".framer-12cV8.framer-a50vwv { align-content: center; align-items: center; background-color: var(--token-229f4d81-b8c3-4e9d-b5b7-2391e7fbeecf, #eaece7); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 88px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-12cV8 .framer-qa95ml-container { flex: none; height: auto; left: 50%; max-width: 1440px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-12cV8 .framer-3f1b47 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 298px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-45his5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; max-width: 941px; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 941px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-12cV8 .framer-4o2fc9, .framer-12cV8 .framer-1y1rkw6, .framer-12cV8 .framer-1gi4u83, .framer-12cV8 .framer-4n9ju8, .framer-12cV8 .framer-sidzoq, .framer-12cV8 .framer-znbi36, .framer-12cV8 .framer-5wji5d, .framer-12cV8 .framer-lgpe6n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-c17i63-container { flex: none; height: 643px; max-width: 1440px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-1f28xa6, .framer-12cV8 .framer-nbj6ye, .framer-12cV8 .framer-1lq9eqq, .framer-12cV8 .framer-80xewx, .framer-12cV8 .framer-1doohjg, .framer-12cV8 .framer-17jguxu, .framer-12cV8 .framer-1fk0eru { aspect-ratio: 1.7781541066892463 / 1; height: var(--framer-aspect-ratio-supported, 590px); overflow: visible; position: relative; width: 1050px; }\",\".framer-12cV8 .framer-1o1n2qw { aspect-ratio: 1.7790008467400509 / 1; height: var(--framer-aspect-ratio-supported, 591px); overflow: visible; position: relative; width: 1051px; }\",\".framer-12cV8 .framer-5hdoz2 { aspect-ratio: 1.7781541066892463 / 1; height: var(--framer-aspect-ratio-supported, 591px); overflow: visible; position: relative; width: 1050px; }\",\".framer-12cV8 .framer-nyuwlw { aspect-ratio: 1.9980970504281637 / 1; height: var(--framer-aspect-ratio-supported, 526px); overflow: visible; position: relative; width: 1050px; }\",\".framer-12cV8 .framer-lyri0a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 60px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-10nm0m1, .framer-12cV8 .framer-1wlza77 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-1idquwe { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-84p8ai, .framer-12cV8 .framer-1tywkxz, .framer-12cV8 .framer-4ysirj, .framer-12cV8 .framer-1dkw7m, .framer-12cV8 .framer-zq56z0, .framer-12cV8 .framer-1pvrgz9, .framer-12cV8 .framer-1v5yrtx, .framer-12cV8 .framer-wua6g1, .framer-12cV8 .framer-1ku0pxh, .framer-12cV8 .framer-hrqzby { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-12cV8 .framer-1pobg1q-container, .framer-12cV8 .framer-vs42oa-container, .framer-12cV8 .framer-51savy-container, .framer-12cV8 .framer-rkmcql-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-12cV8 .framer-h53gcg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-1q2hb41, .framer-12cV8 .framer-1h26z1s, .framer-12cV8 .framer-1oirodt, .framer-12cV8 .framer-thoohu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-y1nrbe, .framer-12cV8 .framer-dudxso, .framer-12cV8 .framer-q12mpq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 105px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-1pyi11s, .framer-12cV8 .framer-bxattb, .framer-12cV8 .framer-6lreg5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 389px; word-break: break-word; word-wrap: break-word; }\",\".framer-12cV8 .framer-1jhhsjn, .framer-12cV8 .framer-1fpswu7, .framer-12cV8 .framer-1qbj2od { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-12cV8 .framer-1ehpwzx-container, .framer-12cV8 .framer-f5ahe0-container, .framer-12cV8 .framer-7h5mle-container, .framer-12cV8 .framer-14mmqy4-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-12cV8 .framer-roauuy, .framer-12cV8 .framer-iegyb3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 44px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-sg36yg, .framer-12cV8 .framer-1x06r24, .framer-12cV8 .framer-1eoq97l, .framer-12cV8 .framer-1gl66a1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-n4ekt8-container { flex: none; height: 653px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-134soph-container { flex: none; height: 606px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-1es9ri { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-5ib06b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-1xw89ut, .framer-12cV8 .framer-1ey90f6, .framer-12cV8 .framer-12814x6, .framer-12cV8 .framer-11mnuov, .framer-12cV8 .framer-8ubdf7 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-12cV8 .framer-yyfpuf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-8bxwcl, .framer-12cV8 .framer-jf40ov, .framer-12cV8 .framer-142snd6, .framer-12cV8 .framer-wmz548 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-1s3lftl-container, .framer-12cV8 .framer-1beitf1-container, .framer-12cV8 .framer-i4skgk-container, .framer-12cV8 .framer-1wp755v-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-12cV8 .framer-i93uun-container { flex: none; height: 682px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-3sibcw-container { cursor: default; flex: none; height: 506px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-1wnbo2o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-16u1gxn, .framer-12cV8 .framer-152x15s, .framer-12cV8 .framer-3r5t0e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: flex-start; max-width: 1200px; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-b9uwfc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-fbwpv9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-1015wwl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-1jgzxhm, .framer-12cV8 .framer-ike67w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-66vz7n, .framer-12cV8 .framer-1jfbygz { --framer-paragraph-spacing: 15px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-12cV8 .framer-1msanmi { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-12cV8 .framer-1dmxkri { --framer-paragraph-spacing: 15px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-12cV8 .framer-1gcmg0v { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-dupuw1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 44px 80px 60px 80px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-3m0iwx { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-v0kpoa-container { flex: none; height: 37px; position: relative; width: 111px; }\",\".framer-12cV8 .framer-dmkq2z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-dexx8v { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-1cxfrfp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 80px 80px 20px 80px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-gp6ci5, .framer-12cV8 .framer-yjmhle { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-ra5j56, .framer-12cV8 .framer-o27wlh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-1s04u7g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-qrvrts, .framer-12cV8 .framer-npv729 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-122ek4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-1hza42w-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-12cV8 .framer-ym1d1g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-12cV8 .framer-qnncak { flex: none; height: 70px; overflow: visible; position: relative; width: 139px; }\",\".framer-12cV8 .framer-rhn8t2 { --border-bottom-width: 2px; --border-color: #000000; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 0.9974684915854434 / 1; border-bottom-left-radius: 1156px; border-bottom-right-radius: 1156px; border-top-left-radius: 1156px; border-top-right-radius: 1156px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: 0px; position: absolute; top: 0px; width: 70px; }\",\".framer-12cV8 .framer-1hin1h5 { --border-bottom-width: 2px; --border-color: #000000; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 0.9048843993741822 / 1; border-bottom-left-radius: 1156px; border-bottom-right-radius: 1156px; border-top-left-radius: 1156px; border-top-right-radius: 1156px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: 39px; position: absolute; top: 0px; width: 63px; }\",\".framer-12cV8 .framer-c9bb26 { --border-bottom-width: 2px; --border-color: #000000; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 0.9641944237863289 / 1; border-bottom-left-radius: 1156px; border-bottom-right-radius: 1156px; border-top-left-radius: 1156px; border-top-right-radius: 1156px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: 72px; position: absolute; top: 0px; width: 67px; }\",\".framer-12cV8 .framer-11xy4yv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-12cV8 .framer-rxww1h-container { bottom: 22px; flex: none; height: auto; left: 50%; position: fixed; transform: translateX(-50%); width: 90%; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-12cV8.framer-a50vwv, .framer-12cV8 .framer-3f1b47, .framer-12cV8 .framer-4o2fc9, .framer-12cV8 .framer-1y1rkw6, .framer-12cV8 .framer-lyri0a, .framer-12cV8 .framer-10nm0m1, .framer-12cV8 .framer-1idquwe, .framer-12cV8 .framer-h53gcg, .framer-12cV8 .framer-1q2hb41, .framer-12cV8 .framer-y1nrbe, .framer-12cV8 .framer-1h26z1s, .framer-12cV8 .framer-dudxso, .framer-12cV8 .framer-1oirodt, .framer-12cV8 .framer-q12mpq, .framer-12cV8 .framer-roauuy, .framer-12cV8 .framer-sg36yg, .framer-12cV8 .framer-1x06r24, .framer-12cV8 .framer-1gi4u83, .framer-12cV8 .framer-1es9ri, .framer-12cV8 .framer-5ib06b, .framer-12cV8 .framer-4n9ju8, .framer-12cV8 .framer-yyfpuf, .framer-12cV8 .framer-8bxwcl, .framer-12cV8 .framer-jf40ov, .framer-12cV8 .framer-142snd6, .framer-12cV8 .framer-wmz548, .framer-12cV8 .framer-iegyb3, .framer-12cV8 .framer-1eoq97l, .framer-12cV8 .framer-1gl66a1, .framer-12cV8 .framer-sidzoq, .framer-12cV8 .framer-1wnbo2o, .framer-12cV8 .framer-16u1gxn, .framer-12cV8 .framer-b9uwfc, .framer-12cV8 .framer-fbwpv9, .framer-12cV8 .framer-1015wwl, .framer-12cV8 .framer-1jgzxhm, .framer-12cV8 .framer-ike67w, .framer-12cV8 .framer-1gcmg0v, .framer-12cV8 .framer-znbi36, .framer-12cV8 .framer-dupuw1, .framer-12cV8 .framer-1wlza77, .framer-12cV8 .framer-3m0iwx, .framer-12cV8 .framer-dmkq2z, .framer-12cV8 .framer-thoohu, .framer-12cV8 .framer-dexx8v, .framer-12cV8 .framer-5wji5d, .framer-12cV8 .framer-1cxfrfp, .framer-12cV8 .framer-152x15s, .framer-12cV8 .framer-gp6ci5, .framer-12cV8 .framer-ra5j56, .framer-12cV8 .framer-1s04u7g, .framer-12cV8 .framer-qrvrts, .framer-12cV8 .framer-122ek4l, .framer-12cV8 .framer-npv729, .framer-12cV8 .framer-lgpe6n, .framer-12cV8 .framer-ym1d1g, .framer-12cV8 .framer-3r5t0e, .framer-12cV8 .framer-yjmhle, .framer-12cV8 .framer-o27wlh, .framer-12cV8 .framer-11xy4yv { gap: 0px; } .framer-12cV8.framer-a50vwv > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-12cV8.framer-a50vwv > :first-child, .framer-12cV8 .framer-3f1b47 > :first-child, .framer-12cV8 .framer-1idquwe > :first-child, .framer-12cV8 .framer-h53gcg > :first-child, .framer-12cV8 .framer-y1nrbe > :first-child, .framer-12cV8 .framer-dudxso > :first-child, .framer-12cV8 .framer-q12mpq > :first-child, .framer-12cV8 .framer-sg36yg > :first-child, .framer-12cV8 .framer-1x06r24 > :first-child, .framer-12cV8 .framer-5ib06b > :first-child, .framer-12cV8 .framer-yyfpuf > :first-child, .framer-12cV8 .framer-1eoq97l > :first-child, .framer-12cV8 .framer-1gl66a1 > :first-child, .framer-12cV8 .framer-b9uwfc > :first-child, .framer-12cV8 .framer-1015wwl > :first-child, .framer-12cV8 .framer-1jgzxhm > :first-child, .framer-12cV8 .framer-ike67w > :first-child, .framer-12cV8 .framer-1gcmg0v > :first-child, .framer-12cV8 .framer-3m0iwx > :first-child, .framer-12cV8 .framer-dmkq2z > :first-child, .framer-12cV8 .framer-dexx8v > :first-child, .framer-12cV8 .framer-gp6ci5 > :first-child, .framer-12cV8 .framer-1s04u7g > :first-child, .framer-12cV8 .framer-qrvrts > :first-child, .framer-12cV8 .framer-npv729 > :first-child, .framer-12cV8 .framer-yjmhle > :first-child, .framer-12cV8 .framer-11xy4yv > :first-child { margin-top: 0px; } .framer-12cV8.framer-a50vwv > :last-child, .framer-12cV8 .framer-3f1b47 > :last-child, .framer-12cV8 .framer-1idquwe > :last-child, .framer-12cV8 .framer-h53gcg > :last-child, .framer-12cV8 .framer-y1nrbe > :last-child, .framer-12cV8 .framer-dudxso > :last-child, .framer-12cV8 .framer-q12mpq > :last-child, .framer-12cV8 .framer-sg36yg > :last-child, .framer-12cV8 .framer-1x06r24 > :last-child, .framer-12cV8 .framer-5ib06b > :last-child, .framer-12cV8 .framer-yyfpuf > :last-child, .framer-12cV8 .framer-1eoq97l > :last-child, .framer-12cV8 .framer-1gl66a1 > :last-child, .framer-12cV8 .framer-b9uwfc > :last-child, .framer-12cV8 .framer-1015wwl > :last-child, .framer-12cV8 .framer-1jgzxhm > :last-child, .framer-12cV8 .framer-ike67w > :last-child, .framer-12cV8 .framer-1gcmg0v > :last-child, .framer-12cV8 .framer-3m0iwx > :last-child, .framer-12cV8 .framer-dmkq2z > :last-child, .framer-12cV8 .framer-dexx8v > :last-child, .framer-12cV8 .framer-gp6ci5 > :last-child, .framer-12cV8 .framer-1s04u7g > :last-child, .framer-12cV8 .framer-qrvrts > :last-child, .framer-12cV8 .framer-npv729 > :last-child, .framer-12cV8 .framer-yjmhle > :last-child, .framer-12cV8 .framer-11xy4yv > :last-child { margin-bottom: 0px; } .framer-12cV8 .framer-3f1b47 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-12cV8 .framer-4o2fc9 > *, .framer-12cV8 .framer-1y1rkw6 > *, .framer-12cV8 .framer-1gi4u83 > *, .framer-12cV8 .framer-4n9ju8 > *, .framer-12cV8 .framer-sidzoq > *, .framer-12cV8 .framer-znbi36 > *, .framer-12cV8 .framer-5wji5d > *, .framer-12cV8 .framer-ra5j56 > *, .framer-12cV8 .framer-lgpe6n > *, .framer-12cV8 .framer-o27wlh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-12cV8 .framer-4o2fc9 > :first-child, .framer-12cV8 .framer-1y1rkw6 > :first-child, .framer-12cV8 .framer-lyri0a > :first-child, .framer-12cV8 .framer-10nm0m1 > :first-child, .framer-12cV8 .framer-1q2hb41 > :first-child, .framer-12cV8 .framer-1h26z1s > :first-child, .framer-12cV8 .framer-1oirodt > :first-child, .framer-12cV8 .framer-roauuy > :first-child, .framer-12cV8 .framer-1gi4u83 > :first-child, .framer-12cV8 .framer-1es9ri > :first-child, .framer-12cV8 .framer-4n9ju8 > :first-child, .framer-12cV8 .framer-8bxwcl > :first-child, .framer-12cV8 .framer-jf40ov > :first-child, .framer-12cV8 .framer-142snd6 > :first-child, .framer-12cV8 .framer-wmz548 > :first-child, .framer-12cV8 .framer-iegyb3 > :first-child, .framer-12cV8 .framer-sidzoq > :first-child, .framer-12cV8 .framer-1wnbo2o > :first-child, .framer-12cV8 .framer-16u1gxn > :first-child, .framer-12cV8 .framer-fbwpv9 > :first-child, .framer-12cV8 .framer-znbi36 > :first-child, .framer-12cV8 .framer-dupuw1 > :first-child, .framer-12cV8 .framer-1wlza77 > :first-child, .framer-12cV8 .framer-thoohu > :first-child, .framer-12cV8 .framer-5wji5d > :first-child, .framer-12cV8 .framer-1cxfrfp > :first-child, .framer-12cV8 .framer-152x15s > :first-child, .framer-12cV8 .framer-ra5j56 > :first-child, .framer-12cV8 .framer-122ek4l > :first-child, .framer-12cV8 .framer-lgpe6n > :first-child, .framer-12cV8 .framer-ym1d1g > :first-child, .framer-12cV8 .framer-3r5t0e > :first-child, .framer-12cV8 .framer-o27wlh > :first-child { margin-left: 0px; } .framer-12cV8 .framer-4o2fc9 > :last-child, .framer-12cV8 .framer-1y1rkw6 > :last-child, .framer-12cV8 .framer-lyri0a > :last-child, .framer-12cV8 .framer-10nm0m1 > :last-child, .framer-12cV8 .framer-1q2hb41 > :last-child, .framer-12cV8 .framer-1h26z1s > :last-child, .framer-12cV8 .framer-1oirodt > :last-child, .framer-12cV8 .framer-roauuy > :last-child, .framer-12cV8 .framer-1gi4u83 > :last-child, .framer-12cV8 .framer-1es9ri > :last-child, .framer-12cV8 .framer-4n9ju8 > :last-child, .framer-12cV8 .framer-8bxwcl > :last-child, .framer-12cV8 .framer-jf40ov > :last-child, .framer-12cV8 .framer-142snd6 > :last-child, .framer-12cV8 .framer-wmz548 > :last-child, .framer-12cV8 .framer-iegyb3 > :last-child, .framer-12cV8 .framer-sidzoq > :last-child, .framer-12cV8 .framer-1wnbo2o > :last-child, .framer-12cV8 .framer-16u1gxn > :last-child, .framer-12cV8 .framer-fbwpv9 > :last-child, .framer-12cV8 .framer-znbi36 > :last-child, .framer-12cV8 .framer-dupuw1 > :last-child, .framer-12cV8 .framer-1wlza77 > :last-child, .framer-12cV8 .framer-thoohu > :last-child, .framer-12cV8 .framer-5wji5d > :last-child, .framer-12cV8 .framer-1cxfrfp > :last-child, .framer-12cV8 .framer-152x15s > :last-child, .framer-12cV8 .framer-ra5j56 > :last-child, .framer-12cV8 .framer-122ek4l > :last-child, .framer-12cV8 .framer-lgpe6n > :last-child, .framer-12cV8 .framer-ym1d1g > :last-child, .framer-12cV8 .framer-3r5t0e > :last-child, .framer-12cV8 .framer-o27wlh > :last-child { margin-right: 0px; } .framer-12cV8 .framer-lyri0a > *, .framer-12cV8 .framer-1wnbo2o > *, .framer-12cV8 .framer-dupuw1 > *, .framer-12cV8 .framer-1cxfrfp > *, .framer-12cV8 .framer-ym1d1g > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-12cV8 .framer-10nm0m1 > *, .framer-12cV8 .framer-1es9ri > *, .framer-12cV8 .framer-16u1gxn > *, .framer-12cV8 .framer-1wlza77 > *, .framer-12cV8 .framer-152x15s > *, .framer-12cV8 .framer-3r5t0e > * { margin: 0px; margin-left: calc(88px / 2); margin-right: calc(88px / 2); } .framer-12cV8 .framer-1idquwe > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-12cV8 .framer-h53gcg > *, .framer-12cV8 .framer-dmkq2z > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-12cV8 .framer-1q2hb41 > *, .framer-12cV8 .framer-1h26z1s > *, .framer-12cV8 .framer-1oirodt > *, .framer-12cV8 .framer-8bxwcl > *, .framer-12cV8 .framer-jf40ov > *, .framer-12cV8 .framer-142snd6 > *, .framer-12cV8 .framer-wmz548 > *, .framer-12cV8 .framer-thoohu > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-12cV8 .framer-y1nrbe > *, .framer-12cV8 .framer-dudxso > *, .framer-12cV8 .framer-q12mpq > *, .framer-12cV8 .framer-1jgzxhm > *, .framer-12cV8 .framer-ike67w > *, .framer-12cV8 .framer-1gcmg0v > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-12cV8 .framer-roauuy > *, .framer-12cV8 .framer-iegyb3 > * { margin: 0px; margin-left: calc(66px / 2); margin-right: calc(66px / 2); } .framer-12cV8 .framer-sg36yg > *, .framer-12cV8 .framer-1x06r24 > *, .framer-12cV8 .framer-1eoq97l > *, .framer-12cV8 .framer-1gl66a1 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-12cV8 .framer-5ib06b > *, .framer-12cV8 .framer-dexx8v > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-12cV8 .framer-yyfpuf > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-12cV8 .framer-b9uwfc > *, .framer-12cV8 .framer-gp6ci5 > *, .framer-12cV8 .framer-yjmhle > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-12cV8 .framer-fbwpv9 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-12cV8 .framer-1015wwl > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-12cV8 .framer-3m0iwx > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-12cV8 .framer-1s04u7g > *, .framer-12cV8 .framer-11xy4yv > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-12cV8 .framer-qrvrts > *, .framer-12cV8 .framer-npv729 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-12cV8 .framer-122ek4l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-12cV8[data-border=\"true\"]::after, .framer-12cV8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-12cV8.framer-a50vwv { width: 810px; } .framer-12cV8 .framer-qa95ml-container { order: 0; } .framer-12cV8 .framer-3f1b47 { height: 206px; order: 1; padding: 22px 0px 44px 0px; } .framer-12cV8 .framer-45his5 { max-width: 635px; } .framer-12cV8 .framer-4o2fc9 { order: 2; } .framer-12cV8 .framer-c17i63-container { height: 467px; } .framer-12cV8 .framer-1y1rkw6 { order: 3; } .framer-12cV8 .framer-lyri0a, .framer-12cV8 .framer-1es9ri, .framer-12cV8 .framer-dupuw1 { gap: 60px; padding: 32px; } .framer-12cV8 .framer-10nm0m1, .framer-12cV8 .framer-16u1gxn, .framer-12cV8 .framer-1wlza77, .framer-12cV8 .framer-152x15s, .framer-12cV8 .framer-3r5t0e { gap: 60px; } .framer-12cV8 .framer-h53gcg, .framer-12cV8 .framer-dmkq2z { gap: 32px; } .framer-12cV8 .framer-1q2hb41, .framer-12cV8 .framer-1h26z1s, .framer-12cV8 .framer-1oirodt, .framer-12cV8 .framer-thoohu { gap: 10px; } .framer-12cV8 .framer-y1nrbe, .framer-12cV8 .framer-dudxso, .framer-12cV8 .framer-q12mpq { gap: 7px; height: min-content; } .framer-12cV8 .framer-1pyi11s, .framer-12cV8 .framer-bxattb, .framer-12cV8 .framer-6lreg5 { width: 100%; } .framer-12cV8 .framer-1jhhsjn, .framer-12cV8 .framer-1fpswu7, .framer-12cV8 .framer-1qbj2od { flex: none; height: auto; } .framer-12cV8 .framer-1ehpwzx-container { order: 4; } .framer-12cV8 .framer-roauuy { gap: 60px; order: 5; padding: 32px; } .framer-12cV8 .framer-n4ekt8-container { height: 478px; } .framer-12cV8 .framer-134soph-container { height: 420px; } .framer-12cV8 .framer-1gi4u83 { order: 6; } .framer-12cV8 .framer-yyfpuf { gap: 21px; } .framer-12cV8 .framer-8bxwcl, .framer-12cV8 .framer-jf40ov, .framer-12cV8 .framer-142snd6, .framer-12cV8 .framer-wmz548, .framer-12cV8 .framer-dexx8v { gap: 22px; } .framer-12cV8 .framer-iegyb3 { gap: 60px; order: 7; padding: 32px; } .framer-12cV8 .framer-i93uun-container { height: 486px; } .framer-12cV8 .framer-3sibcw-container { height: 365px; } .framer-12cV8 .framer-sidzoq { order: 8; } .framer-12cV8 .framer-1wnbo2o, .framer-12cV8 .framer-1cxfrfp, .framer-12cV8 .framer-ym1d1g { padding: 32px; } .framer-12cV8 .framer-fbwpv9 { flex-direction: column; gap: 32px; } .framer-12cV8 .framer-1015wwl { flex: none; gap: 32px; width: 100%; } .framer-12cV8 .framer-1jgzxhm, .framer-12cV8 .framer-ike67w { gap: 11px; } .framer-12cV8 .framer-66vz7n, .framer-12cV8 .framer-1dmxkri, .framer-12cV8 .framer-1jfbygz { --framer-paragraph-spacing: 4px; } .framer-12cV8 .framer-1gcmg0v { flex: none; gap: 11px; width: 100%; } .framer-12cV8 .framer-znbi36 { order: 9; } .framer-12cV8 .framer-f5ahe0-container { order: 10; } .framer-12cV8 .framer-5wji5d { order: 11; } .framer-12cV8 .framer-qrvrts { order: 12; } .framer-12cV8 .framer-122ek4l { padding: 0px 32px 0px 32px; } .framer-12cV8 .framer-npv729 { order: 13; } .framer-12cV8 .framer-qnncak { height: 58px; width: 126px; } .framer-12cV8 .framer-rhn8t2 { height: var(--framer-aspect-ratio-supported, 57px); width: 56px; } .framer-12cV8 .framer-1hin1h5 { height: var(--framer-aspect-ratio-supported, 57px); width: 51px; } .framer-12cV8 .framer-c9bb26 { height: var(--framer-aspect-ratio-supported, 57px); width: 54px; } .framer-12cV8 .framer-o27wlh { padding: 10px 0px 0px 0px; } .framer-12cV8 .framer-14mmqy4-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-12cV8 .framer-lyri0a, .framer-12cV8 .framer-10nm0m1, .framer-12cV8 .framer-h53gcg, .framer-12cV8 .framer-1q2hb41, .framer-12cV8 .framer-y1nrbe, .framer-12cV8 .framer-1h26z1s, .framer-12cV8 .framer-dudxso, .framer-12cV8 .framer-1oirodt, .framer-12cV8 .framer-q12mpq, .framer-12cV8 .framer-roauuy, .framer-12cV8 .framer-1es9ri, .framer-12cV8 .framer-yyfpuf, .framer-12cV8 .framer-8bxwcl, .framer-12cV8 .framer-jf40ov, .framer-12cV8 .framer-142snd6, .framer-12cV8 .framer-wmz548, .framer-12cV8 .framer-iegyb3, .framer-12cV8 .framer-16u1gxn, .framer-12cV8 .framer-fbwpv9, .framer-12cV8 .framer-1015wwl, .framer-12cV8 .framer-1jgzxhm, .framer-12cV8 .framer-ike67w, .framer-12cV8 .framer-1gcmg0v, .framer-12cV8 .framer-dupuw1, .framer-12cV8 .framer-1wlza77, .framer-12cV8 .framer-dmkq2z, .framer-12cV8 .framer-thoohu, .framer-12cV8 .framer-dexx8v, .framer-12cV8 .framer-152x15s, .framer-12cV8 .framer-3r5t0e { gap: 0px; } .framer-12cV8 .framer-lyri0a > *, .framer-12cV8 .framer-10nm0m1 > *, .framer-12cV8 .framer-roauuy > *, .framer-12cV8 .framer-1es9ri > *, .framer-12cV8 .framer-iegyb3 > *, .framer-12cV8 .framer-16u1gxn > *, .framer-12cV8 .framer-dupuw1 > *, .framer-12cV8 .framer-1wlza77 > *, .framer-12cV8 .framer-152x15s > *, .framer-12cV8 .framer-3r5t0e > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-12cV8 .framer-lyri0a > :first-child, .framer-12cV8 .framer-10nm0m1 > :first-child, .framer-12cV8 .framer-1q2hb41 > :first-child, .framer-12cV8 .framer-1h26z1s > :first-child, .framer-12cV8 .framer-1oirodt > :first-child, .framer-12cV8 .framer-roauuy > :first-child, .framer-12cV8 .framer-1es9ri > :first-child, .framer-12cV8 .framer-8bxwcl > :first-child, .framer-12cV8 .framer-jf40ov > :first-child, .framer-12cV8 .framer-142snd6 > :first-child, .framer-12cV8 .framer-wmz548 > :first-child, .framer-12cV8 .framer-iegyb3 > :first-child, .framer-12cV8 .framer-16u1gxn > :first-child, .framer-12cV8 .framer-dupuw1 > :first-child, .framer-12cV8 .framer-1wlza77 > :first-child, .framer-12cV8 .framer-thoohu > :first-child, .framer-12cV8 .framer-152x15s > :first-child, .framer-12cV8 .framer-3r5t0e > :first-child { margin-left: 0px; } .framer-12cV8 .framer-lyri0a > :last-child, .framer-12cV8 .framer-10nm0m1 > :last-child, .framer-12cV8 .framer-1q2hb41 > :last-child, .framer-12cV8 .framer-1h26z1s > :last-child, .framer-12cV8 .framer-1oirodt > :last-child, .framer-12cV8 .framer-roauuy > :last-child, .framer-12cV8 .framer-1es9ri > :last-child, .framer-12cV8 .framer-8bxwcl > :last-child, .framer-12cV8 .framer-jf40ov > :last-child, .framer-12cV8 .framer-142snd6 > :last-child, .framer-12cV8 .framer-wmz548 > :last-child, .framer-12cV8 .framer-iegyb3 > :last-child, .framer-12cV8 .framer-16u1gxn > :last-child, .framer-12cV8 .framer-dupuw1 > :last-child, .framer-12cV8 .framer-1wlza77 > :last-child, .framer-12cV8 .framer-thoohu > :last-child, .framer-12cV8 .framer-152x15s > :last-child, .framer-12cV8 .framer-3r5t0e > :last-child { margin-right: 0px; } .framer-12cV8 .framer-h53gcg > *, .framer-12cV8 .framer-fbwpv9 > *, .framer-12cV8 .framer-1015wwl > *, .framer-12cV8 .framer-dmkq2z > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-12cV8 .framer-h53gcg > :first-child, .framer-12cV8 .framer-y1nrbe > :first-child, .framer-12cV8 .framer-dudxso > :first-child, .framer-12cV8 .framer-q12mpq > :first-child, .framer-12cV8 .framer-yyfpuf > :first-child, .framer-12cV8 .framer-fbwpv9 > :first-child, .framer-12cV8 .framer-1015wwl > :first-child, .framer-12cV8 .framer-1jgzxhm > :first-child, .framer-12cV8 .framer-ike67w > :first-child, .framer-12cV8 .framer-1gcmg0v > :first-child, .framer-12cV8 .framer-dmkq2z > :first-child, .framer-12cV8 .framer-dexx8v > :first-child { margin-top: 0px; } .framer-12cV8 .framer-h53gcg > :last-child, .framer-12cV8 .framer-y1nrbe > :last-child, .framer-12cV8 .framer-dudxso > :last-child, .framer-12cV8 .framer-q12mpq > :last-child, .framer-12cV8 .framer-yyfpuf > :last-child, .framer-12cV8 .framer-fbwpv9 > :last-child, .framer-12cV8 .framer-1015wwl > :last-child, .framer-12cV8 .framer-1jgzxhm > :last-child, .framer-12cV8 .framer-ike67w > :last-child, .framer-12cV8 .framer-1gcmg0v > :last-child, .framer-12cV8 .framer-dmkq2z > :last-child, .framer-12cV8 .framer-dexx8v > :last-child { margin-bottom: 0px; } .framer-12cV8 .framer-1q2hb41 > *, .framer-12cV8 .framer-1h26z1s > *, .framer-12cV8 .framer-1oirodt > *, .framer-12cV8 .framer-thoohu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-12cV8 .framer-y1nrbe > *, .framer-12cV8 .framer-dudxso > *, .framer-12cV8 .framer-q12mpq > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-12cV8 .framer-yyfpuf > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-12cV8 .framer-8bxwcl > *, .framer-12cV8 .framer-jf40ov > *, .framer-12cV8 .framer-142snd6 > *, .framer-12cV8 .framer-wmz548 > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-12cV8 .framer-1jgzxhm > *, .framer-12cV8 .framer-ike67w > *, .framer-12cV8 .framer-1gcmg0v > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-12cV8 .framer-dexx8v > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }}\",\"@media (max-width: 809px) { .framer-12cV8.framer-a50vwv { gap: 22px; padding: 100px 0px 0px 0px; width: 360px; } .framer-12cV8 .framer-qa95ml-container { order: 0; } .framer-12cV8 .framer-3f1b47 { height: min-content; order: 1; padding: 22px 22px 37px 32px; } .framer-12cV8 .framer-45his5 { left: unset; position: relative; top: unset; transform: unset; width: 100%; } .framer-12cV8 .framer-4o2fc9 { order: 2; } .framer-12cV8 .framer-c17i63-container { height: 312px; } .framer-12cV8 .framer-1y1rkw6 { gap: 0px; order: 4; padding: 22px; } .framer-12cV8 .framer-lyri0a, .framer-12cV8 .framer-1wnbo2o, .framer-12cV8 .framer-dupuw1 { padding: 0px; } .framer-12cV8 .framer-10nm0m1 { flex-direction: column; gap: 43px; } .framer-12cV8 .framer-1idquwe, .framer-12cV8 .framer-3m0iwx { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-12cV8 .framer-h53gcg, .framer-12cV8 .framer-dmkq2z { flex: none; gap: 40px; padding: 31px 0px 0px 0px; width: 100%; } .framer-12cV8 .framer-y1nrbe, .framer-12cV8 .framer-dudxso, .framer-12cV8 .framer-q12mpq { height: min-content; } .framer-12cV8 .framer-1pyi11s, .framer-12cV8 .framer-bxattb, .framer-12cV8 .framer-6lreg5, .framer-12cV8 .framer-51savy-container { width: 100%; } .framer-12cV8 .framer-1jhhsjn, .framer-12cV8 .framer-1fpswu7, .framer-12cV8 .framer-1qbj2od { flex: none; height: auto; } .framer-12cV8 .framer-1ehpwzx-container { order: 3; } .framer-12cV8 .framer-roauuy { gap: 22px; order: 5; padding: 0px; } .framer-12cV8 .framer-n4ekt8-container { height: 321px; } .framer-12cV8 .framer-134soph-container { height: 231px; } .framer-12cV8 .framer-1gi4u83 { gap: 0px; order: 6; padding: 22px; } .framer-12cV8 .framer-1es9ri { flex-direction: column; gap: 56px; padding: 0px; } .framer-12cV8 .framer-5ib06b, .framer-12cV8 .framer-b9uwfc, .framer-12cV8 .framer-1gcmg0v, .framer-12cV8 .framer-gp6ci5, .framer-12cV8 .framer-ra5j56, .framer-12cV8 .framer-yjmhle { flex: none; width: 100%; } .framer-12cV8 .framer-yyfpuf { flex: none; gap: 20px; width: 100%; } .framer-12cV8 .framer-8bxwcl, .framer-12cV8 .framer-jf40ov, .framer-12cV8 .framer-142snd6, .framer-12cV8 .framer-wmz548 { gap: 16px; } .framer-12cV8 .framer-iegyb3 { gap: 22px; order: 7; padding: 0px; } .framer-12cV8 .framer-i93uun-container { height: 371px; } .framer-12cV8 .framer-3sibcw-container { height: 278px; } .framer-12cV8 .framer-sidzoq { flex-direction: column; gap: 0px; order: 8; padding: 22px; } .framer-12cV8 .framer-16u1gxn { flex-direction: column; gap: 40px; } .framer-12cV8 .framer-fbwpv9 { flex: none; flex-direction: column; gap: 44px; width: 100%; } .framer-12cV8 .framer-1015wwl { flex: none; gap: 44px; width: 100%; } .framer-12cV8 .framer-66vz7n, .framer-12cV8 .framer-1dmxkri, .framer-12cV8 .framer-1jfbygz { --framer-paragraph-spacing: 4px; } .framer-12cV8 .framer-znbi36 { gap: 0px; order: 9; padding: 22px; } .framer-12cV8 .framer-1wlza77 { flex-direction: column; gap: 0px; } .framer-12cV8 .framer-dexx8v { gap: 30px; } .framer-12cV8 .framer-f5ahe0-container { order: 10; } .framer-12cV8 .framer-5wji5d { flex-direction: column; gap: 0px; order: 11; padding: 22px; } .framer-12cV8 .framer-1cxfrfp { gap: 0px; padding: 0px; } .framer-12cV8 .framer-152x15s { flex-direction: column; gap: 22px; } .framer-12cV8 .framer-1s04u7g { gap: 44px; } .framer-12cV8 .framer-qrvrts { gap: 0px; order: 12; padding: 22px; } .framer-12cV8 .framer-122ek4l { order: 0; padding: 0px; } .framer-12cV8 .framer-npv729 { gap: 0px; order: 13; padding: 22px; } .framer-12cV8 .framer-lgpe6n { gap: 35px; order: 0; padding: 22px 0px 44px 0px; } .framer-12cV8 .framer-ym1d1g { flex-direction: column; gap: 0px; justify-content: flex-start; padding: 0px; } .framer-12cV8 .framer-3r5t0e { flex: none; flex-direction: column; gap: 32px; width: 100%; } .framer-12cV8 .framer-o27wlh { flex: none; flex-direction: column; gap: 39px; width: 100%; } .framer-12cV8 .framer-11xy4yv { flex: none; order: 0; width: 100%; } .framer-12cV8 .framer-14mmqy4-container { order: 14; } .framer-12cV8 .framer-rxww1h-container { order: 15; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-12cV8.framer-a50vwv, .framer-12cV8 .framer-1y1rkw6, .framer-12cV8 .framer-10nm0m1, .framer-12cV8 .framer-h53gcg, .framer-12cV8 .framer-roauuy, .framer-12cV8 .framer-1gi4u83, .framer-12cV8 .framer-1es9ri, .framer-12cV8 .framer-yyfpuf, .framer-12cV8 .framer-8bxwcl, .framer-12cV8 .framer-jf40ov, .framer-12cV8 .framer-142snd6, .framer-12cV8 .framer-wmz548, .framer-12cV8 .framer-iegyb3, .framer-12cV8 .framer-sidzoq, .framer-12cV8 .framer-16u1gxn, .framer-12cV8 .framer-fbwpv9, .framer-12cV8 .framer-1015wwl, .framer-12cV8 .framer-znbi36, .framer-12cV8 .framer-1wlza77, .framer-12cV8 .framer-dmkq2z, .framer-12cV8 .framer-dexx8v, .framer-12cV8 .framer-5wji5d, .framer-12cV8 .framer-1cxfrfp, .framer-12cV8 .framer-152x15s, .framer-12cV8 .framer-1s04u7g, .framer-12cV8 .framer-qrvrts, .framer-12cV8 .framer-npv729, .framer-12cV8 .framer-lgpe6n, .framer-12cV8 .framer-ym1d1g, .framer-12cV8 .framer-3r5t0e, .framer-12cV8 .framer-o27wlh { gap: 0px; } .framer-12cV8.framer-a50vwv > *, .framer-12cV8 .framer-152x15s > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-12cV8.framer-a50vwv > :first-child, .framer-12cV8 .framer-10nm0m1 > :first-child, .framer-12cV8 .framer-h53gcg > :first-child, .framer-12cV8 .framer-1es9ri > :first-child, .framer-12cV8 .framer-yyfpuf > :first-child, .framer-12cV8 .framer-sidzoq > :first-child, .framer-12cV8 .framer-16u1gxn > :first-child, .framer-12cV8 .framer-fbwpv9 > :first-child, .framer-12cV8 .framer-1015wwl > :first-child, .framer-12cV8 .framer-1wlza77 > :first-child, .framer-12cV8 .framer-dmkq2z > :first-child, .framer-12cV8 .framer-dexx8v > :first-child, .framer-12cV8 .framer-5wji5d > :first-child, .framer-12cV8 .framer-152x15s > :first-child, .framer-12cV8 .framer-1s04u7g > :first-child, .framer-12cV8 .framer-qrvrts > :first-child, .framer-12cV8 .framer-npv729 > :first-child, .framer-12cV8 .framer-ym1d1g > :first-child, .framer-12cV8 .framer-3r5t0e > :first-child, .framer-12cV8 .framer-o27wlh > :first-child { margin-top: 0px; } .framer-12cV8.framer-a50vwv > :last-child, .framer-12cV8 .framer-10nm0m1 > :last-child, .framer-12cV8 .framer-h53gcg > :last-child, .framer-12cV8 .framer-1es9ri > :last-child, .framer-12cV8 .framer-yyfpuf > :last-child, .framer-12cV8 .framer-sidzoq > :last-child, .framer-12cV8 .framer-16u1gxn > :last-child, .framer-12cV8 .framer-fbwpv9 > :last-child, .framer-12cV8 .framer-1015wwl > :last-child, .framer-12cV8 .framer-1wlza77 > :last-child, .framer-12cV8 .framer-dmkq2z > :last-child, .framer-12cV8 .framer-dexx8v > :last-child, .framer-12cV8 .framer-5wji5d > :last-child, .framer-12cV8 .framer-152x15s > :last-child, .framer-12cV8 .framer-1s04u7g > :last-child, .framer-12cV8 .framer-qrvrts > :last-child, .framer-12cV8 .framer-npv729 > :last-child, .framer-12cV8 .framer-ym1d1g > :last-child, .framer-12cV8 .framer-3r5t0e > :last-child, .framer-12cV8 .framer-o27wlh > :last-child { margin-bottom: 0px; } .framer-12cV8 .framer-1y1rkw6 > *, .framer-12cV8 .framer-1gi4u83 > *, .framer-12cV8 .framer-znbi36 > *, .framer-12cV8 .framer-1cxfrfp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-12cV8 .framer-1y1rkw6 > :first-child, .framer-12cV8 .framer-roauuy > :first-child, .framer-12cV8 .framer-1gi4u83 > :first-child, .framer-12cV8 .framer-8bxwcl > :first-child, .framer-12cV8 .framer-jf40ov > :first-child, .framer-12cV8 .framer-142snd6 > :first-child, .framer-12cV8 .framer-wmz548 > :first-child, .framer-12cV8 .framer-iegyb3 > :first-child, .framer-12cV8 .framer-znbi36 > :first-child, .framer-12cV8 .framer-1cxfrfp > :first-child, .framer-12cV8 .framer-lgpe6n > :first-child { margin-left: 0px; } .framer-12cV8 .framer-1y1rkw6 > :last-child, .framer-12cV8 .framer-roauuy > :last-child, .framer-12cV8 .framer-1gi4u83 > :last-child, .framer-12cV8 .framer-8bxwcl > :last-child, .framer-12cV8 .framer-jf40ov > :last-child, .framer-12cV8 .framer-142snd6 > :last-child, .framer-12cV8 .framer-wmz548 > :last-child, .framer-12cV8 .framer-iegyb3 > :last-child, .framer-12cV8 .framer-znbi36 > :last-child, .framer-12cV8 .framer-1cxfrfp > :last-child, .framer-12cV8 .framer-lgpe6n > :last-child { margin-right: 0px; } .framer-12cV8 .framer-10nm0m1 > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-12cV8 .framer-h53gcg > *, .framer-12cV8 .framer-16u1gxn > *, .framer-12cV8 .framer-dmkq2z > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-12cV8 .framer-roauuy > *, .framer-12cV8 .framer-iegyb3 > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-12cV8 .framer-1es9ri > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-12cV8 .framer-yyfpuf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-12cV8 .framer-8bxwcl > *, .framer-12cV8 .framer-jf40ov > *, .framer-12cV8 .framer-142snd6 > *, .framer-12cV8 .framer-wmz548 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-12cV8 .framer-sidzoq > *, .framer-12cV8 .framer-1wlza77 > *, .framer-12cV8 .framer-5wji5d > *, .framer-12cV8 .framer-qrvrts > *, .framer-12cV8 .framer-npv729 > *, .framer-12cV8 .framer-ym1d1g > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-12cV8 .framer-fbwpv9 > *, .framer-12cV8 .framer-1015wwl > *, .framer-12cV8 .framer-1s04u7g > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-12cV8 .framer-dexx8v > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-12cV8 .framer-lgpe6n > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-12cV8 .framer-3r5t0e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-12cV8 .framer-o27wlh > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7099.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aj7chSL9K\":{\"layout\":[\"fixed\",\"auto\"]},\"NZ5Gg_5Ii\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FramerZQ98XFpM0=withCSS(Component,css,\"framer-12cV8\");export default FramerZQ98XFpM0;FramerZQ98XFpM0.displayName=\"Home\";FramerZQ98XFpM0.defaultProps={height:7099.5,width:1200};addFonts(FramerZQ98XFpM0,[{explicitInter:true,fonts:[{family:\"Financier Display Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/t7QafxBZBqHLIDhu3SNEwmzfT8.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Founders Grotesk Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/7gLdUta2nJNUyvz0egholxWbOE.woff2\"}]},...TopNavFonts,...SlideshowFonts,...PrimaryButtonFonts,...Logos3Fonts,...NewtonFonts,...KardFonts,...HeroFonts,...CarversvilleFonts,...OmniscientFonts,...Group332759125Fonts,...OmakaseFonts,...Testimonials8Fonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZQ98XFpM0\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7099.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aj7chSL9K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NZ5Gg_5Ii\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "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", "filteredSlots", "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", "ue", "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", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "clamp", "t", "e", "progress", "t", "e", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "borderRadiusControl", "ControlType", "usePadding", "props", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "se", "paddingControl", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "company", "height", "id", "image", "name1", "reviewContent", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vyxFwoWIQ", "gzIWG1Med", "dUGIFftMv", "tsk5CjC_4", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "css", "FramerD15zXG0Ur", "withCSS", "D15zXG0Ur_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TestimonialStyle4Fonts", "getFonts", "D15zXG0Ur_default", "CarouselFonts", "Carousel", "Carousel1Fonts", "TestimonialStyle4Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "screen", "width", "props", "_humanReadableEnumMap_screen", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "t6G59K00p", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerAaxkBSX5h", "withCSS", "AaxkBSX5h_default", "addPropertyControls", "ControlType", "addFonts", "SlideshowFonts", "getFonts", "Slideshow", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "css", "FrameraVITOSoBv", "withCSS", "aVITOSoBv_default", "addPropertyControls", "ControlType", "addFonts", "SlideshowFonts", "getFonts", "Slideshow", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "css", "FramerBxAOfkfKI", "withCSS", "BxAOfkfKI_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "Image2", "css", "FramerEisFHUCft", "withCSS", "EisFHUCft_default", "addPropertyControls", "ControlType", "addFonts", "SlideshowFonts", "getFonts", "Slideshow", "ImageWithFX", "withFX", "Image2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "p", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerkuGxgy_3h", "withCSS", "kuGxgy_3h_default", "addPropertyControls", "ControlType", "addFonts", "SlideshowFonts", "getFonts", "Slideshow", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "cx", "ComponentViewportProvider", "css", "FramerO7VfY2SHv", "withCSS", "O7VfY2SHv_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "TopNavFonts", "getFonts", "Vnjh35A5B_default", "ContainerWithFX", "withFX", "Container", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "SlideshowFonts", "Slideshow", "PrimaryButtonFonts", "FnZoNQ6Gt_default", "MotionDivWithFX", "motion", "Logos3Fonts", "EisFHUCft_default", "NewtonFonts", "kuGxgy_3h_default", "KardFonts", "O7VfY2SHv_default", "HeroFonts", "Icon", "CarversvilleFonts", "aVITOSoBv_default", "OmniscientFonts", "BxAOfkfKI_default", "Group332759125Fonts", "un6U7I_yq_default", "ContainerWithOptimizedAppearEffect", "OmakaseFonts", "ADBVpYs5I_default", "Testimonials8Fonts", "AaxkBSX5h_default", "FooterFonts", "MkVNnkLpq_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "transformTemplate2", "transition2", "animation1", "animation2", "animation3", "transition3", "textEffect", "textEffect1", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "transition6", "animation8", "transition7", "animation9", "transition8", "animation10", "transition9", "animation11", "animation12", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "isDisplayed", "router", "useRouter", "elementId1", "ref3", "elementId2", "ref4", "isDisplayed1", "elementId3", "ref5", "elementId4", "ref6", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "getLoadingLazyAtYPosition", "Link", "css", "FramerZQ98XFpM0", "withCSS", "ZQ98XFpM0_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
