{"version":3,"file":"mUfc7jdrVmQ6yLOPOVk8JPa2NOAyJRX_83uIMjrcZas.B6TiBAMG.mjs","names":["progress","end","start","isSelected","dotStyle","Phosphor","Button","Avatar","Image","TrustedBy","SectionHeader","YouTube","FeatureSection","Badge","FeatureCard","NumberAndText","VideographerTestimonial","CTALaunchButton","Footer","metadata","className","PropertyOverrides","css"],"sources":["https:/framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js","https:/framerusercontent.com/modules/ku9ZttsaAkj06NYwZ24h/GdnrK4QVlqMAiZTTMfjD/WzsnrIp67.js"],"sourcesContent":["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 — Benjamin\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:\"✨\"}),/*#__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 (bf2ee14)\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{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Avatar from\"#framer/local/canvasComponent/aL1M4pcFt/aL1M4pcFt.js\";import FeatureCard from\"#framer/local/canvasComponent/fbekXnNAc/fbekXnNAc.js\";import VideographerTestimonial from\"#framer/local/canvasComponent/gYmhgooQm/gYmhgooQm.js\";import FeatureSection from\"#framer/local/canvasComponent/L8yk06JFc/L8yk06JFc.js\";import NumberAndText from\"#framer/local/canvasComponent/Q8ynxveDp/Q8ynxveDp.js\";import Footer from\"#framer/local/canvasComponent/qZ_XI3P7P/qZ_XI3P7P.js\";import SectionHeader from\"#framer/local/canvasComponent/riBfBLKQe/riBfBLKQe.js\";import Badge from\"#framer/local/canvasComponent/SXR9yB_tn/SXR9yB_tn.js\";import CTALaunchButton from\"#framer/local/canvasComponent/tnSNz0AG2/tnSNz0AG2.js\";import TrustedBy from\"#framer/local/canvasComponent/WtgczOaze/WtgczOaze.js\";import Button from\"#framer/local/canvasComponent/yORaTwldW/yORaTwldW.js\";import ScrollToTopButton from\"#framer/local/codeFile/UmZQLNT/ScrollToTopButton.js\";import*as sharedStyle from\"#framer/local/css/bocXxd6oj/bocXxd6oj.js\";import*as sharedStyle3 from\"#framer/local/css/KcUpCwhm3/KcUpCwhm3.js\";import*as sharedStyle4 from\"#framer/local/css/MOhTEatyY/MOhTEatyY.js\";import*as sharedStyle2 from\"#framer/local/css/rHs4MAikW/rHs4MAikW.js\";import*as sharedStyle1 from\"#framer/local/css/W5729J3pQ/W5729J3pQ.js\";import*as sharedStyle5 from\"#framer/local/css/XuM03kBo3/XuM03kBo3.js\";import metadataProvider from\"#framer/local/webPageMetadata/WzsnrIp67/WzsnrIp67.js\";const PhosphorFonts=getFonts(Phosphor);const ButtonFonts=getFonts(Button);const MotionHeaderWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.header);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const AvatarFonts=getFonts(Avatar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const MotionDivWithFX=withFX(motion.div);const ScrollToTopButtonFonts=getFonts(ScrollToTopButton);const TrustedByFonts=getFonts(TrustedBy);const SectionHeaderFonts=getFonts(SectionHeader);const YouTubeFonts=getFonts(YouTube);const RichTextWithFX=withFX(RichText);const FeatureSectionFonts=getFonts(FeatureSection);const ContainerWithFX=withFX(Container);const CarouselFonts=getFonts(Carousel);const BadgeFonts=getFonts(Badge);const FeatureCardFonts=getFonts(FeatureCard);const NumberAndTextFonts=getFonts(NumberAndText);const VideographerTestimonialFonts=getFonts(VideographerTestimonial);const CTALaunchButtonFonts=getFonts(CTALaunchButton);const FooterFonts=getFonts(Footer);const breakpoints={CG2bCYrdZ:\"(max-width: 575px)\",d_hkF3Vt9:\"(min-width: 576px) and (max-width: 991px)\",ovQ8v34Gg:\"(min-width: 1280px)\",x_kko9RAG:\"(min-width: 992px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-orR22\";const variantClassNames={CG2bCYrdZ:\"framer-v-hh68cd\",d_hkF3Vt9:\"framer-v-1mr4ib\",ovQ8v34Gg:\"framer-v-59wdo8\",x_kko9RAG:\"framer-v-qel45f\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-70};const transition2={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:0,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition4={delay:.2,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition6={damping:50,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={damping:40,delay:.2,mass:1,stiffness:180,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition8={damping:30,delay:.2,mass:1,stiffness:180,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={damping:40,delay:.3,mass:1,stiffness:180,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const transition10={damping:30,delay:.3,mass:1,stiffness:180,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const transition11={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition11};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition12={delay:.4,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition13={damping:40,delay:.2,mass:1,stiffness:160,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition14={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition15={damping:40,delay:0,mass:1,stiffness:160,type:\"spring\"};const transition16={damping:40,delay:.1,mass:1,stiffness:160,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop L\":\"ovQ8v34Gg\",Desktop:\"x_kko9RAG\",Phone:\"CG2bCYrdZ\",Tablet:\"d_hkF3Vt9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ovQ8v34Gg\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{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,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"CG2bCYrdZ\",\"d_hkF3Vt9\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"CG2bCYrdZ\",\"d_hkF3Vt9\"].includes(baseVariant))return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"kZELNA6_J\");const ref1=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"d_hkF3Vt9\")return false;return true;};const elementId1=useRouteElementId(\"jSxZt8mgC\");const ref2=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"CG2bCYrdZ\")return false;return true;};const elementId2=useRouteElementId(\"ICANQOR7N\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"n6cjydCc9\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"Rw0a2hJsg\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"CGIuEfvQE\");const ref6=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ovQ8v34Gg\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-59wdo8\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{\"data-border\":true,animate:undefined,initial:undefined,optimized:undefined,style:{},transformTemplate:undefined},d_hkF3Vt9:{\"data-border\":true,transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionHeaderWithOptimizedAppearEffect,{animate:animation,className:\"framer-k7zjl6\",\"data-framer-appear-id\":\"k7zjl6\",\"data-framer-name\":\"Navigation\",initial:animation1,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-76j0iq\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"yQqqKrU4C\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-z5m9l8 framer-11zxn97\",\"data-framer-name\":\"Logo Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:46,intrinsicWidth:162,loading:getLoadingLazyAtYPosition(16.25),pixelHeight:151,pixelWidth:500,src:\"https://framerusercontent.com/images/nTCUKJayl9ujbebq2oeyu46Ikm8.png\"}},d_hkF3Vt9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:46,intrinsicWidth:162,loading:getLoadingLazyAtYPosition(16.25),pixelHeight:151,pixelWidth:500,src:\"https://framerusercontent.com/images/nTCUKJayl9ujbebq2oeyu46Ikm8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:46,intrinsicWidth:162,loading:getLoadingLazyAtYPosition(19.25),pixelHeight:151,pixelWidth:500,src:\"https://framerusercontent.com/images/nTCUKJayl9ujbebq2oeyu46Ikm8.png\"},className:\"framer-1rk3xv\",\"data-framer-name\":\"Logo Wrapper\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-175rkcd-container hidden-59wdo8 hidden-qel45f\",\"data-framer-name\":\"Menu Icon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Menu Icon\",nodeId:\"X2n69HT7D\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{color:\"var(--token-20d8d2fd-46ff-49b7-97b8-dd4aff123e06, rgb(240, 90, 91))\",onClick:undefined},d_hkF3Vt9:{color:\"var(--token-20d8d2fd-46ff-49b7-97b8-dd4aff123e06, rgb(240, 90, 91))\",onClick:undefined}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"\",iconSelection:\"List\",id:\"X2n69HT7D\",layoutId:\"X2n69HT7D\",mirrored:false,name:\"Menu Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"nav\",{className:\"framer-ad3913 hidden-hh68cd hidden-1mr4ib\",\"data-framer-name\":\"Links\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vatj3p hidden-hh68cd hidden-1mr4ib\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QoSKUmUFC\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xj5057-container\",nodeId:\"OIMPkw4i7\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x_kko9RAG:{vjZWklrqI:resolvedLinks[0],xEfGs_njT:\"Get started\"}},children:/*#__PURE__*/_jsx(Button,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"OIMPkw4i7\",layoutId:\"OIMPkw4i7\",variant:\"oOTmTZ2ir\",vjZWklrqI:\"https://app.crowdclip.com/enter-email\",width:\"100%\",xEfGs_njT:\"Create free account\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-t5wo2k\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1tbvotj hidden-hh68cd hidden-1mr4ib\",\"data-framer-appear-id\":\"1tbvotj\",\"data-framer-name\":\"gradient-top-right\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11sgung\",\"data-framer-name\":\"Salmon\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y8m6lh\",\"data-framer-name\":\"Salmon 2\"})]}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1ptf1v7 hidden-hh68cd hidden-1mr4ib\",\"data-framer-appear-id\":\"1ptf1v7\",\"data-framer-name\":\"gradient-top-left\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-139cypx\",\"data-framer-name\":\"Light Salmon\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wfq7qm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o7t146\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sfc9o8\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1l15rv8\",\"data-styles-preset\":\"bocXxd6oj\",style:{\"--framer-text-alignment\":\"center\"},children:\"Turn one highlight reel into hundreds\"})}),className:\"framer-y0dur0\",\"data-framer-appear-id\":\"y0dur0\",\"data-framer-name\":\"Main Title\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"CrowdClip\\xae  generates personalized highlight reels for event attendees using AI.\"})}),className:\"framer-sj0tdd\",\"data-framer-appear-id\":\"sj0tdd\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1h7p7dz\",\"data-framer-appear-id\":\"1h7p7dz\",\"data-framer-name\":\"Social Trust\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-113gxm8\",\"data-framer-name\":\"Stacked Avatars\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+305+0+0},d_hkF3Vt9:{y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+0+180+0+0+0+0+289+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25.2px\",y:(componentViewport?.y||0)+0+0+180+0+0+0+0+273+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n3i3bd-container\",nodeId:\"OQBgtnOyV\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"OQBgtnOyV\",layoutId:\"OQBgtnOyV\",shYZ8xZ6P:addImageAlt({pixelHeight:5184,pixelWidth:3456,src:\"https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg\",srcSet:\"https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/535f00Weihgs1dBHDcvx7N4x84.jpg 3456w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+305+0+0},d_hkF3Vt9:{y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+0+180+0+0+0+0+289+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",y:(componentViewport?.y||0)+0+0+180+0+0+0+0+273+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fl81nb-container\",nodeId:\"hR4LBdv0j\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"hR4LBdv0j\",layoutId:\"hR4LBdv0j\",shYZ8xZ6P:addImageAlt({pixelHeight:6220,pixelWidth:6220,src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg\",srcSet:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg 6220w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+305+0+0},d_hkF3Vt9:{y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+0+180+0+0+0+0+289+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",y:(componentViewport?.y||0)+0+0+180+0+0+0+0+273+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-30lily-container\",nodeId:\"WZcjlrgu1\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"WZcjlrgu1\",layoutId:\"WZcjlrgu1\",shYZ8xZ6P:addImageAlt({pixelHeight:3648,pixelWidth:3648,src:\"https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg\",srcSet:\"https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SiHj8IXtMQ0A70pTrI5LN5msw.jpg 3648w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+305+0+0},d_hkF3Vt9:{y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+0+180+0+0+0+0+289+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",y:(componentViewport?.y||0)+0+0+180+0+0+0+0+273+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13hibd9-container\",nodeId:\"kviSN_iVW\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"kviSN_iVW\",layoutId:\"kviSN_iVW\",shYZ8xZ6P:addImageAlt({pixelHeight:5760,pixelWidth:3840,src:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg\",srcSet:\"https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HnhpxTHTAwE18VvuvNHTwCtdiZ4.jpg 3840w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-color\":\"var(--token-e2a9035b-7d24-4d94-a09a-897aaacb8327, rgb(156, 163, 189))\"},children:\"Trusted already by 1.2k+\"})}),className:\"framer-hh9tbj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15j62rj\",\"data-framer-name\":\"Actions\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{height:49,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+160+0+0+373+0+0},d_hkF3Vt9:{y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+0+180+0+0+373+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,y:(componentViewport?.y||0)+0+0+180+0+0+357+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1y4ki1a-container\",\"data-framer-appear-id\":\"1y4ki1a\",\"data-framer-name\":\"Button Primary\",initial:animation3,name:\"Button Primary\",nodeId:\"Tb1MHtgOv\",optimized:true,rendersWithMotion:true,scopeId:\"WzsnrIp67\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{bOwGuieUn:\"ArrowUpRight\",height:\"100%\",id:\"Tb1MHtgOv\",layoutId:\"Tb1MHtgOv\",name:\"Button Primary\",style:{height:\"100%\"},variant:\"mQ3MdL6TJ\",vjZWklrqI:\"https://app.crowdclip.com/enter-email\",width:\"100%\",xEfGs_njT:\"Create free account\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wfr4t2\",\"data-framer-name\":\"Main-visual\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1050,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tfdu3x\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+462+0+0+36.25),pixelHeight:2700,pixelWidth:2160,sizes:\"176px\",src:\"https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg 2160w\"}},d_hkF3Vt9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,pixelHeight:2700,pixelWidth:2160,sizes:\"199px\",src:\"https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg 2160w\"}},x_kko9RAG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+423+0+50.5),pixelHeight:2700,pixelWidth:2160,sizes:\"199px\",src:\"https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg 2160w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation9,background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+437+0+29),pixelHeight:2700,pixelWidth:2160,sizes:\"199px\",src:\"https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/j5Xhu5f6BA0qvN8o8K7BJVQytPE.jpg 2160w\"},className:\"framer-8uyh3v\",\"data-framer-appear-id\":\"8uyh3v\",\"data-framer-name\":\"widget_1_2x\",initial:animation10,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+462+0+0+36.25),pixelHeight:2160,pixelWidth:2160,sizes:\"174.5px\",src:\"https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg 2160w\"}},d_hkF3Vt9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,pixelHeight:2160,pixelWidth:2160,sizes:\"273px\",src:\"https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg 2160w\"}},x_kko9RAG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+423+0+59.5),pixelHeight:2160,pixelWidth:2160,sizes:\"273px\",src:\"https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg 2160w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:animation11,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+437+0+38),pixelHeight:2160,pixelWidth:2160,sizes:\"273px\",src:\"https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dYr6FLePQj8Q0ciiv07oHIOY8.jpg 2160w\"},className:\"framer-3yhws4\",\"data-framer-appear-id\":\"3yhws4\",\"data-framer-name\":\"widget_2_2x\",initial:animation10,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+462+0+0+36.25),pixelHeight:2700,pixelWidth:2160,sizes:\"155.5px\",src:\"https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg 2160w\"}},d_hkF3Vt9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:2700,pixelWidth:2160,sizes:\"142px\",src:\"https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg 2160w\"}},x_kko9RAG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+423+0+66.5),pixelHeight:2700,pixelWidth:2160,sizes:\"214px\",src:\"https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg 2160w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation9,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215,intrinsicWidth:186.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+437+0+45),pixelHeight:2700,pixelWidth:2160,sizes:\"214px\",src:\"https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/eST0wmJV1mSmkAcy6RFPt7JVeY.jpg 2160w\"},className:\"framer-16lp4yo\",\"data-framer-appear-id\":\"16lp4yo\",\"data-framer-name\":\"widget_4_2x\",initial:animation10,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:243.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+462+0+0+36.25),pixelHeight:3240,pixelWidth:3240,positionX:\"center\",positionY:\"center\",sizes:\"158px\",src:\"https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg 3240w\"}},d_hkF3Vt9:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:243.5,pixelHeight:3240,pixelWidth:3240,positionX:\"center\",positionY:\"center\",sizes:\"168px\",src:\"https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg 3240w\"}},x_kko9RAG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:243.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+423+0+42.5),pixelHeight:3240,pixelWidth:3240,positionX:\"center\",positionY:\"center\",sizes:\"269px\",src:\"https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg 3240w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:104,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:276,intrinsicWidth:243.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+437+0+21),pixelHeight:3240,pixelWidth:3240,positionX:\"center\",positionY:\"center\",sizes:\"269px\",src:\"https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IrzDjbOU80T4fz31hsOIN9zA50.jpg 3240w\"},className:\"framer-10qhyau\",\"data-framer-appear-id\":\"10qhyau\",\"data-framer-name\":\"widget_7_2x\",initial:animation10,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+462+0+0+36.25),pixelHeight:457,pixelWidth:671,sizes:\"161.5px\",src:\"https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg 671w\"}},d_hkF3Vt9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,pixelHeight:457,pixelWidth:671,sizes:\"146px\",src:\"https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg 671w\"}},x_kko9RAG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+423+0+81),pixelHeight:457,pixelWidth:671,sizes:\"186px\",src:\"https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg 671w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:92,__perspectiveFX:false,__targetOpacity:1,animate:animation9,background:{alt:\"\",fit:\"fill\",intrinsicHeight:206,intrinsicWidth:186,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+437+0+59.5),pixelHeight:457,pixelWidth:671,sizes:\"186px\",src:\"https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/upFARS75KHOzN3RfpkEv8CwRyBY.jpeg 671w\"},className:\"framer-6zgj5f\",\"data-framer-appear-id\":\"6zgj5f\",\"data-framer-name\":\"widget_5_2x\",initial:animation10,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+462+0+0+36.25),pixelHeight:2160,pixelWidth:2160,sizes:\"175.5px\",src:\"https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg 2160w\"}},d_hkF3Vt9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,pixelHeight:2160,pixelWidth:2160,sizes:\"211px\",src:\"https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg 2160w\"}},x_kko9RAG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+423+0+76.5),pixelHeight:2160,pixelWidth:2160,sizes:\"211px\",src:\"https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg 2160w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:211,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+437+0+55),pixelHeight:2160,pixelWidth:2160,sizes:\"211px\",src:\"https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RIc5Mfsudquzg42MJLVa3b6wU.jpg 2160w\"},className:\"framer-1dswmed\",\"data-framer-appear-id\":\"1dswmed\",\"data-framer-name\":\"widget_6_2x\",initial:animation10,optimized:true,style:{transformPerspective:1200}})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:255.5,intrinsicWidth:299,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+462+0+0+36.75),pixelHeight:511,pixelWidth:598,sizes:\"209.5px\",src:\"https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg 598w\"}},x_kko9RAG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:255.5,intrinsicWidth:299,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+423+0+56.5662),pixelHeight:511,pixelWidth:598,sizes:\"300px\",src:\"https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg 598w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation13,background:{alt:\"\",fit:\"fill\",intrinsicHeight:255.5,intrinsicWidth:299,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+437+0+35),pixelHeight:511,pixelWidth:598,sizes:\"300px\",src:\"https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vAV9GBcFnJLt6Nldmx7V22NhV9U.jpg 598w\"},className:\"framer-aoqww4 hidden-1mr4ib\",\"data-framer-appear-id\":\"aoqww4\",\"data-framer-name\":\"widget_3_2x\",initial:animation10,optimized:true,style:{transformPerspective:1200}})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:299.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+462+0+0+28.75),pixelHeight:287,pixelWidth:599,sizes:\"372.5px\",src:\"https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg 599w\"}},x_kko9RAG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:299.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+423+0+101.2431),pixelHeight:287,pixelWidth:599,sizes:\"300px\",src:\"https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg 599w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:106,__perspectiveFX:false,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:299.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+437+0+81),pixelHeight:287,pixelWidth:599,sizes:\"300px\",src:\"https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xlH9mRzjk9TwnDX3knA57AUt24.jpg 599w\"},className:\"framer-hgxkjl hidden-1mr4ib\",\"data-framer-appear-id\":\"hgxkjl\",\"data-framer-name\":\"widget_8_2x\",initial:animation10,optimized:true,style:{transformPerspective:1200}})})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-beblyb-container hidden-hh68cd hidden-1mr4ib\",isAuthoredByUser:true,layoutScroll:true,nodeId:\"lCvGFohrM\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(ScrollToTopButton,{buttonType:\"default\",custom:[],effects:{hoverScale:1.1,pressScale:.9,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},fill:\"var(--token-7956ef02-b536-4c75-af62-cde1cdd823ac, rgb(236, 241, 247))\",height:\"100%\",icon:{color:\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\",size:30,stroke:2},id:\"lCvGFohrM\",layoutId:\"lCvGFohrM\",radius:50,radiusBottomLeft:50,radiusIsMixed:false,radiusottomRight:50,radiusTopLeft:50,radiusTopRight:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{y:(componentViewport?.y||0)+0+913},d_hkF3Vt9:{y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+1051}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:274,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1022,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mgnk56-container\",id:elementId1,nodeId:\"jSxZt8mgC\",ref:ref2,scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{variant:\"LoK1sJS9o\"},d_hkF3Vt9:{variant:\"y30UhvT5R\"},x_kko9RAG:{variant:\"XHL8ck0fJ\"}},children:/*#__PURE__*/_jsx(TrustedBy,{height:\"100%\",id:\"jSxZt8mgC\",KIx_rFoDn:ref2,layoutId:\"jSxZt8mgC\",style:{width:\"100%\"},variant:\"zgsSv6D90\",width:\"100%\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:\"#hero\",motionChild:true,nodeId:\"k3hASELQj\",openInNewTab:false,scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zbp6or hidden-hh68cd framer-11zxn97\",\"data-framer-name\":\"Back-to-Top\",whileTap:animation14})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-jijbt9\",\"data-framer-name\":\"How It Works\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1187+40+0},d_hkF3Vt9:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+1325+80+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+1296+80+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15dhn32-container\",nodeId:\"gG6q80MFu\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{variant:\"FxjmJ5LJB\"},d_hkF3Vt9:{variant:\"i9dEKWqvT\"},x_kko9RAG:{variant:\"Onsm7JUV9\"}},children:/*#__PURE__*/_jsx(SectionHeader,{eaYFI7mO6:\"Get started easily\",Gveon7mmb:\"HOW IT WORKS\",height:\"100%\",id:\"gG6q80MFu\",KJ5PhcHhH:\"Spare a few minutes to see how Dave uses the CrowdClip\\xae AI to automatically generate personalized videos for events! \",layoutId:\"gG6q80MFu\",NfEa1z3Cy:\"A1hLNSIZ_\",style:{width:\"100%\"},variant:\"dvewaKpLN\",width:\"100%\",WO1Izcq43:ref3})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vwfgrt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GFWArE0Dm\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,height:\"100%\",id:\"GFWArE0Dm\",isMixedBorderRadius:false,isRed:true,layoutId:\"GFWArE0Dm\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:10,topRightRadius:10,url:\"https://www.youtube.com/watch?v=J8D44lw8Zn8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{__framer__targets:undefined},d_hkF3Vt9:{__framer__targets:undefined},x_kko9RAG:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-144ivnp\",\"data-styles-preset\":\"KcUpCwhm3\",style:{\"--framer-text-alignment\":\"center\"},children:\"What we do, in a nutshell\"})}),className:\"framer-1bv82zt\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{__framer__targets:undefined},d_hkF3Vt9:{__framer__targets:undefined},x_kko9RAG:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:80,ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",style:{\"--framer-text-alignment\":\"center\"},children:\"CrowdClip\\xae allows event marketers and brands to increase engagement and brand awareness with personalized videos from events.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Event attendees can receive and share branded, personalized highlight reels generated with CrowdClip\\xae after an event. This can increase engagement and recall of your event and brand.\"})]}),className:\"framer-1889yn\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h647d3\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1187+40+836.4+0+0},d_hkF3Vt9:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+1325+80+1146.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,width:`calc(${componentViewport?.width||\"100vw\"} - 200px)`,y:(componentViewport?.y||0)+0+1296+80+1146.4+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k8wdkw-container\",nodeId:\"tiyfeVpLY\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{variant:\"pRL4OWPK5\"},d_hkF3Vt9:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"tiyfeVpLY\",layoutId:\"tiyfeVpLY\",MyzOwQ53a:\"Our AI identifies people you're interested in, so that we can pick and find the best footage of them for personalized videos.\",NacojSf_1:addImageAlt({pixelHeight:480,pixelWidth:640,src:\"https://framerusercontent.com/images/pobxCjO734eP4UVbaAjlNJ0or0M.gif\",srcSet:\"https://framerusercontent.com/images/pobxCjO734eP4UVbaAjlNJ0or0M.gif?scale-down-to=512 512w,https://framerusercontent.com/images/pobxCjO734eP4UVbaAjlNJ0or0M.gif 640w\"},\"\"),Pn08AubqI:\"Detect People's Faces\",style:{width:\"100%\"},variant:\"vlKoatX9W\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1187+40+836.4+0+436},d_hkF3Vt9:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+1325+80+1146.4+0+446}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,width:`calc(${componentViewport?.width||\"100vw\"} - 200px)`,y:(componentViewport?.y||0)+0+1296+80+1146.4+0+416,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yk4d9o-container\",nodeId:\"AjsO6uAvZ\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{variant:\"pRL4OWPK5\"},d_hkF3Vt9:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"AjsO6uAvZ\",layoutId:\"AjsO6uAvZ\",MyzOwQ53a:\"AI powered finding and sorting of the best scenes to use for each person, so you don't have to wade through hours of footage.\",NacojSf_1:addImageAlt({pixelHeight:480,pixelWidth:640,src:\"https://framerusercontent.com/images/ugTYRwVx7Ifjzl44E2DyhyG8id8.gif\",srcSet:\"https://framerusercontent.com/images/ugTYRwVx7Ifjzl44E2DyhyG8id8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/ugTYRwVx7Ifjzl44E2DyhyG8id8.gif 640w\"},\"\"),Pn08AubqI:\"Extract Top Moments\",style:{width:\"100%\"},variant:\"M2SieRvQ3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1187+40+836.4+0+872},d_hkF3Vt9:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+1325+80+1146.4+0+892}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,width:`calc(${componentViewport?.width||\"100vw\"} - 200px)`,y:(componentViewport?.y||0)+0+1296+80+1146.4+0+832,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b394de-container\",nodeId:\"QzzKxBR3a\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{variant:\"pRL4OWPK5\"},d_hkF3Vt9:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"QzzKxBR3a\",layoutId:\"QzzKxBR3a\",MyzOwQ53a:\"Generate personalized videos at scale for each event attendee. Whether it's 20 person event or a 2,000 people event.\",NacojSf_1:addImageAlt({pixelHeight:480,pixelWidth:640,src:\"https://framerusercontent.com/images/mR95j7lFgsfiMYlDJ49On49SqoU.gif\",srcSet:\"https://framerusercontent.com/images/mR95j7lFgsfiMYlDJ49On49SqoU.gif?scale-down-to=512 512w,https://framerusercontent.com/images/mR95j7lFgsfiMYlDJ49On49SqoU.gif 640w\"},\"\"),Pn08AubqI:\"Generate Personalized Videos\",style:{width:\"100%\"},variant:\"vlKoatX9W\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1187+40+836.4+0+1308},d_hkF3Vt9:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+1325+80+1146.4+0+1338}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,width:`calc(${componentViewport?.width||\"100vw\"} - 200px)`,y:(componentViewport?.y||0)+0+1296+80+1146.4+0+1248,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i9wcnk-container\",nodeId:\"nU0kKaJBm\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{variant:\"pRL4OWPK5\"},d_hkF3Vt9:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"nU0kKaJBm\",layoutId:\"nU0kKaJBm\",MyzOwQ53a:\"Share generated personalized videos to attendees or engage people post-event.\",NacojSf_1:addImageAlt({pixelHeight:480,pixelWidth:640,src:\"https://framerusercontent.com/images/6xSBEp8Jkzx6Kjo0VBCATDmf5r4.gif\",srcSet:\"https://framerusercontent.com/images/6xSBEp8Jkzx6Kjo0VBCATDmf5r4.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6xSBEp8Jkzx6Kjo0VBCATDmf5r4.gif 640w\"},\"\"),Pn08AubqI:\"Share and Engage\",style:{width:\"100%\"},variant:\"M2SieRvQ3\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-17nvjj7\",\"data-framer-name\":\"Features\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Supercharge your events with personalized videos!\"})}),className:\"framer-1lvab58\",\"data-framer-name\":\"Live messaging. limi\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gaeb1m\",\"data-styles-preset\":\"MOhTEatyY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Watch side-by-side personalized highlight reels created by CrowdClip\\xae for events.\"})}),className:\"framer-1c20t9k\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nw0qhy-container\",id:\"1nw0qhy\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"c6yusghK_\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Carousel,{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:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:50,height:\"100%\",id:\"c6yusghK_\",layoutId:\"c6yusghK_\",padding:2,paddingBottom:2,paddingLeft:2,paddingPerSide:false,paddingRight:2,paddingTop:2,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:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tf68pq-container\",\"data-framer-name\":\"Actai Global\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Actai Global\",nodeId:\"wTWTYf7dw\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"wTWTYf7dw\",isMixedBorderRadius:false,isRed:true,layoutId:\"wTWTYf7dw\",name:\"Actai Global\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/tS_9W1o_Too\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dhg99c-container\",\"data-framer-name\":\"Harvard\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Harvard\",nodeId:\"PqyNCU5S0\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"PqyNCU5S0\",isMixedBorderRadius:false,isRed:true,layoutId:\"PqyNCU5S0\",name:\"Harvard\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/kZWj7ILoUZo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ohlk3-container\",\"data-framer-name\":\"Sarah & Jack's\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Sarah & Jack's\",nodeId:\"fyJsyx7Ca\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"fyJsyx7Ca\",isMixedBorderRadius:false,isRed:true,layoutId:\"fyJsyx7Ca\",name:\"Sarah & Jack's\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/BZgeuPnhLQQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d85r83-container\",\"data-framer-name\":\"Ape Beverages\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Ape Beverages\",nodeId:\"PGhUVKlK3\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"PGhUVKlK3\",isMixedBorderRadius:false,isRed:true,layoutId:\"PGhUVKlK3\",name:\"Ape Beverages\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/q4MHLTgxDT4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o5jrur-container\",\"data-framer-name\":\"Bar Mitzvah\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Bar Mitzvah\",nodeId:\"Z3V49MdHA\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Z3V49MdHA\",isMixedBorderRadius:false,isRed:true,layoutId:\"Z3V49MdHA\",name:\"Bar Mitzvah\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/bE6stOnvJRk\",width:\"100%\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-l0omy\",\"data-framer-name\":\"Features\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uky4ce\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xgtkw0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1erevfh\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{y:(componentViewport?.y||0)+0+4308.4+85+0+0+0+0+0+0+0},d_hkF3Vt9:{y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+5118.4+60+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+5039.4+80+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dsl4fz-container\",nodeId:\"woXwy_Wo_\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-20d8d2fd-46ff-49b7-97b8-dd4aff123e06, rgb(240, 90, 91))\",DTEBE1LHR:\"BENEFITS\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"woXwy_Wo_\",j7oQQHdIz:\"var(--token-20d8d2fd-46ff-49b7-97b8-dd4aff123e06, rgb(240, 90, 91))\",layoutId:\"woXwy_Wo_\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.6px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\"Benefits to videographers\"})})},d_hkF3Vt9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\"Benefits to videographers\"})})},x_kko9RAG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\"Benefits to videographers\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2ce442f5-26aa-49ac-a51f-7e5ad4c8e275, rgb(45, 53, 76))\"},children:\"Benefits to videographers\"})}),className:\"framer-bit2xz\",\"data-framer-name\":\"Live messaging. limi\",fonts:[\"GF;Poppins-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Increase your output & save time\"})})},d_hkF3Vt9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Increase your output & save time\"})})},x_kko9RAG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Increase your output & save time\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d841d7ff-578b-4375-9cd0-faa60c876cf3, rgb(104, 112, 140))\"},children:\"Increase your output & save time\"})}),className:\"framer-138b7t9\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Be Vietnam Pro-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7pa06b\",\"data-framer-name\":\"Features Card Block\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s1j76l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9063 - 40px, 1180px)`,y:(componentViewport?.y||0)+0+4308.4+85+0+0+270+0+0+0+0},d_hkF3Vt9:{width:undefined,y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+5118.4+60+0+0+287.4+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9063 - 120px, 1180px) - 48px) / 3, 210px)`,y:(componentViewport?.y||0)+0+5039.4+80+0+0+295+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9obfcu-container\",nodeId:\"ow2CP8uln\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{AcK1FdgYt:true,C61oJi4fb:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",enz2a1Khk:\"You probably have hours of excess footage after each event. Make the most of the footage and generate personal videos for attendees.\",height:\"100%\",id:\"ow2CP8uln\",KV_qdHZpp:\"40px 20px 40px 20px\",layoutId:\"ow2CP8uln\",QCU9Jk4kB:\"Make the most of your footage\",qJ7dCCiMu:\"FilmReel\",style:{width:\"100%\"},variant:\"gy_oO8UYx\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9063 - 40px, 1180px)`,y:(componentViewport?.y||0)+0+4308.4+85+0+0+270+0+0+0+278},d_hkF3Vt9:{width:undefined,y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+5118.4+60+0+0+287.4+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9063 - 120px, 1180px) - 48px) / 3, 210px)`,y:(componentViewport?.y||0)+0+5039.4+80+0+0+295+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gajym7-container\",nodeId:\"KZA3knCsE\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{AcK1FdgYt:true,C61oJi4fb:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",enz2a1Khk:\"You probably have hours of excess footage after each event. Make the most of the footage and generate personal videos for attendees.\",height:\"100%\",id:\"KZA3knCsE\",KV_qdHZpp:\"40px 20px 40px 20px\",layoutId:\"KZA3knCsE\",QCU9Jk4kB:\"Make the most of your footage\",qJ7dCCiMu:\"FilmReel\",style:{width:\"100%\"},variant:\"gy_oO8UYx\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9063 - 40px, 1180px)`,y:(componentViewport?.y||0)+0+4308.4+85+0+0+270+0+0+0+556},d_hkF3Vt9:{width:undefined,y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+5118.4+60+0+0+287.4+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:278,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9063 - 120px, 1180px) - 48px) / 3, 210px)`,y:(componentViewport?.y||0)+0+5039.4+80+0+0+295+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dmfi47-container\",nodeId:\"Fh7EYiXE1\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{AcK1FdgYt:true,C61oJi4fb:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",enz2a1Khk:\"If you're creating multiple permutations of highlight reels for event attendees, use CrowdClip\\xae to do the work for you.\",height:\"100%\",id:\"Fh7EYiXE1\",KV_qdHZpp:\"40px 20px 40px 20px\",layoutId:\"Fh7EYiXE1\",QCU9Jk4kB:\"Reduce your workload\",qJ7dCCiMu:\"Lightbulb\",style:{width:\"100%\"},variant:\"gy_oO8UYx\",width:\"100%\"})})})})]})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-18gw7j2\",\"data-framer-name\":\"Metrics\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zhbdi7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-olh4qr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{y:(componentViewport?.y||0)+0+5582.4+40+0+0+0+0+0},d_hkF3Vt9:{y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+5827.8+60+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+5796.4+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h5zbaw-container\",nodeId:\"I9TdHEm7b\",rendersWithMotion:true,scopeId:\"WzsnrIp67\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"var(--token-20d8d2fd-46ff-49b7-97b8-dd4aff123e06, rgb(240, 90, 91))\",DTEBE1LHR:\"METRICS\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"I9TdHEm7b\",j7oQQHdIz:\"var(--token-20d8d2fd-46ff-49b7-97b8-dd4aff123e06, rgb(240, 90, 91))\",layoutId:\"I9TdHEm7b\",mQiWJf8Hp:\"var(--token-79cc7236-ec94-4b2c-8a64-ba34fdc7c370, rgb(234, 242, 255))\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, rgb(243, 247, 251))\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-144ivnp\",\"data-styles-preset\":\"KcUpCwhm3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Numbers speaking for themselves\"})}),className:\"framer-1nnmpbe\",\"data-framer-name\":\"Numbers speaking for themselves\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b1pltd\",\"data-framer-name\":\"Numbers\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1180px)`,y:(componentViewport?.y||0)+0+5582.4+40+0+0+112.4+0+0},d_hkF3Vt9:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1180px)`,y:undefined},x_kko9RAG:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1180px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+5827.8+60+0+0+112.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+5796.4+80+0+0+112.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18a6601-container\",nodeId:\"kOfTQlBcW\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{d1CqTtXu0:{borderBottomWidth:0,borderColor:\"rgb(185, 190, 209)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"Gx4FyZeI5\"},d_hkF3Vt9:{d1CqTtXu0:{borderBottomWidth:0,borderColor:\"rgb(185, 190, 209)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"Gx4FyZeI5\"},x_kko9RAG:{variant:\"Gx4FyZeI5\"}},children:/*#__PURE__*/_jsx(NumberAndText,{d1CqTtXu0:{borderBottomWidth:0,borderColor:\"rgb(185, 190, 209)\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},eCYmqoKiW:\"TOP MOMENTS FOUND\",height:\"100%\",ICCjMZKeC:ref6,id:\"kOfTQlBcW\",layoutId:\"kOfTQlBcW\",oc6QHgmoR:\"10,802+\",style:{width:\"100%\"},variant:\"ikiRTW_2v\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1180px)`,y:(componentViewport?.y||0)+0+5582.4+40+0+0+112.4+0+159},d_hkF3Vt9:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1180px)`,y:undefined},x_kko9RAG:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1180px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+5827.8+60+0+0+112.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+5796.4+80+0+0+112.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pehzey-container\",nodeId:\"FGbpG8TN8\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{d1CqTtXu0:{borderBottomWidth:0,borderColor:\"rgb(185, 190, 209)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"Gx4FyZeI5\"},d_hkF3Vt9:{d1CqTtXu0:{borderBottomWidth:0,borderColor:\"rgb(185, 190, 209)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},variant:\"Gx4FyZeI5\"},x_kko9RAG:{variant:\"Gx4FyZeI5\"}},children:/*#__PURE__*/_jsx(NumberAndText,{d1CqTtXu0:{borderBottomWidth:0,borderColor:\"rgb(185, 190, 209)\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},eCYmqoKiW:\"GENERATED VIDEOS\",height:\"100%\",ICCjMZKeC:ref6,id:\"FGbpG8TN8\",layoutId:\"FGbpG8TN8\",oc6QHgmoR:\"6.1K+\",style:{width:\"100%\"},variant:\"ikiRTW_2v\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1180px)`,y:(componentViewport?.y||0)+0+5582.4+40+0+0+112.4+0+318},d_hkF3Vt9:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1180px)`,y:undefined},x_kko9RAG:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1180px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+5827.8+60+0+0+112.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+5796.4+80+0+0+112.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ay7xeg-container\",nodeId:\"vfycmI4l1\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{variant:\"Gx4FyZeI5\"},d_hkF3Vt9:{variant:\"Gx4FyZeI5\"},x_kko9RAG:{variant:\"Gx4FyZeI5\"}},children:/*#__PURE__*/_jsx(NumberAndText,{d1CqTtXu0:{borderBottomWidth:0,borderColor:\"rgba(186, 191, 209, 0)\",borderLeftWidth:0,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:0},eCYmqoKiW:\"SATISFIED CUSTOMERS\",height:\"100%\",ICCjMZKeC:ref6,id:\"vfycmI4l1\",layoutId:\"vfycmI4l1\",oc6QHgmoR:\"1K+\",style:{width:\"100%\"},variant:\"ikiRTW_2v\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{y:(componentViewport?.y||0)+0+6251.8},d_hkF3Vt9:{y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+6199.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:834,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6267.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1173ihp-container\",nodeId:\"lja_VNNv_\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{variant:\"y4h7RXUaH\"},d_hkF3Vt9:{variant:\"jqPGYNjch\"}},children:/*#__PURE__*/_jsx(VideographerTestimonial,{height:\"100%\",id:\"lja_VNNv_\",layoutId:\"lja_VNNv_\",style:{width:\"100%\"},variant:\"qssQxMZdV\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7085.8},d_hkF3Vt9:{width:componentViewport?.width||\"100vw\",y:undefined},x_kko9RAG:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7033.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:461,width:\"1280px\",y:(componentViewport?.y||0)+0+7101.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hrsa4r-container\",nodeId:\"CsCDcFN9f\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{variant:\"e5lyNeDgt\"},d_hkF3Vt9:{variant:\"sgqdqfCDS\"},x_kko9RAG:{variant:\"uDElr5FTA\"}},children:/*#__PURE__*/_jsx(CTALaunchButton,{height:\"100%\",id:\"CsCDcFN9f\",KO_htSYXw:\"https://app.crowdclip.com/enter-email\",layoutId:\"CsCDcFN9f\",qdC43mkC7:\"Turn one highlight reel into hundreds\",r9p93e4p8:\"Create free account\",style:{width:\"100%\"},variant:\"ZH8Uznum0\",width:\"100%\",zOSP9TEu8:\"Discover why event marketers and videographers are using CrowdClip\\xae to engage event attendees during and after events.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{y:(componentViewport?.y||0)+0+7546.8},d_hkF3Vt9:{y:undefined},x_kko9RAG:{y:(componentViewport?.y||0)+0+7494.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:264,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7562.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5qny2v-container\",nodeId:\"XIKm8nHVu\",scopeId:\"WzsnrIp67\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CG2bCYrdZ:{variant:\"IFm_nl1xI\"},d_hkF3Vt9:{variant:\"kQqvilYYp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"XIKm8nHVu\",layoutId:\"XIKm8nHVu\",style:{width:\"100%\"},variant:\"o7RQfo0Of\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-orR22.framer-11zxn97, .framer-orR22 .framer-11zxn97 { display: block; }\",\".framer-orR22.framer-59wdo8 { align-content: center; align-items: center; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-orR22 .framer-k7zjl6 { -webkit-backdrop-filter: blur(12px); align-content: center; align-items: center; backdrop-filter: blur(12px); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; overflow: visible; padding: 16px 60px 16px 60px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-orR22 .framer-76j0iq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-orR22 .framer-z5m9l8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 43px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 183px; }\",\".framer-orR22 .framer-1rk3xv { aspect-ratio: 3.5238095238095237 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 150px; }\",\".framer-orR22 .framer-175rkcd-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-orR22 .framer-ad3913 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; min-height: 22px; min-width: 63px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-orR22 .framer-vatj3p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-orR22 .framer-xj5057-container, .framer-orR22 .framer-1dsl4fz-container, .framer-orR22 .framer-1h5zbaw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-orR22 .framer-t5wo2k { align-content: center; align-items: center; background-color: var(--token-7460c497-fdb5-40c5-bef2-fdf1c775d372, #f3f7fb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 180px 0px 80px 0px; position: relative; scroll-margin-top: 10px; width: 100%; }\",\".framer-orR22 .framer-1tbvotj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(69.84375000000003% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-orR22 .framer-11sgung { -webkit-filter: blur(90px); background-color: var(--token-95a49b30-b377-4d35-a167-23195e3598a2, #bf4343); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -13px; filter: blur(90px); flex: none; position: absolute; right: -283px; top: 0px; width: 969px; z-index: 1; }\",\".framer-orR22 .framer-1y8m6lh { -webkit-filter: blur(82px); background-color: var(--token-230ce875-c540-44d2-a1e7-04e568f2a358, #d12828); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; filter: blur(82px); flex: none; height: 399px; left: -296px; position: absolute; top: calc(50.59701492537315% - 399px / 2); width: 767px; z-index: 1; }\",\".framer-orR22 .framer-1ptf1v7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(18.046875000000025% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-orR22 .framer-139cypx { -webkit-filter: blur(95px); background-color: var(--token-5685f468-af30-47f2-9650-f835b0a4f1b4, #f69393); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(95px); flex: none; height: 441px; overflow: hidden; position: absolute; right: 62px; top: 123px; width: 455px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-orR22 .framer-wfq7qm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-orR22 .framer-o7t146 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-sfc9o8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-y0dur0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-orR22 .framer-sj0tdd { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-orR22 .framer-1h7p7dz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-orR22 .framer-113gxm8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-orR22 .framer-n3i3bd-container { aspect-ratio: 0.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-orR22 .framer-1fl81nb-container, .framer-orR22 .framer-30lily-container, .framer-orR22 .framer-13hibd9-container { aspect-ratio: 0.6944444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-orR22 .framer-hh9tbj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-orR22 .framer-15j62rj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-orR22 .framer-1y4ki1a-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-orR22 .framer-wfr4t2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-orR22 .framer-1tfdu3x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 325px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-8uyh3v { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 267px; overflow: visible; position: relative; width: 199px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-orR22 .framer-3yhws4 { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 249px; overflow: visible; position: relative; width: 273px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-orR22 .framer-16lp4yo { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 235px; overflow: visible; position: relative; width: 214px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-orR22 .framer-10qhyau { border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: none; height: 283px; overflow: visible; position: relative; width: 269px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-orR22 .framer-6zgj5f { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 206px; overflow: visible; position: relative; width: 186px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-orR22 .framer-1dswmed { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 215px; overflow: visible; position: relative; width: 211px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-orR22 .framer-aoqww4 { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 256px; overflow: visible; position: absolute; right: -484px; top: calc(50.153846153846175% - 256px / 2); width: 300px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-orR22 .framer-hgxkjl { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 144px; overflow: visible; position: absolute; right: -714px; top: calc(47.0769230769231% - 144px / 2); width: 300px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-orR22 .framer-beblyb-container { bottom: 30px; flex: none; height: 50px; position: fixed; right: 60px; width: 50px; z-index: 1; }\",\".framer-orR22 .framer-mgnk56-container, .framer-orR22 .framer-15dhn32-container, .framer-orR22 .framer-1k8wdkw-container, .framer-orR22 .framer-yk4d9o-container, .framer-orR22 .framer-1b394de-container, .framer-orR22 .framer-i9wcnk-container, .framer-orR22 .framer-1173ihp-container, .framer-orR22 .framer-5qny2v-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-orR22 .framer-zbp6or { align-content: center; align-items: center; background-color: rgba(244, 247, 250, 0.1); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 51px; min-width: 48px; overflow: hidden; padding: 0px; position: fixed; right: 40px; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-orR22 .framer-jijbt9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 60px 0px 60px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-orR22 .framer-1vwfgrt-container { aspect-ratio: 1.778443113772455 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 501px); position: relative; width: 891px; }\",\".framer-orR22 .framer-1bv82zt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 57%; word-break: break-word; word-wrap: break-word; }\",\".framer-orR22 .framer-1889yn { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-orR22 .framer-1h647d3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-orR22 .framer-17nvjj7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 80px 60px; position: relative; width: 100%; }\",\".framer-orR22 .framer-1lvab58 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 66%; word-break: break-word; word-wrap: break-word; }\",\".framer-orR22 .framer-1c20t9k { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 63%; word-break: break-word; word-wrap: break-word; }\",\".framer-orR22 .framer-1nw0qhy-container { flex: none; height: 412px; position: relative; width: 930px; }\",\".framer-orR22 .framer-tf68pq-container, .framer-orR22 .framer-1dhg99c-container, .framer-orR22 .framer-4ohlk3-container, .framer-orR22 .framer-1d85r83-container, .framer-orR22 .framer-o5jrur-container { height: 270px; position: relative; width: 480px; }\",\".framer-orR22 .framer-l0omy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 80px 60px; position: relative; width: 91%; }\",\".framer-orR22 .framer-uky4ce { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-xgtkw0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-1erevfh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-bit2xz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-orR22 .framer-138b7t9 { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-orR22 .framer-7pa06b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-s1j76l { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(210px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-9obfcu-container, .framer-orR22 .framer-gajym7-container, .framer-orR22 .framer-dmfi47-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-orR22 .framer-18gw7j2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 60px 160px 60px; position: relative; width: 100%; }\",\".framer-orR22 .framer-zhbdi7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-olh4qr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-1nnmpbe { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-orR22 .framer-1b1pltd { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-orR22 .framer-18a6601-container, .framer-orR22 .framer-1pehzey-container, .framer-orR22 .framer-1ay7xeg-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-orR22 .framer-hrsa4r-container { flex: none; height: auto; position: relative; width: 1280px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-orR22[data-border=\"true\"]::after, .framer-orR22 [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: 992px) and (max-width: 1279px) { .framer-orR22.framer-59wdo8 { width: 992px; } .framer-orR22 .framer-z5m9l8 { order: 0; } .framer-orR22 .framer-t5wo2k { gap: 50px; padding: 180px 40px 80px 40px; } .framer-orR22 .framer-wfq7qm, .framer-orR22 .framer-wfr4t2 { padding: 0px; } .framer-orR22 .framer-o7t146 { gap: 32px; } .framer-orR22 .framer-y0dur0, .framer-orR22 .framer-sj0tdd, .framer-orR22 .framer-1bv82zt, .framer-orR22 .framer-1c20t9k, .framer-orR22 .framer-138b7t9 { width: 80%; } .framer-orR22 .framer-1tfdu3x { height: 368px; } .framer-orR22 .framer-1889yn, .framer-orR22 .framer-1lvab58, .framer-orR22 .framer-bit2xz { width: 70%; } .framer-orR22 .framer-1h647d3 { gap: 30px; } .framer-orR22 .framer-17nvjj7, .framer-orR22 .framer-l0omy { padding: 60px; } .framer-orR22 .framer-18gw7j2 { padding: 60px 40px 80px 40px; } .framer-orR22 .framer-hrsa4r-container { width: 100%; }}\",\"@media (max-width: 575px) { .framer-orR22.framer-59wdo8 { width: 390px; } .framer-orR22 .framer-k7zjl6 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); flex-direction: column; height: 74px; left: calc(50.00000000000002% - 100% / 2); padding: 16px 20px 16px 20px; transform: unset; will-change: unset; } .framer-orR22 .framer-76j0iq { gap: unset; justify-content: space-between; width: 100%; } .framer-orR22 .framer-z5m9l8 { width: min-content; } .framer-orR22 .framer-175rkcd-container { aspect-ratio: unset; height: 40px; } .framer-orR22 .framer-t5wo2k { gap: 40px; padding: 160px 20px 40px 20px; } .framer-orR22 .framer-wfq7qm { gap: 32px; padding: 0px; } .framer-orR22 .framer-o7t146 { gap: 40px; } .framer-orR22 .framer-sfc9o8 { gap: 24px; } .framer-orR22 .framer-y0dur0, .framer-orR22 .framer-sj0tdd, .framer-orR22 .framer-1lvab58, .framer-orR22 .framer-1c20t9k, .framer-orR22 .framer-bit2xz, .framer-orR22 .framer-138b7t9, .framer-orR22 .framer-hrsa4r-container { width: 100%; } .framer-orR22 .framer-15j62rj { flex-direction: column; width: 100%; } .framer-orR22 .framer-1y4ki1a-container { align-self: unset; width: 100%; } .framer-orR22 .framer-wfr4t2 { flex-direction: column; gap: 10px; padding: 0px; } .framer-orR22 .framer-1tfdu3x { height: 251px; } .framer-orR22 .framer-8uyh3v, .framer-orR22 .framer-1dswmed { height: 179px; width: 176px; } .framer-orR22 .framer-3yhws4 { height: 179px; width: 175px; } .framer-orR22 .framer-16lp4yo { height: 179px; width: 156px; } .framer-orR22 .framer-10qhyau { height: 179px; width: 158px; } .framer-orR22 .framer-6zgj5f { height: 179px; width: 162px; } .framer-orR22 .framer-aoqww4 { height: 179px; right: -1203px; top: calc(50.199203187251015% - 178.5px / 2); width: 210px; } .framer-orR22 .framer-hgxkjl { height: 179px; right: -1686px; top: calc(47.01195219123508% - 178.5px / 2); width: 373px; } .framer-orR22 .framer-jijbt9 { padding: 40px 20px 0px 20px; } .framer-orR22 .framer-15dhn32-container { order: 0; } .framer-orR22 .framer-1vwfgrt-container { height: var(--framer-aspect-ratio-supported, 197px); order: 1; width: 100%; } .framer-orR22 .framer-1bv82zt { order: 2; width: 100%; } .framer-orR22 .framer-1889yn { order: 3; width: 100%; } .framer-orR22 .framer-1h647d3 { gap: 20px; order: 5; padding: 0px; } .framer-orR22 .framer-17nvjj7 { gap: 13px; height: 521px; padding: 40px 20px 40px 20px; } .framer-orR22 .framer-1nw0qhy-container { height: auto; width: 100%; } .framer-orR22 .framer-l0omy { gap: 13px; padding: 85px 20px 85px 20px; } .framer-orR22 .framer-7pa06b { gap: 32px; } .framer-orR22 .framer-s1j76l { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; } .framer-orR22 .framer-9obfcu-container, .framer-orR22 .framer-gajym7-container, .framer-orR22 .framer-dmfi47-container { align-self: unset; } .framer-orR22 .framer-18gw7j2 { padding: 40px 20px 80px 20px; } .framer-orR22 .framer-1b1pltd { flex-direction: column; gap: 40px; } .framer-orR22 .framer-18a6601-container, .framer-orR22 .framer-1pehzey-container, .framer-orR22 .framer-1ay7xeg-container { flex: none; width: 100%; }}\",\"@media (min-width: 576px) and (max-width: 991px) { .framer-orR22.framer-59wdo8 { width: 576px; } .framer-orR22 .framer-k7zjl6 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); flex-direction: column; height: 74px; left: calc(50.00000000000002% - 100% / 2); padding: 16px 20px 16px 20px; transform: unset; } .framer-orR22 .framer-76j0iq { gap: unset; justify-content: space-between; width: 100%; } .framer-orR22 .framer-z5m9l8 { width: min-content; } .framer-orR22 .framer-175rkcd-container { aspect-ratio: unset; height: 40px; } .framer-orR22 .framer-t5wo2k { gap: 40px; padding: 160px 20px 60px 20px; } .framer-orR22 .framer-wfq7qm { gap: 40px; padding: 0px; } .framer-orR22 .framer-y0dur0, .framer-orR22 .framer-sj0tdd { width: 80%; } .framer-orR22 .framer-wfr4t2 { padding: 0px; } .framer-orR22 .framer-1tfdu3x { gap: 20px; height: 247px; } .framer-orR22 .framer-16lp4yo { height: 163px; width: 142px; } .framer-orR22 .framer-10qhyau { height: 190px; width: 168px; } .framer-orR22 .framer-6zgj5f { height: 163px; width: 146px; } .framer-orR22 .framer-zbp6or { left: 0px; right: unset; } .framer-orR22 .framer-jijbt9 { padding: 60px 40px 0px 40px; } .framer-orR22 .framer-1vwfgrt-container { height: var(--framer-aspect-ratio-supported, 281px); width: 500px; } .framer-orR22 .framer-1bv82zt, .framer-orR22 .framer-1889yn, .framer-orR22 .framer-1lvab58, .framer-orR22 .framer-1c20t9k, .framer-orR22 .framer-bit2xz, .framer-orR22 .framer-138b7t9, .framer-orR22 .framer-hrsa4r-container { width: 100%; } .framer-orR22 .framer-1h647d3 { gap: 20px; padding: 0px; } .framer-orR22 .framer-17nvjj7, .framer-orR22 .framer-l0omy { gap: 24px; padding: 60px 20px 60px 20px; } .framer-orR22 .framer-1nw0qhy-container { height: 265px; width: 482px; } .framer-orR22 .framer-7pa06b { gap: 32px; } .framer-orR22 .framer-s1j76l { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); } .framer-orR22 .framer-18gw7j2 { padding: 60px 40px 120px 40px; } .framer-orR22 .framer-1b1pltd { flex-direction: column; gap: 40px; } .framer-orR22 .framer-18a6601-container, .framer-orR22 .framer-1pehzey-container, .framer-orR22 .framer-1ay7xeg-container { flex: none; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7501\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"x_kko9RAG\":{\"layout\":[\"fixed\",\"auto\"]},\"CG2bCYrdZ\":{\"layout\":[\"fixed\",\"auto\"]},\"d_hkF3Vt9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"kZELNA6_J\":{\"pattern\":\":kZELNA6_J\",\"name\":\"hero\"},\"jSxZt8mgC\":{\"pattern\":\":jSxZt8mgC\",\"name\":\"trusted-by\"},\"ICANQOR7N\":{\"pattern\":\":ICANQOR7N\",\"name\":\"how-it-works\"},\"n6cjydCc9\":{\"pattern\":\":n6cjydCc9\",\"name\":\"features\"},\"Rw0a2hJsg\":{\"pattern\":\":Rw0a2hJsg\",\"name\":\"features\"},\"CGIuEfvQE\":{\"pattern\":\":CGIuEfvQE\",\"name\":\"metrics\"}}\n * @framerResponsiveScreen\n */const FramerWzsnrIp67=withCSS(Component,css,\"framer-orR22\");export default FramerWzsnrIp67;FramerWzsnrIp67.displayName=\"Home\";FramerWzsnrIp67.defaultProps={height:7501,width:1280};addFonts(FramerWzsnrIp67,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVPSTAyLFyeg_IDWvOJmVES_Ew1D3s6ZKAi.woff2\",weight:\"400\"}]},...PhosphorFonts,...ButtonFonts,...AvatarFonts,...ScrollToTopButtonFonts,...TrustedByFonts,...SectionHeaderFonts,...YouTubeFonts,...FeatureSectionFonts,...CarouselFonts,...BadgeFonts,...FeatureCardFonts,...NumberAndTextFonts,...VideographerTestimonialFonts,...CTALaunchButtonFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWzsnrIp67\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x_kko9RAG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CG2bCYrdZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d_hkF3Vt9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7501\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1280\",\"framerScrollSections\":\"{\\\"kZELNA6_J\\\":{\\\"pattern\\\":\\\":kZELNA6_J\\\",\\\"name\\\":\\\"hero\\\"},\\\"jSxZt8mgC\\\":{\\\"pattern\\\":\\\":jSxZt8mgC\\\",\\\"name\\\":\\\"trusted-by\\\"},\\\"ICANQOR7N\\\":{\\\"pattern\\\":\\\":ICANQOR7N\\\",\\\"name\\\":\\\"how-it-works\\\"},\\\"n6cjydCc9\\\":{\\\"pattern\\\":\\\":n6cjydCc9\\\",\\\"name\\\":\\\"features\\\"},\\\"Rw0a2hJsg\\\":{\\\"pattern\\\":\\\":Rw0a2hJsg\\\",\\\"name\\\":\\\"features\\\"},\\\"CGIuEfvQE\\\":{\\\"pattern\\\":\\\":CGIuEfvQE\\\",\\\"name\\\":\\\"metrics\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}