{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js", "ssg:https://framerusercontent.com/modules/fMLOJ22ReE7sltJRu2Fb/Scx0trlDLZ1T4lBs85wP/d7DnOAptI.js", "ssg:https://framerusercontent.com/modules/hAZlNGVlaBZE6uLVruva/GyqnmgQPj3Wf5UpVwPDE/IVozL5jyY.js", "ssg:https://framerusercontent.com/modules/efDt6njipULty5G8iBDt/T3W8spxBS07MdWGC0iXI/iLvBdfOs8.js", "ssg:https://framerusercontent.com/modules/bq4i9Jb2ToRQoCi20Ea7/iN4dZOS1nYsqtbMeuLzN/OjogGp4K9.js", "ssg:https://framerusercontent.com/modules/g486kLXr8jkE1NzlMMBq/p6O3760QVHx3Zigd9fie/KtpKWPd0G.js", "ssg:https://framerusercontent.com/modules/2xbpSjWoXnIbhWjrd6pX/AvYumQg11bcqSnaf1QN6/TJRW1qsJY.js", "ssg:https://framerusercontent.com/modules/ko1tJyMmM8Oe1Ul4FRO7/0pDHs1fFlLDkTtrRq87y/augiA20Il.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Slideshow(props){/**\n     * Properties\n     */ const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/ createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */ const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */ const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */ const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */ const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */ const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */ useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */ const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */ const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */ const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */ const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */ const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */ const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */ const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point */ /* The subtraction of a full row of children is for overflow */ useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */ // if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */ if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing,]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     */ /* Next and previous function, animates the X */ const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */ const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */ const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200 // Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */ const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch */ /* For velocity use only */ const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */ if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */ if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */ useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */ let childCounter=0;/**\n     * Sizing\n     * */ let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */ for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/ _jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */ const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/ _jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/ _jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/ _jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});};/* Default Properties */ Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */ addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\",],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\",],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */ const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */ const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */ const Slide=/*#__PURE__*/ forwardRef(function Component(props,ref){var ref1,ref2;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */ const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent,].map(val=>val-childOffset);/**\n     * Effects\n     */ const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate,]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate,]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity,]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale,]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{ref.current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/ cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(ref1=child.props)===null||ref1===void 0?void 0:ref1.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref2=child.props)===null||ref2===void 0?void 0:ref2.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item */ /* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */ let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */ if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (cd03546)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ptgXAxRk4\"];const variantClassNames={ptgXAxRk4:\"framer-v-ck6vf9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({fact,height,id,number,width,...props})=>{var ref,ref1;return{...props,MhNn3yIfK:(ref=fact!==null&&fact!==void 0?fact:props.MhNn3yIfK)!==null&&ref!==void 0?ref:\"Years of experience\",YFmiRXhkK:(ref1=number!==null&&number!==void 0?number:props.YFmiRXhkK)!==null&&ref1!==void 0?ref1:\"10\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,MhNn3yIfK,YFmiRXhkK,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ptgXAxRk4\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-73pB6\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-ck6vf9\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ptgXAxRk4\",ref:ref,style:{...style},children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:/*#__PURE__*/ _jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(289deg, hsla(0, 0%, 100%, 0) -42.482945199349565%, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)) 100%)\"},children:\"10\"})})}),className:\"framer-4feta7\",fonts:[\"GF;Syne-700\"],layoutDependency:layoutDependency,layoutId:\"CUp8qyZ_j\",style:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.31},text:YFmiRXhkK,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\",\"--framer-text-transform\":\"uppercase\"},children:\"Years of experience\"})}),className:\"framer-38xley\",fonts:[\"GF;Syne-700\"],layoutDependency:layoutDependency,layoutId:\"Ko2VtxeC2\",style:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:MhNn3yIfK,transformTemplate:transformTemplate,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=['.framer-73pB6 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-73pB6 .framer-18ouyr7 { display: block; }\",\".framer-73pB6 .framer-ck6vf9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 397px; }\",\".framer-73pB6 .framer-4feta7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-73pB6 .framer-38xley { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-73pB6 .framer-ck6vf9 { gap: 0px; } .framer-73pB6 .framer-ck6vf9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-73pB6 .framer-ck6vf9 > :first-child { margin-top: 0px; } .framer-73pB6 .framer-ck6vf9 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 108\n * @framerIntrinsicWidth 397\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"MhNn3yIfK\":\"fact\",\"YFmiRXhkK\":\"number\"}\n * @framerImmutableVariables false\n */ const Framerd7DnOAptI=withCSS(Component,css,\"framer-73pB6\");export default Framerd7DnOAptI;Framerd7DnOAptI.displayName=\"Stats\";Framerd7DnOAptI.defaultProps={height:108,width:397};addPropertyControls(Framerd7DnOAptI,{MhNn3yIfK:{defaultValue:\"Years of experience\",displayTextArea:false,title:\"Fact\",type:ControlType.String},YFmiRXhkK:{defaultValue:\"10\",displayTextArea:false,title:\"Number\",type:ControlType.String}});addFonts(Framerd7DnOAptI,[{family:\"Syne\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/d7DnOAptI:default\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf\",weight:\"700\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerd7DnOAptI\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"false\",\"framerIntrinsicHeight\":\"108\",\"framerVariables\":\"{\\\"MhNn3yIfK\\\":\\\"fact\\\",\\\"YFmiRXhkK\\\":\\\"number\\\"}\",\"framerIntrinsicWidth\":\"397\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./d7DnOAptI.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wmNUJbdPNKyzHg4BMRWK/A8XGw7tM1hVRTgBYxjSg/DuMLJ2VUN.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6qRFW3jSqQoDwPqXdgZZ/BRDb2ICutr7DbGb3jk0J/MjM7LH64L.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/9sRLCTMU0ThRkz5PCBZI/u1b1NMMmF4GzIY6os2iT/urlDCZwpF.js\";import*as localizedValues from\"./IVozL5jyY-0.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={M4x0ZduiV:{hover:true},NvSY0AjTO:{hover:true}};const cycleOrder=[\"NvSY0AjTO\",\"M4x0ZduiV\",\"i3OUhIoZi\",\"YR7CuyKoH\"];const serializationHash=\"framer-xZbyp\";const variantClassNames={i3OUhIoZi:\"framer-v-lpc4rc\",M4x0ZduiV:\"framer-v-1s6d1df\",NvSY0AjTO:\"framer-v-pxhdii\",YR7CuyKoH:\"framer-v-1urtpzu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={gFkaKxbR0:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:270,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Collapsed\":\"i3OUhIoZi\",\"Phone Expanded\":\"YR7CuyKoH\",Collapsed:\"M4x0ZduiV\",Expanded:\"NvSY0AjTO\"};const getProps=({description,height,id,image,row1,row2,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,DFIDx_49F:(_ref=image!==null&&image!==void 0?image:props.DFIDx_49F)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/cU8i3FwPr0fkSH5zeivVz7Q3AY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cU8i3FwPr0fkSH5zeivVz7Q3AY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/cU8i3FwPr0fkSH5zeivVz7Q3AY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/cU8i3FwPr0fkSH5zeivVz7Q3AY.jpg 2334w\"},I43n4JqNq:(_ref1=row2!==null&&row2!==void 0?row2:props.I43n4JqNq)!==null&&_ref1!==void 0?_ref1:\"Storyboarding\\nLocation Scouting\\nCasting\",i5O03YodR:(_ref2=description!==null&&description!==void 0?description:props.i5O03YodR)!==null&&_ref2!==void 0?_ref2:\"Where creativity meets strategy. We collaborate to shape your vision into a actionable plan.\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"NvSY0AjTO\",wfGtFKOCx:(_ref4=title!==null&&title!==void 0?title:props.wfGtFKOCx)!==null&&_ref4!==void 0?_ref4:\"Video Editing\",YEq393da6:(_ref5=row1!==null&&row1!==void 0?row1:props.YEq393da6)!==null&&_ref5!==void 0?_ref5:\"Concept Development\\nScriptwriting\\nStoryboarding\\n\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,wfGtFKOCx,i5O03YodR,DFIDx_49F,YEq393da6,I43n4JqNq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NvSY0AjTO\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1nm0m5i=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"M4x0ZduiV\");});const onTap1d1jhgp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"NvSY0AjTO\");});const onTaptvijn1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"YR7CuyKoH\");});const onTap1j3lih6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"i3OUhIoZi\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"i3OUhIoZi\",\"YR7CuyKoH\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"M4x0ZduiV-hover\")return false;if([\"M4x0ZduiV\",\"i3OUhIoZi\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-pxhdii\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Expanded\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NvSY0AjTO\",onTap:onTap1nm0m5i,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",background:'radial-gradient(50% 50% at 0% 0%, var(--token-31d2d8ec-6073-495b-98cd-5e142f56bc63, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White 15%\"} */ 2.210024196147939%, hsla(0, 0%, 100%, 0) 100%)',borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},variants:{\"M4x0ZduiV-hover\":{\"--border-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\",\"--border-left-width\":\"1px\",background:'radial-gradient(50% 50% at 50% 0%, var(--token-31d2d8ec-6073-495b-98cd-5e142f56bc63, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White 15%\"} */ 2.210024196147939%, hsla(0, 0%, 100%, 0) 100%)'},\"NvSY0AjTO-hover\":{\"--border-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\",\"--border-left-width\":\"1px\",background:'radial-gradient(50% 50% at 50% 0%, var(--token-31d2d8ec-6073-495b-98cd-5e142f56bc63, rgba(255, 255, 255, 0.15)) /* {\"name\":\"White 15%\"} */ 2.210024196147939%, hsla(0, 0%, 100%, 0) 100%)'}},...addPropertyOverrides({\"M4x0ZduiV-hover\":{\"data-framer-name\":undefined},\"NvSY0AjTO-hover\":{\"data-framer-name\":undefined},i3OUhIoZi:{\"data-framer-name\":\"Phone Collapsed\",onTap:onTaptvijn1},M4x0ZduiV:{\"data-framer-name\":\"Collapsed\",onTap:onTap1d1jhgp},YR7CuyKoH:{\"data-framer-name\":\"Phone Expanded\",onTap:onTap1j3lih6}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-16szu7u\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"gLkubF5Dt\",style:{rotate:0},variants:{\"M4x0ZduiV-hover\":{rotate:-5},M4x0ZduiV:{rotate:4}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3500,intrinsicWidth:2334,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||348)-(-1.093994140625+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||348)*1.0031347962382444)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||348)*1.0031347962382444*.5012987012987015-((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||348)*1.0031347962382444*1/2)),pixelHeight:3500,pixelWidth:2334,sizes:\"254px\",...toResponsiveImage(DFIDx_49F)},className:\"framer-d64ho6\",layoutDependency:layoutDependency,layoutId:\"eQMOKUzrn\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,filter:\"none\",opacity:1,WebkitFilter:\"none\"},variants:{\"M4x0ZduiV-hover\":{opacity:1},M4x0ZduiV:{filter:\"grayscale(1)\",opacity:0,WebkitFilter:\"grayscale(1)\"}},...addPropertyOverrides({\"M4x0ZduiV-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3500,intrinsicWidth:2334,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+-203.00086359011738+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||255)*1.0031347962382444*.5012987012987015-((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||255)*1.0031347962382444*1/2)),pixelHeight:3500,pixelWidth:2334,sizes:\"254px\",...toResponsiveImage(DFIDx_49F)}},M4x0ZduiV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3500,intrinsicWidth:2334,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+-179.99839812958865+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||255)*1.0031347962382444*.5012987012987015-((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||255)*1.0031347962382444*1/2)),pixelHeight:3500,pixelWidth:2334,sizes:\"254px\",...toResponsiveImage(DFIDx_49F)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(98deg, rgb(255, 255, 255) -2.22753e-15%, rgba(255, 255, 255, 0.77) 100%)\"},children:\"Video Editing\"})})}),className:\"framer-624c68\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"favR92Sax\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wfGtFKOCx,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"M4x0ZduiV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(216deg, rgb(255, 255, 255) -2.22753e-15%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Video Editing\"})})})},\"NvSY0AjTO-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(256deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.58) 100%)\"},children:\"Video Editing\"})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mzim4c\",\"data-framer-name\":\"Text Wrapperr\",layoutDependency:layoutDependency,layoutId:\"S0gaq_Nec\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8)))\"},children:\"Where creativity meets strategy. We collaborate to shape your vision into a actionable plan.\"})}),className:\"framer-ez4gff\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mSvbEgZSa\",style:{\"--extracted-r6o4lv\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:i5O03YodR,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fmuphu\",\"data-framer-name\":\"Services\",layoutDependency:layoutDependency,layoutId:\"qScPo0TMV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",children:/*#__PURE__*/_jsxs(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8)))\"},children:[\"Concept Development\",/*#__PURE__*/_jsx(motion.br,{}),\"Scriptwriting\",/*#__PURE__*/_jsx(motion.br,{}),\"Storyboarding\",/*#__PURE__*/_jsx(motion.br,{})]})})}),className:\"framer-whod3y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GkRNnTxQA\",style:{\"--extracted-1w3ko1f\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YEq393da6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8)))\"},children:[\"Storyboarding\",/*#__PURE__*/_jsx(motion.br,{}),\"Location Scouting\",/*#__PURE__*/_jsx(motion.br,{}),\"Casting\"]})}),className:\"framer-1g4e4u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qLEc_yo46\",style:{\"--extracted-r6o4lv\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:I43n4JqNq,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fbz94t\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"PnVVD8JYe\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27,WebkitBackdropFilter:\"blur(5px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Hide details\"})}),className:\"framer-q9a98g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ojKptD9Sg\",style:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({i3OUhIoZi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"MEHR ERFAHREN\"})})},M4x0ZduiV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"MEHR ERFAHREN\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4xy95o-container\",layoutDependency:layoutDependency,layoutId:\"qz1COLjl_-container\",style:{rotate:270},variants:{\"M4x0ZduiV-hover\":{rotate:0},\"NvSY0AjTO-hover\":{rotate:180},i3OUhIoZi:{rotate:0},M4x0ZduiV:{rotate:-90},YR7CuyKoH:{rotate:180}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowCircleDown\",id:\"qz1COLjl_\",layoutId:\"qz1COLjl_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\",...addPropertyOverrides({\"M4x0ZduiV-hover\":{color:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(255, 171, 66))\",weight:\"duotone\"},\"NvSY0AjTO-hover\":{color:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(255, 99, 111))\",weight:\"duotone\"},i3OUhIoZi:{color:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(255, 171, 66))\",weight:\"duotone\"},YR7CuyKoH:{color:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(255, 99, 111))\",weight:\"duotone\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xZbyp.framer-xxlfh1, .framer-xZbyp .framer-xxlfh1 { display: block; }\",\".framer-xZbyp.framer-pxhdii { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 750px; }\",\".framer-xZbyp .framer-16szu7u { align-content: center; align-items: center; bottom: -1px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: -290px; overflow: visible; padding: 0px; pointer-events: none; position: absolute; width: 254px; z-index: 1; }\",\".framer-xZbyp .framer-d64ho6 { flex: none; height: 100%; left: calc(50.14164305949011% - 100% / 2); mix-blend-mode: difference; overflow: visible; position: absolute; top: calc(50.12987012987015% - 100% / 2); width: 100%; z-index: 2; }\",\".framer-xZbyp .framer-624c68 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xZbyp .framer-mzim4c, .framer-xZbyp .framer-1fmuphu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xZbyp .framer-ez4gff, .framer-xZbyp .framer-whod3y, .framer-xZbyp .framer-1g4e4u { -webkit-user-select: none; flex: 1 0 0px; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xZbyp .framer-fbz94t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 5px 3px 5px 20px; pointer-events: none; position: relative; width: min-content; }\",\".framer-xZbyp .framer-q9a98g { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xZbyp .framer-4xy95o-container { flex: none; height: 30px; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xZbyp.framer-pxhdii, .framer-xZbyp .framer-16szu7u, .framer-xZbyp .framer-mzim4c, .framer-xZbyp .framer-1fmuphu, .framer-xZbyp .framer-fbz94t { gap: 0px; } .framer-xZbyp.framer-pxhdii > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-xZbyp.framer-pxhdii > :first-child, .framer-xZbyp .framer-16szu7u > :first-child { margin-top: 0px; } .framer-xZbyp.framer-pxhdii > :last-child, .framer-xZbyp .framer-16szu7u > :last-child { margin-bottom: 0px; } .framer-xZbyp .framer-16szu7u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xZbyp .framer-mzim4c > *, .framer-xZbyp .framer-1fmuphu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xZbyp .framer-mzim4c > :first-child, .framer-xZbyp .framer-1fmuphu > :first-child, .framer-xZbyp .framer-fbz94t > :first-child { margin-left: 0px; } .framer-xZbyp .framer-mzim4c > :last-child, .framer-xZbyp .framer-1fmuphu > :last-child, .framer-xZbyp .framer-fbz94t > :last-child { margin-right: 0px; } .framer-xZbyp .framer-fbz94t > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-xZbyp.framer-v-1s6d1df .framer-16szu7u { bottom: unset; left: unset; right: 30px; top: -180px; }\",\".framer-xZbyp.framer-v-lpc4rc.framer-pxhdii, .framer-xZbyp.framer-v-1urtpzu.framer-pxhdii { padding: 30px 20px 30px 20px; }\",\".framer-xZbyp.framer-v-1urtpzu .framer-1fmuphu { flex-direction: column; gap: 0px; }\",\".framer-xZbyp.framer-v-1urtpzu .framer-whod3y, .framer-xZbyp.framer-v-1urtpzu .framer-1g4e4u { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xZbyp.framer-v-1urtpzu .framer-1fmuphu { gap: 0px; } .framer-xZbyp.framer-v-1urtpzu .framer-1fmuphu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xZbyp.framer-v-1urtpzu .framer-1fmuphu > :first-child { margin-top: 0px; } .framer-xZbyp.framer-v-1urtpzu .framer-1fmuphu > :last-child { margin-bottom: 0px; } }\",\".framer-xZbyp.framer-v-1s6d1df.hover .framer-16szu7u { bottom: unset; left: calc(52.26666666666668% - 254px / 2); right: unset; top: -203px; }\",\".framer-xZbyp.framer-v-1s6d1df.hover .framer-fbz94t { gap: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xZbyp.framer-v-1s6d1df.hover .framer-fbz94t { gap: 0px; } .framer-xZbyp.framer-v-1s6d1df.hover .framer-fbz94t > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-xZbyp.framer-v-1s6d1df.hover .framer-fbz94t > :first-child { margin-left: 0px; } .framer-xZbyp.framer-v-1s6d1df.hover .framer-fbz94t > :last-child { margin-right: 0px; } }\",\".framer-xZbyp.framer-v-pxhdii.hover .framer-fbz94t { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xZbyp.framer-v-pxhdii.hover .framer-fbz94t { gap: 0px; } .framer-xZbyp.framer-v-pxhdii.hover .framer-fbz94t > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-xZbyp.framer-v-pxhdii.hover .framer-fbz94t > :first-child { margin-left: 0px; } .framer-xZbyp.framer-v-pxhdii.hover .framer-fbz94t > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-xZbyp[data-border=\"true\"]::after, .framer-xZbyp [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 348\n * @framerIntrinsicWidth 750\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"M4x0ZduiV\":{\"layout\":[\"fixed\",\"auto\"]},\"i3OUhIoZi\":{\"layout\":[\"fixed\",\"auto\"]},\"YR7CuyKoH\":{\"layout\":[\"fixed\",\"auto\"]},\"ScX4091aO\":{\"layout\":[\"fixed\",\"auto\"]},\"QPJ0aP30t\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"wfGtFKOCx\":\"title\",\"i5O03YodR\":\"description\",\"DFIDx_49F\":\"image\",\"YEq393da6\":\"row1\",\"I43n4JqNq\":\"row2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIVozL5jyY=withCSS(Component,css,\"framer-xZbyp\");export default FramerIVozL5jyY;FramerIVozL5jyY.displayName=\"Homepage - Service\";FramerIVozL5jyY.defaultProps={height:348,width:750};addPropertyControls(FramerIVozL5jyY,{variant:{options:[\"NvSY0AjTO\",\"M4x0ZduiV\",\"i3OUhIoZi\",\"YR7CuyKoH\"],optionTitles:[\"Expanded\",\"Collapsed\",\"Phone Collapsed\",\"Phone Expanded\"],title:\"Variant\",type:ControlType.Enum},wfGtFKOCx:{defaultValue:\"Video Editing\",displayTextArea:true,title:\"Title\",type:ControlType.String},i5O03YodR:{defaultValue:\"Where creativity meets strategy. We collaborate to shape your vision into a actionable plan.\",displayTextArea:true,title:\"Description\",type:ControlType.String},DFIDx_49F:{__defaultAssetReference:\"data:framer/asset-reference,cU8i3FwPr0fkSH5zeivVz7Q3AY.jpg?originalFilename=photo-1695209387889-dd34362dc1cc%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfGFsbHwyfHx8fHx8Mnx8MTY5NTQwMDIxMHw%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},YEq393da6:{defaultValue:\"Concept Development\\nScriptwriting\\nStoryboarding\\n\",displayTextArea:true,title:\"Row 1\",type:ControlType.String},I43n4JqNq:{defaultValue:\"Storyboarding\\nLocation Scouting\\nCasting\",displayTextArea:true,title:\"Row 2\",type:ControlType.String}});addFonts(FramerIVozL5jyY,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIVozL5jyY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"348\",\"framerVariables\":\"{\\\"wfGtFKOCx\\\":\\\"title\\\",\\\"i5O03YodR\\\":\\\"description\\\",\\\"DFIDx_49F\\\":\\\"image\\\",\\\"YEq393da6\\\":\\\"row1\\\",\\\"I43n4JqNq\\\":\\\"row2\\\"}\",\"framerIntrinsicWidth\":\"750\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M4x0ZduiV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i3OUhIoZi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YR7CuyKoH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ScX4091aO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QPJ0aP30t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IVozL5jyY.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Inter-300\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/iLvBdfOs8:default\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf\",weight:\"300\"}];export const css=['.framer-FbTXA .framer-styles-preset-g6micz:not(.rich-text-wrapper), .framer-FbTXA .framer-styles-preset-g6micz.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 300; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-FbTXA\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Syne-600\",\"GF;Syne-700\"]);export const fonts=[{family:\"Syne\",moduleAsset:{localModuleIdentifier:\"local-module:css/OjogGp4K9:default\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf\",weight:\"600\"},{family:\"Syne\",moduleAsset:{localModuleIdentifier:\"local-module:css/OjogGp4K9:default\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf\",weight:\"700\"}];export const css=['.framer-XNIxT .framer-styles-preset-fprirg:not(.rich-text-wrapper), .framer-XNIxT .framer-styles-preset-fprirg.rich-text-wrapper p { --framer-font-family: \"Syne\", sans-serif; --framer-font-family-bold: \"Syne\", \"Syne Placeholder\", sans-serif; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1599px) and (min-width: 1200px) { .framer-XNIxT .framer-styles-preset-fprirg:not(.rich-text-wrapper), .framer-XNIxT .framer-styles-preset-fprirg.rich-text-wrapper p { --framer-font-family: \"Syne\", sans-serif; --framer-font-family-bold: \"Syne\", \"Syne Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-XNIxT .framer-styles-preset-fprirg:not(.rich-text-wrapper), .framer-XNIxT .framer-styles-preset-fprirg.rich-text-wrapper p { --framer-font-family: \"Syne\", sans-serif; --framer-font-family-bold: \"Syne\", \"Syne Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-XNIxT .framer-styles-preset-fprirg:not(.rich-text-wrapper), .framer-XNIxT .framer-styles-preset-fprirg.rich-text-wrapper p { --framer-font-family: \"Syne\", sans-serif; --framer-font-family-bold: \"Syne\", \"Syne Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-XNIxT\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/efDt6njipULty5G8iBDt/T3W8spxBS07MdWGC0iXI/iLvBdfOs8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bq4i9Jb2ToRQoCi20Ea7/iN4dZOS1nYsqtbMeuLzN/OjogGp4K9.js\";import*as localizedValues from\"./KtpKWPd0G-0.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"dizu1qwCu\",\"IsHHPhWzy\"];const serializationHash=\"framer-uomvw\";const variantClassNames={dizu1qwCu:\"framer-v-jkcni0\",IsHHPhWzy:\"framer-v-8f53uf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={gFkaKxbR0:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:270,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"dizu1qwCu\",Hover:\"IsHHPhWzy\"};const getProps=({clientName,company,height,id,image,quote,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2,_ref3,_ref4;return{...props,TYrIC1xIe:(_ref=image!==null&&image!==void 0?image:props.TYrIC1xIe)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/or0Wlg5UKFRZGfVPFnLR5bath6I.svg\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"dizu1qwCu\",XQebMLGjf:(_ref2=company!==null&&company!==void 0?company:props.XQebMLGjf)!==null&&_ref2!==void 0?_ref2:\"Chief Marketing Officer, HorizonTech Solutions\",xWK1trTmf:(_ref3=clientName!==null&&clientName!==void 0?clientName:props.xWK1trTmf)!==null&&_ref3!==void 0?_ref3:\"Sarah Adams\",zid21k45x:(_ref4=quote!==null&&quote!==void 0?quote:props.zid21k45x)!==null&&_ref4!==void 0?_ref4:\"We are thrilled with our new corporate videos. The team was incredibly calm, patient, and fostered a pleasant atmosphere. Everything came together seamlessly! We wholeheartedly endorse and would recommend them anytime.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TYrIC1xIe,zid21k45x,xWK1trTmf,XQebMLGjf,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dizu1qwCu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterr9n7fm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IsHHPhWzy\"),100);});const onMouseLeave1asq4tp=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"dizu1qwCu\"),100);});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-jkcni0\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dizu1qwCu\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnterr9n7fm,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(8px)\",background:\"linear-gradient(95deg, rgba(255, 255, 255, 0.08) 2.210024196147939%, hsla(0, 0%, 100%, 0) 100%)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,WebkitBackdropFilter:\"blur(8px)\",...style},...addPropertyOverrides({IsHHPhWzy:{\"data-framer-name\":\"Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1asq4tp}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lbv3kr\",layoutDependency:layoutDependency,layoutId:\"tuwP5ZCso\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"172px\",...toResponsiveImage(TYrIC1xIe),...{positionX:\"left\",positionY:\"center\"}},className:\"framer-11zp32l\",layoutDependency:layoutDependency,layoutId:\"AxPTxMxyY\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1joqzw9\",layoutDependency:layoutDependency,layoutId:\"a1HJ0DaWI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-fprirg\",\"data-styles-preset\":\"OjogGp4K9\",children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(107deg, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)) 0%, var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8)) 100%)\"},children:\"We are thrilled with our new corporate videos. The team was incredibly calm, patient, and fostered a pleasant atmosphere. Everything came together seamlessly! We wholeheartedly endorse and would recommend them anytime.\"})})}),className:\"framer-wp93yv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wCWyHiMGR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zid21k45x,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yoh4i0-container\",layoutDependency:layoutDependency,layoutId:\"QQWNhn6Ue-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Quotes\",id:\"QQWNhn6Ue\",layoutId:\"QQWNhn6Ue\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11pl6e7\",layoutDependency:layoutDependency,layoutId:\"Pfy8stEMx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS1yZWd1bGFy\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.08em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Sarah Adams\"})}),className:\"framer-prb8w4\",fonts:[\"GF;Syne-regular\"],layoutDependency:layoutDependency,layoutId:\"Yxy9TDfD4\",style:{\"--extracted-r6o4lv\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:xWK1trTmf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5)))\"},children:\"Chief Marketing Officer, HorizonTech Solutions\"})}),className:\"framer-fhuua2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DaFz3G6ot\",style:{\"--extracted-r6o4lv\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:XQebMLGjf,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e3m1f\",layoutDependency:layoutDependency,layoutId:\"QpaHgpxAe\",style:{backdropFilter:\"blur(5px)\",rotate:9,WebkitBackdropFilter:\"blur(5px)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qzlp2h\",layoutDependency:layoutDependency,layoutId:\"p2_fXBl8b\",style:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgb(255, 255, 255)\",opacity:.12,WebkitBackdropFilter:\"blur(0px)\"}})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uomvw.framer-6s41k2, .framer-uomvw .framer-6s41k2 { display: block; }\",\".framer-uomvw.framer-jkcni0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 40px 70px 40px; position: relative; width: 926px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uomvw .framer-1lbv3kr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; pointer-events: none; position: relative; width: 172px; }\",\".framer-uomvw .framer-11zp32l { flex: none; height: 100%; overflow: visible; position: relative; width: 100%; }\",\".framer-uomvw .framer-1joqzw9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; mix-blend-mode: difference; overflow: visible; padding: 0px; pointer-events: none; position: relative; width: 100%; }\",\".framer-uomvw .framer-wp93yv { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uomvw .framer-yoh4i0-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-uomvw .framer-11pl6e7 { 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; pointer-events: none; position: relative; width: 846px; }\",\".framer-uomvw .framer-prb8w4, .framer-uomvw .framer-fhuua2 { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uomvw .framer-e3m1f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 180%; justify-content: center; left: -288px; overflow: visible; padding: 0px; pointer-events: none; position: absolute; top: calc(45.820895522388085% - 179.8507462686567% / 2); width: 169px; }\",\".framer-uomvw .framer-qzlp2h { flex: none; height: 100%; left: calc(50.11389521640094% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uomvw.framer-jkcni0, .framer-uomvw .framer-1lbv3kr, .framer-uomvw .framer-1joqzw9, .framer-uomvw .framer-11pl6e7, .framer-uomvw .framer-e3m1f { gap: 0px; } .framer-uomvw.framer-jkcni0 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-uomvw.framer-jkcni0 > :first-child, .framer-uomvw .framer-1joqzw9 > :first-child, .framer-uomvw .framer-11pl6e7 > :first-child { margin-top: 0px; } .framer-uomvw.framer-jkcni0 > :last-child, .framer-uomvw .framer-1joqzw9 > :last-child, .framer-uomvw .framer-11pl6e7 > :last-child { margin-bottom: 0px; } .framer-uomvw .framer-1lbv3kr > *, .framer-uomvw .framer-e3m1f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uomvw .framer-1lbv3kr > :first-child, .framer-uomvw .framer-e3m1f > :first-child { margin-left: 0px; } .framer-uomvw .framer-1lbv3kr > :last-child, .framer-uomvw .framer-e3m1f > :last-child { margin-right: 0px; } .framer-uomvw .framer-1joqzw9 > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-uomvw .framer-11pl6e7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-uomvw.framer-v-8f53uf .framer-e3m1f { height: 120%; left: unset; right: -281px; top: -74px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-uomvw[data-border=\"true\"]::after, .framer-uomvw [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 684\n * @framerIntrinsicWidth 926\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IsHHPhWzy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TYrIC1xIe\":\"image\",\"zid21k45x\":\"quote\",\"xWK1trTmf\":\"clientName\",\"XQebMLGjf\":\"company\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKtpKWPd0G=withCSS(Component,css,\"framer-uomvw\");export default FramerKtpKWPd0G;FramerKtpKWPd0G.displayName=\"Testimonial - Card\";FramerKtpKWPd0G.defaultProps={height:684,width:926};addPropertyControls(FramerKtpKWPd0G,{variant:{options:[\"dizu1qwCu\",\"IsHHPhWzy\"],optionTitles:[\"Default\",\"Hover\"],title:\"Variant\",type:ControlType.Enum},TYrIC1xIe:{__defaultAssetReference:\"data:framer/asset-reference,or0Wlg5UKFRZGfVPFnLR5bath6I.svg?originalFilename=logoipsum-220.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},zid21k45x:{defaultValue:\"We are thrilled with our new corporate videos. The team was incredibly calm, patient, and fostered a pleasant atmosphere. Everything came together seamlessly! We wholeheartedly endorse and would recommend them anytime.\",displayTextArea:true,title:\"Quote\",type:ControlType.String},xWK1trTmf:{defaultValue:\"Sarah Adams\",displayTextArea:false,title:\"Client Name\",type:ControlType.String},XQebMLGjf:{defaultValue:\"Chief Marketing Officer, HorizonTech Solutions\",displayTextArea:false,title:\"Company\",type:ControlType.String}});addFonts(FramerKtpKWPd0G,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6hR47NCV5Z.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKtpKWPd0G\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IsHHPhWzy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"684\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"TYrIC1xIe\\\":\\\"image\\\",\\\"zid21k45x\\\":\\\"quote\\\",\\\"xWK1trTmf\\\":\\\"clientName\\\",\\\"XQebMLGjf\\\":\\\"company\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"926\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KtpKWPd0G.map", "// Generated by Framer (33d5032)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./TJRW1qsJY-0.js\";const cycleOrder=[\"NzbgiJYlF\",\"vStgjbRNM\"];const serializationHash=\"framer-AbESz\";const variantClassNames={NzbgiJYlF:\"framer-v-15os3xn\",vStgjbRNM:\"framer-v-1sqvbfx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={gFkaKxbR0:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Horizontal:\"NzbgiJYlF\",Vertical:\"vStgjbRNM\"};const getProps=({height,id,image,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,KM7TcE55r:link!==null&&link!==void 0?link:props.KM7TcE55r,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"NzbgiJYlF\",XuQs49rUl:(_ref1=image!==null&&image!==void 0?image:props.XuQs49rUl)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/gk7QZqkTE0Z8JusfQWLflnjHLdU.svg\"}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,XuQs49rUl,KM7TcE55r,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NzbgiJYlF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:KM7TcE55r,openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-15os3xn\",className,classNames)} framer-1hsxb0p`,\"data-border\":true,\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"NzbgiJYlF\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{vStgjbRNM:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({vStgjbRNM:{\"data-framer-name\":\"Vertical\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,...toResponsiveImage(XuQs49rUl),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-4ushn7\",layoutDependency:layoutDependency,layoutId:\"sZvX9JX0Z\",...addPropertyOverrides({vStgjbRNM:{background:{alt:\"\",fit:\"fit\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 24px)`,...toResponsiveImage(XuQs49rUl),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AbESz.framer-1hsxb0p, .framer-AbESz .framer-1hsxb0p { display: block; }\",\".framer-AbESz.framer-15os3xn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: hidden; padding: 0px 40px 0px 0px; position: relative; text-decoration: none; width: 172px; }\",\".framer-AbESz .framer-4ushn7 { flex: none; height: 100%; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AbESz.framer-15os3xn { gap: 0px; } .framer-AbESz.framer-15os3xn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AbESz.framer-15os3xn > :first-child { margin-left: 0px; } .framer-AbESz.framer-15os3xn > :last-child { margin-right: 0px; } }\",\".framer-AbESz.framer-v-1sqvbfx.framer-15os3xn { height: 102px; padding: 12px; width: 222px; }\",'.framer-AbESz[data-border=\"true\"]::after, .framer-AbESz [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 172\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"vStgjbRNM\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"XuQs49rUl\":\"image\",\"KM7TcE55r\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTJRW1qsJY=withCSS(Component,css,\"framer-AbESz\");export default FramerTJRW1qsJY;FramerTJRW1qsJY.displayName=\"Brand Logos\";FramerTJRW1qsJY.defaultProps={height:88,width:172};addPropertyControls(FramerTJRW1qsJY,{variant:{options:[\"NzbgiJYlF\",\"vStgjbRNM\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Variant\",type:ControlType.Enum},XuQs49rUl:{__defaultAssetReference:\"data:framer/asset-reference,gk7QZqkTE0Z8JusfQWLflnjHLdU.svg?originalFilename=logoipsum-291.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},KM7TcE55r:{title:\"Link\",type:ControlType.Link}});addFonts(FramerTJRW1qsJY,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTJRW1qsJY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"88\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"XuQs49rUl\\\":\\\"image\\\",\\\"KM7TcE55r\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"172\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vStgjbRNM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TJRW1qsJY.map", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";import Stats from\"#framer/local/canvasComponent/d7DnOAptI/d7DnOAptI.js\";import HomepageService from\"#framer/local/canvasComponent/IVozL5jyY/IVozL5jyY.js\";import TestimonialCard from\"#framer/local/canvasComponent/KtpKWPd0G/KtpKWPd0G.js\";import ButtonGradient from\"#framer/local/canvasComponent/Ri7mo6WgZ/Ri7mo6WgZ.js\";import TextTicker from\"#framer/local/canvasComponent/ScPu0aX9j/ScPu0aX9j.js\";import FAQsList from\"#framer/local/canvasComponent/Sd0tHNaJB/Sd0tHNaJB.js\";import Footer from\"#framer/local/canvasComponent/Swq40RzUA/Swq40RzUA.js\";import BrandLogos from\"#framer/local/canvasComponent/TJRW1qsJY/TJRW1qsJY.js\";import NavBar from\"#framer/local/canvasComponent/WvxfThqf1/WvxfThqf1.js\";import*as sharedStyle from\"#framer/local/css/hwFxtQiSW/hwFxtQiSW.js\";import*as sharedStyle3 from\"#framer/local/css/Kk8d6B9MK/Kk8d6B9MK.js\";import*as sharedStyle1 from\"#framer/local/css/LdRSkkClr/LdRSkkClr.js\";import*as sharedStyle2 from\"#framer/local/css/rZemCCbaP/rZemCCbaP.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavBarFonts=getFonts(NavBar);const ImageWithFX=withFX(Image);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonGradientFonts=getFonts(ButtonGradient);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionSectionWithFX=withFX(motion.section);const RichTextWithFX=withFX(RichText);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const BrandLogosFonts=getFonts(BrandLogos);const TickerFonts=getFonts(Ticker);const HomepageServiceFonts=getFonts(HomepageService);const StatsFonts=getFonts(Stats);const TestimonialCardFonts=getFonts(TestimonialCard);const SlideshowFonts=getFonts(Slideshow);const FAQsListFonts=getFonts(FAQsList);const TextTickerFonts=getFonts(TextTicker);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={jvCw4IpzG:\"(max-width: 809px)\",n84tt9Kzy:\"(min-width: 1000px) and (max-width: 1599px)\",Ulru_24ch:\"(min-width: 810px) and (max-width: 999px)\",WQLkyLRf1:\"(min-width: 1600px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-A6T8L\";const variantClassNames={jvCw4IpzG:\"framer-v-nj0mn7\",n84tt9Kzy:\"framer-v-9ioxae\",Ulru_24ch:\"framer-v-1feqjcj\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:.1,mass:1,stiffness:116,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:500,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:500,x:0,y:0};const transition2={damping:30,delay:.2,mass:1,stiffness:116,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={damping:30,delay:.3,mass:1,stiffness:116,type:\"spring\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop-Small\":\"n84tt9Kzy\",\"Desktop-Wide\":\"WQLkyLRf1\",Phone:\"jvCw4IpzG\",Tablet:\"Ulru_24ch\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-A6T8L`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-A6T8L`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"DyDshmV3W\");const ref3=React.useRef(null);const elementId1=useRouteElementId(\"iOopVsPls\");const elementId2=useRouteElementId(\"EngqWxQIb\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"Ulru_24ch\",\"jvCw4IpzG\",\"n84tt9Kzy\"].includes(baseVariant))return false;return true;};const elementId3=useRouteElementId(\"Tr5celSqg\");const ref5=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"Ulru_24ch\",\"jvCw4IpzG\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if([\"Ulru_24ch\",\"jvCw4IpzG\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"jvCw4IpzG\")return false;return true;};const elementId4=useRouteElementId(\"fhFbl1kxY\");const ref6=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"Ulru_24ch\")return true;return false;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"Ulru_24ch\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"min(90vw, 900px)\",y:20},Ulru_24ch:{width:\"min(100vw, 697px)\",y:29}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"min(100vw, 900px)\",y:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2q3rns-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"kcR3MtLMz\"},Ulru_24ch:{variant:\"kcR3MtLMz\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"SEB3J04cq\",jqb75Nvff:\"e3cU_T_wy\",layoutId:\"SEB3J04cq\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"tuIzq1kD0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-67qgex\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k90wli\",\"data-framer-name\":\"Hero\",name:\"Hero\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__styleTransformEffectEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(0),pixelHeight:3985,pixelWidth:7800,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/0OQq2V3FELHlKASgZku8Z0rT6as.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/0OQq2V3FELHlKASgZku8Z0rT6as.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0OQq2V3FELHlKASgZku8Z0rT6as.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0OQq2V3FELHlKASgZku8Z0rT6as.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0OQq2V3FELHlKASgZku8Z0rT6as.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0OQq2V3FELHlKASgZku8Z0rT6as.jpg 7800w\"},style:{}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:-70,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-190}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(0),pixelHeight:4653,pixelWidth:8270,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/NnRI2fwQ15EEtndMuO2A0bxgk.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/NnRI2fwQ15EEtndMuO2A0bxgk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NnRI2fwQ15EEtndMuO2A0bxgk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NnRI2fwQ15EEtndMuO2A0bxgk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NnRI2fwQ15EEtndMuO2A0bxgk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NnRI2fwQ15EEtndMuO2A0bxgk.jpg 8270w\"},className:\"framer-19i89s5\",\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tdk418\",\"data-framer-name\":\"Text Container\",name:\"Text Container\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-m5rh52\",\"data-styles-preset\":\"hwFxtQiSW\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(160deg, var(--token-5e392320-6dc2-4ced-ada4-6b8aba2f2b33, rgb(255, 255, 255)) 66.90644266773134%, rgba(0, 0, 0, 0) 94.2195452108111%)\"},children:\"Ihr Projekt, unsere Leidenschaft.\"})})}),className:\"framer-zpq2ca\",\"data-framer-appear-id\":\"zpq2ca\",fonts:[\"Inter\"],id:elementId,initial:animation1,optimized:true,ref:ref3,style:{transformPerspective:500},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5hmt8u\",\"data-styles-preset\":\"LdRSkkClr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Mehr Sichtbarkeit, mehr Kunden, mehr Erfolg.\"})})}),className:\"framer-z7wfzx\",\"data-framer-appear-id\":\"z7wfzx\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:613},n84tt9Kzy:{y:542.216799091941}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:553,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-o5qlel-container\",\"data-framer-appear-id\":\"o5qlel\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"NsJgXj9Tu\",layoutId:\"NsJgXj9Tu\",style:{height:\"100%\"},TOooqBdJz:\"Gespr\\xe4ch Vereinbaren\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:\"https://calendar.app.google/pfbF9ksovFd5J7AD8\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(978.4335981838819),pixelHeight:1e3,pixelWidth:1600,sizes:\"100vw\",src:\"https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg\",srcSet:\"https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg 1600w\"}}},children:/*#__PURE__*/_jsx(\"section\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(1e3),pixelHeight:1e3,pixelWidth:1600,sizes:\"100vw\",src:\"https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg\",srcSet:\"https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg 1600w\"},className:\"framer-pmyxpx\",\"data-framer-name\":\"Section - Showreel\",id:elementId1,name:\"Section - Showreel\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-194lqnz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"60.231660231660236px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(132deg, var(--token-5e392320-6dc2-4ced-ada4-6b8aba2f2b33, rgb(255, 255, 255)) 11.682368062196925%, rgba(0, 0, 0, 0) 100%)\"},children:\"SHOWREEL\"})})}),style:{},viewBox:\"0 0 390 60\"}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:308,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}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(132deg, var(--token-5e392320-6dc2-4ced-ada4-6b8aba2f2b33, rgb(255, 255, 255)) 11.682368062196925%, rgba(0, 0, 0, 0) 100%)\"},children:\"SHOWREEL\"})})}),className:\"framer-9bvh77\",fonts:[\"GF;Syne-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",viewBox:\"0 0 518 80\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8d4d49\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__styleTransformEffectEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(1200),pixelHeight:1e3,pixelWidth:1600,sizes:\"max(max(100vw, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg\",srcSet:\"https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg 1600w\"},style:{}},n84tt9Kzy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(978.4335981838819),pixelHeight:1e3,pixelWidth:1600,sizes:\"max(max(100vw, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg\",srcSet:\"https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg 1600w\"}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:39,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:114,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}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(1e3),pixelHeight:1e3,pixelWidth:1600,sizes:\"max(max(100vw, 1px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg\",srcSet:\"https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg?scale-down-to=512 512w,https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BSkqmS9JtHrdoX5PIgjxlL3K30.svg 1600w\"},className:\"framer-tpvi5m\",\"data-framer-name\":\"Video Container\",name:\"Video Container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11mjogr-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tqjqznlBV\",isMixedBorderRadius:false,layoutId:\"tqjqznlBV\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://jakobzeise.com/assets/img/1080video.mov\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1by654a\",\"data-framer-name\":\"Section - Brands\",name:\"Section - Brands\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r0ct2r\",\"data-framer-name\":\"Container\",id:elementId2,name:\"Container\",ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Wir stehen fest an der Seite unserer gesch\\xe4tzten Partner\"})})},Ulru_24ch:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Wir stehen fest an der Seite unserer gesch\\xe4tzten Partner\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",children:\"Wir stehen fest an der Seite unserer gesch\\xe4tzten Partner\"})}),className:\"framer-3ogubq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17lizw5\",\"data-border\":true,\"data-framer-name\":\"Brand Logos\",name:\"Brand Logos\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wbqiut-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:.5,id:\"e611jfuvH\",layoutId:\"e611jfuvH\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"172px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j1s6if-container\",\"data-framer-name\":\"Tommy Babic Logo 1 \",name:\"Tommy Babic Logo 1 \",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"ChGhP9OTB\",KM7TcE55r:\"https://tommy-babic.de\",layoutId:\"ChGhP9OTB\",name:\"Tommy Babic Logo 1 \",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({src:\"https://framerusercontent.com/images/XMxspbCLkYtXIvcPD6kT1rbmzg.png\",srcSet:\"https://framerusercontent.com/images/XMxspbCLkYtXIvcPD6kT1rbmzg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XMxspbCLkYtXIvcPD6kT1rbmzg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XMxspbCLkYtXIvcPD6kT1rbmzg.png 1598w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"172px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2kxq01-container\",\"data-framer-name\":\"Schreinerei Klein Logo 2\",name:\"Schreinerei Klein Logo 2\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"qCNvB_JcK\",KM7TcE55r:\"https://www.schreinerei-rodgau.de/\",layoutId:\"qCNvB_JcK\",name:\"Schreinerei Klein Logo 2\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({src:\"https://framerusercontent.com/images/Yu01KHwkc04x2ph7xautDlcd61g.png\",srcSet:\"https://framerusercontent.com/images/Yu01KHwkc04x2ph7xautDlcd61g.png?scale-down-to=512 512w,https://framerusercontent.com/images/Yu01KHwkc04x2ph7xautDlcd61g.png 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"172px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l6brr4-container\",\"data-framer-name\":\"W.Fels Logo 1\",name:\"W.Fels Logo 1\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"hC4D9XvuV\",KM7TcE55r:\"https://www.brandschutzberatung-paul.de\",layoutId:\"hC4D9XvuV\",name:\"W.Fels Logo 1\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({positionX:\"94.2%\",positionY:\"48.4%\",src:\"https://framerusercontent.com/images/pgJJVbylQ7DETAiew6kmVF5X8E.png\",srcSet:\"https://framerusercontent.com/images/pgJJVbylQ7DETAiew6kmVF5X8E.png?scale-down-to=512 512w,https://framerusercontent.com/images/pgJJVbylQ7DETAiew6kmVF5X8E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pgJJVbylQ7DETAiew6kmVF5X8E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pgJJVbylQ7DETAiew6kmVF5X8E.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/pgJJVbylQ7DETAiew6kmVF5X8E.png 7469w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"172px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-daoe2g-container\",\"data-framer-name\":\"Storchgefl\\xfcster Logo 1\",name:\"Storchgefl\\xfcster Logo 1\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"bDO8dFRtC\",KM7TcE55r:\"https://xn--storchgeflster-psb.de/\",layoutId:\"bDO8dFRtC\",name:\"Storchgefl\\xfcster Logo 1\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({src:\"https://framerusercontent.com/images/12LJs4J9nJFebpQwzzS1Ubuy4.png\",srcSet:\"https://framerusercontent.com/images/12LJs4J9nJFebpQwzzS1Ubuy4.png?scale-down-to=512 512w,https://framerusercontent.com/images/12LJs4J9nJFebpQwzzS1Ubuy4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/12LJs4J9nJFebpQwzzS1Ubuy4.png 1454w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"172px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2kxq01-container\",\"data-framer-name\":\"Schreinerei Klein Logo 2\",name:\"Schreinerei Klein Logo 2\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"qCNvB_JcK\",KM7TcE55r:\"https://www.schreinerei-rodgau.de/\",layoutId:\"qCNvB_JcK\",name:\"Schreinerei Klein Logo 2\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({src:\"https://framerusercontent.com/images/Yu01KHwkc04x2ph7xautDlcd61g.png\",srcSet:\"https://framerusercontent.com/images/Yu01KHwkc04x2ph7xautDlcd61g.png?scale-down-to=512 512w,https://framerusercontent.com/images/Yu01KHwkc04x2ph7xautDlcd61g.png 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"172px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ttun3k-container\",\"data-framer-name\":\"Tommy Babic Logo 2\",name:\"Tommy Babic Logo 2\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"OhVlO6Bfc\",KM7TcE55r:\"https://tommy-babic.de\",layoutId:\"OhVlO6Bfc\",name:\"Tommy Babic Logo 2\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({src:\"https://framerusercontent.com/images/ilePhwMqQtMlOnS8sBHQ6zseu8.png\",srcSet:\"https://framerusercontent.com/images/ilePhwMqQtMlOnS8sBHQ6zseu8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ilePhwMqQtMlOnS8sBHQ6zseu8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ilePhwMqQtMlOnS8sBHQ6zseu8.png 1580w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"172px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3leb33-container\",\"data-framer-name\":\"W.Fels Logo 3\",name:\"W.Fels Logo 3\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"SI5tIKJ0f\",KM7TcE55r:\"https://www.w-fels.de/en/\",layoutId:\"SI5tIKJ0f\",name:\"W.Fels Logo 3\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({src:\"https://framerusercontent.com/images/tfr1FHY1oIJF7cvaEpzJ73LSlBc.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"172px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yfaxs9-container\",\"data-framer-name\":\"Schreinerei Klein Logo 3\",name:\"Schreinerei Klein Logo 3\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"OnOBicDTp\",KM7TcE55r:\"https://www.schreinerei-rodgau.de/\",layoutId:\"OnOBicDTp\",name:\"Schreinerei Klein Logo 3\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({src:\"https://framerusercontent.com/images/Yu01KHwkc04x2ph7xautDlcd61g.png\",srcSet:\"https://framerusercontent.com/images/Yu01KHwkc04x2ph7xautDlcd61g.png?scale-down-to=512 512w,https://framerusercontent.com/images/Yu01KHwkc04x2ph7xautDlcd61g.png 600w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"172px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xnhgy1-container\",\"data-framer-name\":\"Storchgefl\\xfcster Logo 3\",name:\"Storchgefl\\xfcster Logo 3\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"O0pDrTGRT\",KM7TcE55r:\"https://www.brandschutzberatung-paul.de\",layoutId:\"O0pDrTGRT\",name:\"Storchgefl\\xfcster Logo 3\",style:{height:\"100%\",width:\"100%\"},variant:\"NzbgiJYlF\",width:\"100%\",XuQs49rUl:addImageAlt({src:\"https://framerusercontent.com/images/P5qRBSqerVZhGgSLcaoZ3W4fU.png\",srcSet:\"https://framerusercontent.com/images/P5qRBSqerVZhGgSLcaoZ3W4fU.png?scale-down-to=512 512w,https://framerusercontent.com/images/P5qRBSqerVZhGgSLcaoZ3W4fU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P5qRBSqerVZhGgSLcaoZ3W4fU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P5qRBSqerVZhGgSLcaoZ3W4fU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/P5qRBSqerVZhGgSLcaoZ3W4fU.png 7143w\"},\"\")})})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-11nwzl0 hidden-1feqjcj hidden-nj0mn7 hidden-9ioxae\",\"data-framer-name\":\"Section - Featured Works\",id:elementId3,name:\"Section - Featured Works\",ref:ref5}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1njt9bz\",\"data-framer-name\":\"Section - Services\",name:\"Section - Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aifs48\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hlg232\",\"data-framer-name\":\"Heading & Button Wrapper\",name:\"Heading & Button Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sidsiw\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Von der Idee bis zur Fertigstellung: Wir haben alles im Griff!\"})})},Ulru_24ch:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Von der Idee bis zur Fertigstellung: \",/*#__PURE__*/_jsx(\"br\",{}),\"Wir haben alles im Griff!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\"},children:\"Von der Idee bis zur Fertigstellung: Wir haben alles im Griff!\"})}),className:\"framer-1frktne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ptbAO3Sf0\"},implicitPathVariables:undefined},{href:{webPageId:\"ptbAO3Sf0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{y:3545.633598183882}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:3582.2,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1sxumgu-container hidden-1feqjcj hidden-nj0mn7\",\"data-framer-appear-id\":\"1sxumgu\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{ZnDHBgfGk:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"iFmBGzugw\",layoutId:\"iFmBGzugw\",style:{height:\"100%\"},TOooqBdJz:\"Dienstleistungen entdecken\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks[0]})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-34f65t\",\"data-framer-name\":\"Content Wrapper\",name:\"Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"calc(min(max(100vw, 1px), 1900px) - 40px)\",y:2664.3999999999996},n84tt9Kzy:{width:\"max((min(max(100vw, 1px), 1900px) - 133px) / 1.5, 1px)\",y:2509.633598183882},Ulru_24ch:{width:\"calc(min(max(100vw, 1px), 1900px) - 100px)\",y:2624.3999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:\"max((min(max(100vw, 1px), 1900px) - 110px) / 1.5, 1px)\",y:2546.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fon78w-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"i3OUhIoZi\"},Ulru_24ch:{variant:\"i3OUhIoZi\"}},children:/*#__PURE__*/_jsx(HomepageService,{DFIDx_49F:addImageAlt({src:\"https://framerusercontent.com/images/Ie9ARBxpd5u7IQlwit0qH23r5JI.jpg?scale-down-to=512\"},\"\"),height:\"100%\",I43n4JqNq:\"\u2022 Planung \\n\u2022 Budgetierung\\n\u2022 Terminierung\",i5O03YodR:\"Gemeinsam entwickeln wir eine klare Vision und planen zielgerichtet, wie Ihre Botschaft strategisch umgesetzt wird, um maximale Wirkung zu erzielen.\",id:\"fy_R6euVx\",layoutId:\"fy_R6euVx\",style:{width:\"100%\"},variant:\"M4x0ZduiV\",wfGtFKOCx:\"Konzeptionierung\",width:\"100%\",YEq393da6:\"\u2022 Unternehmensanalyse\\n\u2022 Zielgruppendefinition                      \\n\u2022 Produktionsvorbereitung\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"calc(min(max(100vw, 1px), 1900px) - 40px)\",y:3027.3999999999996},n84tt9Kzy:{width:\"max((min(max(100vw, 1px), 1900px) - 133px) / 1.5, 1px)\",y:2888.633598183882},Ulru_24ch:{width:\"calc(min(max(100vw, 1px), 1900px) - 100px)\",y:3003.3999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:\"max((min(max(100vw, 1px), 1900px) - 110px) / 1.5, 1px)\",y:2925.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16wtvv2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"i3OUhIoZi\"},Ulru_24ch:{variant:\"i3OUhIoZi\"}},children:/*#__PURE__*/_jsx(HomepageService,{DFIDx_49F:addImageAlt({src:\"https://framerusercontent.com/images/ayAcEMvjlSidVhk6XZISahgNPT4.jpg?scale-down-to=512\"},\"\"),height:\"100%\",I43n4JqNq:\"\u2022 Multi-Kamera-Setup\\n\u2022 Tonaufnahme\\n\u2022 B-Roll\",i5O03YodR:\"Wir setzen Ihre Strategie effizient und professionell in Szene \u2013 mit einem Fokus auf Qualit\\xe4t und Ihren langfristigen Erfolg.\",id:\"lxdI7oWuy\",layoutId:\"lxdI7oWuy\",style:{width:\"100%\"},variant:\"M4x0ZduiV\",wfGtFKOCx:\"Produktion\",width:\"100%\",YEq393da6:\"\u2022 Produktionsplanung \\n\u2022 Studeoaufbau \\n\u2022 Interview\\n\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"calc(min(max(100vw, 1px), 1900px) - 40px)\",y:3390.3999999999996},n84tt9Kzy:{width:\"max((min(max(100vw, 1px), 1900px) - 133px) / 1.5, 1px)\",y:3267.633598183882},Ulru_24ch:{width:\"calc(min(max(100vw, 1px), 1900px) - 100px)\",y:3382.3999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,width:\"max((min(max(100vw, 1px), 1900px) - 110px) / 1.5, 1px)\",y:3304.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12tfq2x-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"i3OUhIoZi\",YEq393da6:\"\u2022 Color Grading\\n\u2022 Audio Enhancement\\n\u2022 3D Animation and CGI\\n\u2022 Subtitles and Closed Captions\"},Ulru_24ch:{variant:\"i3OUhIoZi\",YEq393da6:\"\u2022 Color Grading\\n\u2022 Audio Enhancement\\n\u2022 3D Animation and CGI\\n\u2022 Subtitles and Closed Captions\"}},children:/*#__PURE__*/_jsx(HomepageService,{DFIDx_49F:addImageAlt({src:\"https://framerusercontent.com/images/1JkWPm5auoOB4ITCUBN49QpWI.jpg?scale-down-to=512\"},\"\"),height:\"100%\",I43n4JqNq:\"\u2022 Archivierung und Sicherung\\n\u2022 Untertietel\",i5O03YodR:\"Im finalen Schritt bringen wir Ihre Botschaft auf den Punkt und stellen sicher, dass sie perfekt bei Ihrer Zielgruppe ankommt.\",id:\"udDLWzpXN\",layoutId:\"udDLWzpXN\",style:{width:\"100%\"},variant:\"M4x0ZduiV\",wfGtFKOCx:\"Nachproduktion\",width:\"100%\",YEq393da6:\"\u2022 Videobearbeitung\\n\u2022 Farbkorrektur\\n\u2022 Audio-Verbesserung\\n\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(2624.8),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw, 1px), 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},n84tt9Kzy:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(2409.6335981838824),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw, 1px), 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(2643.8),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw, 1px), 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(2446.2000000000003),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw, 1px), 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"},className:\"framer-1q3jyqo\",\"data-framer-name\":\"Lines\",name:\"Lines\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v94nxb hidden-72rtr7 hidden-9ioxae\",\"data-framer-name\":\"Button Wrapper\",name:\"Button Wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ptbAO3Sf0\"},implicitPathVariables:undefined},{href:{webPageId:\"ptbAO3Sf0\"},implicitPathVariables:undefined},{href:{webPageId:\"ptbAO3Sf0\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:3803.3999999999996},Ulru_24ch:{y:3800.3999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lfc2jh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{TOooqBdJz:\"Dienstleistungen entdecken\",ZnDHBgfGk:resolvedLinks1[2]},Ulru_24ch:{TOooqBdJz:\"Dienstleistungen entdecken\",ZnDHBgfGk:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"buYf3lxci\",layoutId:\"buYf3lxci\",style:{height:\"100%\"},TOooqBdJz:\"Explore Services\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks1[0]})})})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-vp0t6\",\"data-framer-name\":\"Section - About\",name:\"Section - About\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(3986.3999999999996),pixelHeight:1e3,pixelWidth:1600,sizes:\"min(100vw - 40px, 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},n84tt9Kzy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(3815.633598183882),pixelHeight:1e3,pixelWidth:1600,sizes:\"min(max(100vw - 100px, 1px), 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(4100.4),pixelHeight:1e3,pixelWidth:1600,sizes:\"min(100vw - 100px, 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}}},children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(3852.2),pixelHeight:1e3,pixelWidth:1600,sizes:\"min(max(100vw - 100px, 1px), 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"},className:\"framer-1tvmwk8\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ew78uf\",\"data-framer-name\":\"Heading & Button Wrapper\",name:\"Heading & Button Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kfxfdo\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\"},children:\"\\xdcber uns\"})}),className:\"framer-1mcr5tu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QpEmbOgYl\"},implicitPathVariables:undefined},{href:{webPageId:\"QpEmbOgYl\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{y:4445.633598183882}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:4483.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-phqa0q-container hidden-1feqjcj hidden-nj0mn7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{ZnDHBgfGk:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"rXAxb2zy_\",layoutId:\"rXAxb2zy_\",style:{height:\"100%\"},TOooqBdJz:\"mehr \\xfcber uns\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks2[0]})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1elop9c\",\"data-framer-name\":\"Content Wrapper\",name:\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ka3fvj\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-czlv7g\",\"data-styles-preset\":\"Kk8d6B9MK\",style:{\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Begonnen hat alles mit einer Leidenschaft f\\xfcr Film und Kamera. \\xdcber die Jahre haben wir verschiedenste Arten von Videoproduktionen umgesetzt, dabei wertvolle Erfahrungen gesammelt und durchweg positives Feedback von unseren Kunden erhalten. \"})})}),className:\"framer-5jrpzl\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5hmt8u\",\"data-styles-preset\":\"LdRSkkClr\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\"},children:\"Unser Fokus liegt darauf, Ihre Zielgruppe und Ihre Bed\\xfcrfnisse genau zu verstehen. So entwickeln wir gezielte Inhalte, die nicht nur \\xfcberzeugen, sondern auch bei Ihren Kunden den gr\\xf6\\xdftm\\xf6glichen Erfolg erzielen.\"})}),className:\"framer-9tgoif\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lluglm\",\"data-framer-name\":\"Stats\",name:\"Stats\",children:[isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16766wg hidden-nj0mn7\",\"data-framer-name\":\"Divider\",name:\"Divider\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rtfm2z\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-109ifhl\",style:{rotate:90}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4um65g\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-atkhar-container\",children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"IZhAZFMeJ\",layoutId:\"IZhAZFMeJ\",MhNn3yIfK:\"Jahre Erfahrung\",style:{width:\"100%\"},width:\"100%\",YFmiRXhkK:\"6+\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fdhp9o-container\",children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"jIW3Ckqt2\",layoutId:\"jIW3Ckqt2\",MhNn3yIfK:\"Wiederkehrende Kunden\",style:{width:\"100%\"},width:\"100%\",YFmiRXhkK:\"14\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6hjo89\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9g9ehv-container\",children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"LW42U_KmR\",layoutId:\"LW42U_KmR\",MhNn3yIfK:\"Abgeschlossene Projekte\",style:{width:\"100%\"},width:\"100%\",YFmiRXhkK:\"71\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l1ee6d-container\",children:/*#__PURE__*/_jsx(Stats,{height:\"100%\",id:\"JvksWKHDX\",layoutId:\"JvksWKHDX\",MhNn3yIfK:\"Zufriedene Kunden\",style:{width:\"100%\"},width:\"100%\",YFmiRXhkK:\"29\"})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(4005.4303092783503),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 40px, 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},n84tt9Kzy:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(3817.076897152954),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw - 100px, 1px), 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(3953.4529896907216),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 100px, 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(3853.645360824742),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw - 100px, 1px), 1900px)\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"},className:\"framer-1escmz5\",\"data-framer-name\":\"Lines\",name:\"Lines\"})})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-on2t17 hidden-72rtr7 hidden-9ioxae\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QpEmbOgYl\"},implicitPathVariables:undefined},{href:{webPageId:\"QpEmbOgYl\"},implicitPathVariables:undefined},{href:{webPageId:\"QpEmbOgYl\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:4961.099999999999},Ulru_24ch:{y:4612.599999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wiptbm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{TOooqBdJz:\"mehr \\xfcber uns\",ZnDHBgfGk:resolvedLinks3[2]},Ulru_24ch:{TOooqBdJz:\"mehr \\xfcber uns\",ZnDHBgfGk:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonGradient,{height:\"100%\",id:\"fASyBBscD\",layoutId:\"fASyBBscD\",style:{height:\"100%\"},TOooqBdJz:\"Know More About Us\",variant:\"iBTvWsen7\",width:\"100%\",ZnDHBgfGk:resolvedLinks3[0]})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-phqhrl\",\"data-framer-name\":\"Section - Testimonials\",id:elementId4,name:\"Section - Testimonials\",ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y84vql\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19l2jum\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n84tt9Kzy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Unsere Kundenbewertungen: Geschichten, die \",/*#__PURE__*/_jsx(\"br\",{}),\"uns zum L\\xe4cheln bringen!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unsere Kundenbewertungen: Geschichten, die uns zum L\\xe4cheln bringen!\"})}),className:\"framer-1cgsczk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yi5pz6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{arrowOptions:{arrowFill:\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\",arrowGap:10,arrowPadding:-6,arrowPaddingBottom:40,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:-118,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:35,showMouseControls:true},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\",arrowGap:10,arrowPadding:-40,arrowPaddingBottom:40,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:-118,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:65,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.8},fadeOptions:{fadeAlpha:1,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:50,height:\"100%\",id:\"h9Oi0w9SE\",intervalControl:2.5,itemAmount:1,layoutId:\"h9Oi0w9SE\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:0,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:684,width:\"921px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14ljqfu-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"ltyw3PSDC\",layoutId:\"ltyw3PSDC\",style:{width:\"100%\"},TYrIC1xIe:addImageAlt({src:\"https://framerusercontent.com/images/x2WC82LNDVy0tl8hc1PAdwh7f0.png\"},\"\"),variant:\"dizu1qwCu\",width:\"100%\",XQebMLGjf:\"Wolfgang Fels GmbH\",xWK1trTmf:\"Timo Wolfsdorf\",zid21k45x:\"Ich hatte das Vergn\\xfcgen, mit Zeise Productions f\\xfcr die Bearbeitung meiner Videos zusammenzuarbeiten, und das Ergebnis war absolut beeindruckend! Sie haben nicht nur ein au\\xdfergew\\xf6hnliches Auge f\\xfcr Details, sondern verstehen es auch, die Vision ihrer Kunden perfekt umzusetzen. Jede Anforderung wurde nicht nur erf\\xfcllt, sondern \\xfcbertroffen, und das Endprodukt hat meine Erwartungen bei weitem \\xfcberschritten. Die Kommunikation war durchwegs professionell und angenehm, und alle Fristen wurden zuverl\\xe4ssig eingehalten. Ich bin \\xfcberzeugt, dass Julius Zeise mit seiner Expertise und Kreativit\\xe4t jedes Projekt zum Erfolg f\\xfchrt. F\\xfcr alle, die hochwertige Videobearbeitung suchen, kann ich w\\xe4rmstens empfehlen.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:684,width:\"921px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sapyol-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{height:\"100%\",id:\"ZJqsOIdTb\",layoutId:\"ZJqsOIdTb\",style:{width:\"100%\"},TYrIC1xIe:addImageAlt({src:\"https://framerusercontent.com/images/Wd8pNPLjmACqM58d1MnA1pNgbpA.png\",srcSet:\"https://framerusercontent.com/images/Wd8pNPLjmACqM58d1MnA1pNgbpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wd8pNPLjmACqM58d1MnA1pNgbpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wd8pNPLjmACqM58d1MnA1pNgbpA.png 1600w\"},\"\"),variant:\"dizu1qwCu\",width:\"100%\",XQebMLGjf:\"TOMMY BABIC AKADEMIE\",xWK1trTmf:\" Tommy Babic\",zid21k45x:\"Ich kann Zeise Foto & Videoproduktion mit absoluter \\xdcberzeugung weiterempfehlen. 5 Sterne reichen nicht. Ich habe schon mit einigen Videographen gearbeitet aber was Julius innerhalb kurzer Zeit da gezaubert hat, hat mich wirklich sehr zum Staunen gebracht - meine Erwartungen wurden bei weitem \\xfcbertroffen. Ich habe bisher noch nicht erlebt, dass meine hohen Anforderungen so schnell und hochqualitativ umgesetzt wurden. Einfach nur gro\\xdfartig und mein gr\\xf6\\xdfter Respekt f\\xfcr diese kreative Gabe und Umsetzungsf\\xe4higkeit.\"})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-zlk57z\",\"data-framer-name\":\"Section - FAQ\",name:\"Section - FAQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(6575.9734375),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},n84tt9Kzy:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(5974.182482112454),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(6450.1890625),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1e3,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(6056.794642857143),pixelHeight:1e3,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg\",srcSet:\"https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UBfETRmMWvNW1BI0VHLyvTjbH4k.svg 1600w\"},className:\"framer-w4v4rp\",\"data-framer-name\":\"Lines\",name:\"Lines\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qyez4u\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h1hbub\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Ihre Fragen, \",/*#__PURE__*/_jsx(\"br\",{}),\"unsere Antworten\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ihre Fragen, unsere Antworten\"})}),className:\"framer-1359de2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14mwgt0\",\"data-framer-name\":\"FAQs\",name:\"FAQs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{width:\"min(min(max(100vw - 40px, 1px), 1900px), 800px)\",y:6688.799999999999},n84tt9Kzy:{y:6085.033598183882},Ulru_24ch:{y:6591.999999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:506,width:\"min(min(max(100vw - 100px, 1px), 1900px), 800px)\",y:6208.599999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-162hcs-container\",children:/*#__PURE__*/_jsx(FAQsList,{height:\"100%\",id:\"nYEdH2edU\",layoutId:\"nYEdH2edU\",style:{width:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1l2ug5s\",\"data-framer-name\":\"Section - Ticker\",name:\"Section - Ticker\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pqc17d-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"ID8qRuHdt\",layoutId:\"ID8qRuHdt\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cccp68-container\",children:/*#__PURE__*/_jsx(TextTicker,{height:\"100%\",id:\"ti8gJgtym\",layoutId:\"ti8gJgtym\",style:{height:\"100%\"},tk2y4tls5:\"VFX\",U2e7Gf6zT:addImageAlt({src:\"https://framerusercontent.com/images/IpieEjmSpp5vgmlJIapNIh3bo.jpg?scale-down-to=512\"},\"\"),variant:\"txSfsdm97\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11a54i8-container\",children:/*#__PURE__*/_jsx(TextTicker,{height:\"100%\",id:\"PjY6rXNDy\",layoutId:\"PjY6rXNDy\",style:{height:\"100%\"},tk2y4tls5:\"Filmen \",U2e7Gf6zT:addImageAlt({src:\"https://framerusercontent.com/images/qqRmS237jwCRyF1LIq7uoegB6M.jpg?scale-down-to=512\"},\"\"),variant:\"txSfsdm97\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gbj2v3-container\",children:/*#__PURE__*/_jsx(TextTicker,{height:\"100%\",id:\"lhpJGdbVZ\",layoutId:\"lhpJGdbVZ\",style:{height:\"100%\"},tk2y4tls5:\"Konzeptionierung\",U2e7Gf6zT:addImageAlt({src:\"https://framerusercontent.com/images/6h961wxsJC6SFMc21aEUuC54tk.jpg?scale-down-to=512\"},\"\"),variant:\"txSfsdm97\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-li3l4b-container\",children:/*#__PURE__*/_jsx(TextTicker,{height:\"100%\",id:\"NpuAbx9td\",layoutId:\"NpuAbx9td\",style:{height:\"100%\"},tk2y4tls5:\"Sound Design\",U2e7Gf6zT:addImageAlt({src:\"https://framerusercontent.com/images/39BkmmPEXjI1pMNFf0OgfsXpw.jpg?scale-down-to=512\"},\"\"),variant:\"txSfsdm97\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-phy7ny-container\",children:/*#__PURE__*/_jsx(TextTicker,{height:\"100%\",id:\"jGGXxffhs\",layoutId:\"jGGXxffhs\",style:{height:\"100%\"},tk2y4tls5:\"Color Grading\",U2e7Gf6zT:addImageAlt({src:\"https://framerusercontent.com/images/DIHLauyWfO7PgBnTGaGk7DvdAGg.jpg?scale-down-to=512\"},\"\"),variant:\"txSfsdm97\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pptsnb-container\",children:/*#__PURE__*/_jsx(TextTicker,{height:\"100%\",id:\"xUW2vnrvt\",layoutId:\"xUW2vnrvt\",style:{height:\"100%\"},tk2y4tls5:\"Motion Graphics\",U2e7Gf6zT:addImageAlt({src:\"https://framerusercontent.com/images/C0ur83FTmqvdunC1IT8aOj9Z2kU.jpg?scale-down-to=512\"},\"\"),variant:\"txSfsdm97\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{height:685,width:\"810px\",y:7446.999999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g8s0yb-container hidden-72rtr7 hidden-nj0mn7 hidden-9ioxae\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{tMfukRFdC:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"n94mVTeep\",layoutId:\"n94mVTeep\",style:{width:\"100%\"},tMfukRFdC:resolvedLinks4[0],variant:\"s9UjOoml4\",width:\"100%\"})})})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{y:7544.799999999999},n84tt9Kzy:{y:6899.033598183882}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:685,width:\"100vw\",y:7063.599999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hdftsa-container hidden-1feqjcj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{tMfukRFdC:resolvedLinks5[1],variant:\"uxlAHBS0R\"},n84tt9Kzy:{tMfukRFdC:resolvedLinks5[2],variant:\"s9UjOoml4\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"kpiTZXpmv\",layoutId:\"kpiTZXpmv\",style:{width:\"100%\"},tMfukRFdC:resolvedLinks5[0],variant:\"ySSbzNqEC\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7k2242-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ygo08C7iU\",intensity:15,layoutId:\"ygo08C7iU\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-A6T8L { background: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)); }`,\".framer-A6T8L.framer-lux5qc, .framer-A6T8L .framer-lux5qc { display: block; }\",\".framer-A6T8L.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1600px; }\",\".framer-A6T8L .framer-2q3rns-container { flex: none; height: auto; left: 50%; max-width: 900px; position: fixed; top: 30px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-A6T8L .framer-67qgex { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-1k90wli { align-content: center; align-items: center; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px 50px 0px 50px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-A6T8L .framer-19i89s5 { -webkit-filter: brightness(0.6) contrast(0.93); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; filter: brightness(0.6) contrast(0.93); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-A6T8L .framer-1tdk418 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-zpq2ca { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1132px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-A6T8L .framer-z7wfzx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-A6T8L .framer-o5qlel-container, .framer-A6T8L .framer-1lfc2jh-container, .framer-A6T8L .framer-phqa0q-container, .framer-A6T8L .framer-wiptbm-container { flex: none; height: 60px; position: relative; width: auto; }\",\".framer-A6T8L .framer-pmyxpx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 108vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-194lqnz { align-content: center; align-items: center; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: visible; padding: 20px; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-A6T8L .framer-9bvh77 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; white-space: pre; z-index: 2; }\",\".framer-A6T8L .framer-8d4d49 { background: linear-gradient(180deg, rgba(13, 13, 13, 0) 26.775956284153008%, rgb(13, 13, 13) 100%); flex: none; height: 134px; left: calc(50.00000000000002% - 100% / 2); overflow: visible; pointer-events: none; position: absolute; top: -133px; width: 100%; z-index: 1; }\",\".framer-A6T8L .framer-tpvi5m { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 4; }\",\".framer-A6T8L .framer-11mjogr-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-A6T8L .framer-1by654a { align-content: center; align-items: center; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 89px 50px 89px 50px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-r0ct2r { align-content: center; align-items: center; display: flex; flex: 1.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-A6T8L .framer-3ogubq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 78%; word-break: break-word; word-wrap: break-word; }\",\".framer-A6T8L .framer-17lizw5 { --border-bottom-width: 1px; --border-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(19px); align-content: center; align-items: center; backdrop-filter: blur(19px); border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-A6T8L .framer-1wbqiut-container { flex: none; height: 88px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-1j1s6if-container, .framer-A6T8L .framer-2kxq01-container, .framer-A6T8L .framer-1l6brr4-container, .framer-A6T8L .framer-daoe2g-container, .framer-A6T8L .framer-1ttun3k-container, .framer-A6T8L .framer-3leb33-container, .framer-A6T8L .framer-yfaxs9-container, .framer-A6T8L .framer-xnhgy1-container { height: 88px; position: relative; width: 172px; }\",\".framer-A6T8L .framer-11nwzl0 { align-content: flex-start; align-items: flex-start; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1.5vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-1njt9bz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-aifs48 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1900px; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 1px; z-index: 1; }\",\".framer-A6T8L .framer-1hlg232 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; mix-blend-mode: difference; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 1px; z-index: 4; }\",\".framer-A6T8L .framer-sidsiw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; mix-blend-mode: difference; overflow: visible; padding: 0px 0px 110px 0px; position: sticky; top: 100px; width: 100%; will-change: transform; z-index: 6; }\",\".framer-A6T8L .framer-1frktne, .framer-A6T8L .framer-1cgsczk, .framer-A6T8L .framer-1359de2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-A6T8L .framer-1sxumgu-container { flex: none; height: 60px; position: relative; width: auto; z-index: 9; }\",\".framer-A6T8L .framer-34f65t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-A6T8L .framer-1fon78w-container, .framer-A6T8L .framer-16wtvv2-container, .framer-A6T8L .framer-12tfq2x-container, .framer-A6T8L .framer-162hcs-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-A6T8L .framer-1q3jyqo { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: -1; }\",\".framer-A6T8L .framer-1v94nxb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 40px 0px; position: relative; width: 1px; z-index: 6; }\",\".framer-A6T8L .framer-vp0t6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-1tvmwk8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1900px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 6; }\",\".framer-A6T8L .framer-1ew78uf { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 1px; z-index: 5; }\",\".framer-A6T8L .framer-kfxfdo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 110px 0px; position: sticky; top: 100px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-A6T8L .framer-1mcr5tu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-A6T8L .framer-1elop9c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 79px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-A6T8L .framer-ka3fvj { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-5jrpzl, .framer-A6T8L .framer-9tgoif { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-A6T8L .framer-1lluglm { 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; position: relative; width: 80%; }\",\".framer-A6T8L .framer-16766wg { flex: none; height: 109px; left: calc(50.00000000000002% - 109px / 2); opacity: 0.12; overflow: hidden; position: absolute; top: calc(50.18450184501847% - 109px / 2); width: 109px; z-index: 1; }\",\".framer-A6T8L .framer-1rtfm2z, .framer-A6T8L .framer-109ifhl { background: linear-gradient(180deg, #000000 0%, hsl(0, 0%, 100%) 49.549549549549546%, rgba(255, 255, 255, 0) 100%); bottom: 0px; flex: none; left: calc(50.45871559633029% - 2px / 2); overflow: hidden; position: absolute; top: 0px; width: 2px; }\",\".framer-A6T8L .framer-4um65g, .framer-A6T8L .framer-6hjo89 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-atkhar-container, .framer-A6T8L .framer-1fdhp9o-container, .framer-A6T8L .framer-9g9ehv-container, .framer-A6T8L .framer-l1ee6d-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-A6T8L .framer-1escmz5 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.20618556701033% - 100% / 2); width: 100%; z-index: -1; }\",\".framer-A6T8L .framer-on2t17 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 117px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 6; }\",\".framer-A6T8L .framer-phqhrl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 114px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 267px 50px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-A6T8L .framer-y84vql { background-color: #0d0d0d; flex: none; height: 1924px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-A6T8L .framer-19l2jum { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1900px; mix-blend-mode: difference; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; z-index: 0; }\",\".framer-A6T8L .framer-1yi5pz6-container { flex: none; height: 879px; max-width: 1900px; position: relative; width: 80%; z-index: 1; }\",\".framer-A6T8L .framer-14ljqfu-container, .framer-A6T8L .framer-sapyol-container { height: auto; position: relative; width: 921px; }\",\".framer-A6T8L .framer-zlk57z { align-content: center; align-items: center; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #0d0d0d); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 49px 50px 49px 50px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-w4v4rp { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 99.88839285714286% / 2); width: 100%; z-index: 0; }\",\".framer-A6T8L .framer-qyez4u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1900px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 5; }\",\".framer-A6T8L .framer-h1hbub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1900px; mix-blend-mode: difference; overflow: hidden; padding: 0px; position: relative; width: 50%; z-index: 6; }\",\".framer-A6T8L .framer-14mwgt0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-1l2ug5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-A6T8L .framer-pqc17d-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-A6T8L .framer-cccp68-container, .framer-A6T8L .framer-11a54i8-container, .framer-A6T8L .framer-gbj2v3-container, .framer-A6T8L .framer-li3l4b-container, .framer-A6T8L .framer-phy7ny-container, .framer-A6T8L .framer-pptsnb-container { height: 86px; position: relative; width: auto; }\",\".framer-A6T8L .framer-g8s0yb-container { flex: none; height: auto; position: relative; width: 810px; z-index: 9; }\",\".framer-A6T8L .framer-hdftsa-container { flex: none; height: auto; position: relative; width: 100%; z-index: 9; }\",\".framer-A6T8L .framer-7k2242-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-A6T8L.framer-72rtr7, .framer-A6T8L .framer-67qgex, .framer-A6T8L .framer-1k90wli, .framer-A6T8L .framer-1tdk418, .framer-A6T8L .framer-pmyxpx, .framer-A6T8L .framer-194lqnz, .framer-A6T8L .framer-tpvi5m, .framer-A6T8L .framer-1by654a, .framer-A6T8L .framer-r0ct2r, .framer-A6T8L .framer-17lizw5, .framer-A6T8L .framer-11nwzl0, .framer-A6T8L .framer-1njt9bz, .framer-A6T8L .framer-aifs48, .framer-A6T8L .framer-sidsiw, .framer-A6T8L .framer-34f65t, .framer-A6T8L .framer-1v94nxb, .framer-A6T8L .framer-vp0t6, .framer-A6T8L .framer-1tvmwk8, .framer-A6T8L .framer-kfxfdo, .framer-A6T8L .framer-1elop9c, .framer-A6T8L .framer-ka3fvj, .framer-A6T8L .framer-1lluglm, .framer-A6T8L .framer-4um65g, .framer-A6T8L .framer-6hjo89, .framer-A6T8L .framer-on2t17, .framer-A6T8L .framer-phqhrl, .framer-A6T8L .framer-19l2jum, .framer-A6T8L .framer-zlk57z, .framer-A6T8L .framer-qyez4u, .framer-A6T8L .framer-h1hbub, .framer-A6T8L .framer-14mwgt0, .framer-A6T8L .framer-1l2ug5s { gap: 0px; } .framer-A6T8L.framer-72rtr7 > *, .framer-A6T8L .framer-67qgex > *, .framer-A6T8L .framer-1lluglm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-A6T8L.framer-72rtr7 > :first-child, .framer-A6T8L .framer-67qgex > :first-child, .framer-A6T8L .framer-1k90wli > :first-child, .framer-A6T8L .framer-1tdk418 > :first-child, .framer-A6T8L .framer-r0ct2r > :first-child, .framer-A6T8L .framer-sidsiw > :first-child, .framer-A6T8L .framer-34f65t > :first-child, .framer-A6T8L .framer-1elop9c > :first-child, .framer-A6T8L .framer-ka3fvj > :first-child, .framer-A6T8L .framer-1lluglm > :first-child, .framer-A6T8L .framer-phqhrl > :first-child, .framer-A6T8L .framer-19l2jum > :first-child, .framer-A6T8L .framer-qyez4u > :first-child, .framer-A6T8L .framer-h1hbub > :first-child, .framer-A6T8L .framer-14mwgt0 > :first-child { margin-top: 0px; } .framer-A6T8L.framer-72rtr7 > :last-child, .framer-A6T8L .framer-67qgex > :last-child, .framer-A6T8L .framer-1k90wli > :last-child, .framer-A6T8L .framer-1tdk418 > :last-child, .framer-A6T8L .framer-r0ct2r > :last-child, .framer-A6T8L .framer-sidsiw > :last-child, .framer-A6T8L .framer-34f65t > :last-child, .framer-A6T8L .framer-1elop9c > :last-child, .framer-A6T8L .framer-ka3fvj > :last-child, .framer-A6T8L .framer-1lluglm > :last-child, .framer-A6T8L .framer-phqhrl > :last-child, .framer-A6T8L .framer-19l2jum > :last-child, .framer-A6T8L .framer-qyez4u > :last-child, .framer-A6T8L .framer-h1hbub > :last-child, .framer-A6T8L .framer-14mwgt0 > :last-child { margin-bottom: 0px; } .framer-A6T8L .framer-1k90wli > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-A6T8L .framer-1tdk418 > *, .framer-A6T8L .framer-sidsiw > *, .framer-A6T8L .framer-19l2jum > *, .framer-A6T8L .framer-h1hbub > *, .framer-A6T8L .framer-14mwgt0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-A6T8L .framer-pmyxpx > *, .framer-A6T8L .framer-194lqnz > *, .framer-A6T8L .framer-tpvi5m > *, .framer-A6T8L .framer-1by654a > *, .framer-A6T8L .framer-17lizw5 > *, .framer-A6T8L .framer-11nwzl0 > *, .framer-A6T8L .framer-1njt9bz > *, .framer-A6T8L .framer-aifs48 > *, .framer-A6T8L .framer-1v94nxb > *, .framer-A6T8L .framer-vp0t6 > *, .framer-A6T8L .framer-1tvmwk8 > *, .framer-A6T8L .framer-kfxfdo > *, .framer-A6T8L .framer-on2t17 > *, .framer-A6T8L .framer-zlk57z > *, .framer-A6T8L .framer-1l2ug5s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-A6T8L .framer-pmyxpx > :first-child, .framer-A6T8L .framer-194lqnz > :first-child, .framer-A6T8L .framer-tpvi5m > :first-child, .framer-A6T8L .framer-1by654a > :first-child, .framer-A6T8L .framer-17lizw5 > :first-child, .framer-A6T8L .framer-11nwzl0 > :first-child, .framer-A6T8L .framer-1njt9bz > :first-child, .framer-A6T8L .framer-aifs48 > :first-child, .framer-A6T8L .framer-1v94nxb > :first-child, .framer-A6T8L .framer-vp0t6 > :first-child, .framer-A6T8L .framer-1tvmwk8 > :first-child, .framer-A6T8L .framer-kfxfdo > :first-child, .framer-A6T8L .framer-4um65g > :first-child, .framer-A6T8L .framer-6hjo89 > :first-child, .framer-A6T8L .framer-on2t17 > :first-child, .framer-A6T8L .framer-zlk57z > :first-child, .framer-A6T8L .framer-1l2ug5s > :first-child { margin-left: 0px; } .framer-A6T8L .framer-pmyxpx > :last-child, .framer-A6T8L .framer-194lqnz > :last-child, .framer-A6T8L .framer-tpvi5m > :last-child, .framer-A6T8L .framer-1by654a > :last-child, .framer-A6T8L .framer-17lizw5 > :last-child, .framer-A6T8L .framer-11nwzl0 > :last-child, .framer-A6T8L .framer-1njt9bz > :last-child, .framer-A6T8L .framer-aifs48 > :last-child, .framer-A6T8L .framer-1v94nxb > :last-child, .framer-A6T8L .framer-vp0t6 > :last-child, .framer-A6T8L .framer-1tvmwk8 > :last-child, .framer-A6T8L .framer-kfxfdo > :last-child, .framer-A6T8L .framer-4um65g > :last-child, .framer-A6T8L .framer-6hjo89 > :last-child, .framer-A6T8L .framer-on2t17 > :last-child, .framer-A6T8L .framer-zlk57z > :last-child, .framer-A6T8L .framer-1l2ug5s > :last-child { margin-right: 0px; } .framer-A6T8L .framer-r0ct2r > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-A6T8L .framer-34f65t > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-A6T8L .framer-1elop9c > * { margin: 0px; margin-bottom: calc(79px / 2); margin-top: calc(79px / 2); } .framer-A6T8L .framer-ka3fvj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-A6T8L .framer-4um65g > *, .framer-A6T8L .framer-6hjo89 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-A6T8L .framer-phqhrl > * { margin: 0px; margin-bottom: calc(114px / 2); margin-top: calc(114px / 2); } .framer-A6T8L .framer-qyez4u > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\",`@media (min-width: 810px) and (max-width: 999px) { .${metadata.bodyClassName}-framer-A6T8L { background: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)); } .framer-A6T8L.framer-72rtr7 { height: 9622px; width: 810px; } .framer-A6T8L .framer-2q3rns-container { max-width: 697px; order: 0; top: 29px; } .framer-A6T8L .framer-67qgex, .framer-A6T8L .framer-pmyxpx, .framer-A6T8L .framer-17lizw5 { order: 1; } .framer-A6T8L .framer-1k90wli, .framer-A6T8L .framer-pqc17d-container { order: 0; } .framer-A6T8L .framer-zpq2ca, .framer-A6T8L .framer-5jrpzl, .framer-A6T8L .framer-9tgoif, .framer-A6T8L .framer-1359de2 { max-width: 612px; width: auto; } .framer-A6T8L .framer-z7wfzx { max-width: 480px; } .framer-A6T8L .framer-1by654a, .framer-A6T8L .framer-g8s0yb-container { order: 2; } .framer-A6T8L .framer-3ogubq { max-width: 612px; order: 0; width: auto; } .framer-A6T8L .framer-1njt9bz, .framer-A6T8L .framer-7k2242-container { order: 4; } .framer-A6T8L .framer-aifs48 { flex-direction: column; gap: 40px; order: 0; } .framer-A6T8L .framer-1hlg232 { align-self: unset; flex: none; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-A6T8L .framer-sidsiw { justify-content: flex-start; padding: 0px 0px 10px 0px; position: relative; top: unset; } .framer-A6T8L .framer-1frktne { max-width: unset; order: 0; white-space: pre; width: auto; } .framer-A6T8L .framer-34f65t, .framer-A6T8L .framer-1v94nxb { flex: none; width: 100%; } .framer-A6T8L .framer-1q3jyqo { height: 1144px; top: calc(50.00000000000002% - 1144px / 2); } .framer-A6T8L .framer-vp0t6 { flex-direction: column; order: 6; } .framer-A6T8L .framer-1tvmwk8 { flex: none; flex-direction: column; gap: 50px; width: 100%; } .framer-A6T8L .framer-1ew78uf { align-self: unset; flex: none; height: 10px; width: 50%; } .framer-A6T8L .framer-kfxfdo { justify-content: flex-start; padding: 0px; position: relative; top: unset; } .framer-A6T8L .framer-1mcr5tu { flex: none; max-width: 612px; width: auto; } .framer-A6T8L .framer-1elop9c { flex: none; gap: 73px; width: 100%; } .framer-A6T8L .framer-ka3fvj { align-content: flex-start; align-items: flex-start; } .framer-A6T8L .framer-1lluglm { width: 100%; } .framer-A6T8L .framer-1escmz5 { height: 758px; top: calc(50.20618556701033% - 758px / 2); } .framer-A6T8L .framer-on2t17 { flex: none; height: min-content; padding: 40px 0px 40px 0px; width: 100%; } .framer-A6T8L .framer-phqhrl { order: 7; padding: 100px 50px 692px 50px; } .framer-A6T8L .framer-y84vql { height: 100%; top: -1px; } .framer-A6T8L .framer-1yi5pz6-container { height: 688px; max-width: 1890px; width: 90%; } .framer-A6T8L .framer-zlk57z { order: 8; } .framer-A6T8L .framer-qyez4u { gap: 50px; } .framer-A6T8L .framer-h1hbub { justify-content: flex-start; } .framer-A6T8L .framer-1l2ug5s { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-A6T8L .framer-aifs48, .framer-A6T8L .framer-1hlg232, .framer-A6T8L .framer-vp0t6, .framer-A6T8L .framer-1tvmwk8, .framer-A6T8L .framer-1elop9c, .framer-A6T8L .framer-qyez4u { gap: 0px; } .framer-A6T8L .framer-aifs48 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-A6T8L .framer-aifs48 > :first-child, .framer-A6T8L .framer-1hlg232 > :first-child, .framer-A6T8L .framer-vp0t6 > :first-child, .framer-A6T8L .framer-1tvmwk8 > :first-child, .framer-A6T8L .framer-1elop9c > :first-child, .framer-A6T8L .framer-qyez4u > :first-child { margin-top: 0px; } .framer-A6T8L .framer-aifs48 > :last-child, .framer-A6T8L .framer-1hlg232 > :last-child, .framer-A6T8L .framer-vp0t6 > :last-child, .framer-A6T8L .framer-1tvmwk8 > :last-child, .framer-A6T8L .framer-1elop9c > :last-child, .framer-A6T8L .framer-qyez4u > :last-child { margin-bottom: 0px; } .framer-A6T8L .framer-1hlg232 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-A6T8L .framer-vp0t6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-A6T8L .framer-1tvmwk8 > *, .framer-A6T8L .framer-qyez4u > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-A6T8L .framer-1elop9c > * { margin: 0px; margin-bottom: calc(73px / 2); margin-top: calc(73px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-A6T8L { background: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)); } .framer-A6T8L.framer-72rtr7 { width: 390px; } .framer-A6T8L .framer-2q3rns-container { top: 20px; width: 90%; } .framer-A6T8L .framer-1k90wli { order: 0; padding: 0px 20px 0px 20px; position: relative; top: unset; } .framer-A6T8L .framer-19i89s5 { -webkit-filter: brightness(0.8) contrast(0.9); filter: brightness(0.8) contrast(0.9); order: 0; } .framer-A6T8L .framer-1tdk418 { order: 1; } .framer-A6T8L .framer-zpq2ca { max-width: 321%; } .framer-A6T8L .framer-z7wfzx { max-width: 300px; width: 100%; } .framer-A6T8L .framer-o5qlel-container { order: 2; } .framer-A6T8L .framer-pmyxpx { height: 120vh; order: 1; } .framer-A6T8L .framer-194lqnz { top: 20px; } .framer-A6T8L .framer-9bvh77 { top: 18px; } .framer-A6T8L .framer-tpvi5m { height: 60vh; } .framer-A6T8L .framer-1by654a { order: 2; padding: 50px 20px 50px 20px; } .framer-A6T8L .framer-3ogubq { width: 351px; } .framer-A6T8L .framer-1njt9bz { order: 4; } .framer-A6T8L .framer-aifs48 { flex-direction: column; gap: 65px; padding: 73px 20px 73px 20px; } .framer-A6T8L .framer-1hlg232 { align-self: unset; flex: none; gap: 0px; height: min-content; justify-content: center; width: 100%; } .framer-A6T8L .framer-sidsiw { align-content: center; align-items: center; padding: 0px; position: relative; top: unset; } .framer-A6T8L .framer-34f65t { flex: none; gap: 15px; width: 100%; } .framer-A6T8L .framer-1q3jyqo { height: 1160px; opacity: 0.4; top: calc(50.00000000000002% - 1160px / 2); } .framer-A6T8L .framer-1v94nxb { flex: none; padding: 0px; width: 100%; } .framer-A6T8L .framer-vp0t6 { flex-direction: column; order: 6; padding: 50px 20px 50px 20px; } .framer-A6T8L .framer-1tvmwk8 { flex: none; flex-direction: column; gap: 20px; width: 100%; } .framer-A6T8L .framer-1ew78uf { align-self: unset; flex: none; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; width: 100%; } .framer-A6T8L .framer-kfxfdo { padding: 0px; position: relative; top: unset; } .framer-A6T8L .framer-1elop9c { flex: none; gap: 35px; width: 100%; } .framer-A6T8L .framer-1lluglm, .framer-A6T8L .framer-h1hbub { width: 100%; } .framer-A6T8L .framer-4um65g, .framer-A6T8L .framer-6hjo89 { flex-direction: column; } .framer-A6T8L .framer-atkhar-container, .framer-A6T8L .framer-1fdhp9o-container, .framer-A6T8L .framer-9g9ehv-container, .framer-A6T8L .framer-l1ee6d-container, .framer-A6T8L .framer-on2t17 { flex: none; width: 100%; } .framer-A6T8L .framer-1escmz5 { height: 902px; opacity: 0.46; top: calc(50.20618556701033% - 902px / 2); } .framer-A6T8L .framer-phqhrl { gap: 50px; height: 1476px; order: 7; padding: 50px 20px 267px 20px; } .framer-A6T8L .framer-y84vql { height: 103%; order: 0; } .framer-A6T8L .framer-19l2jum { order: 1; padding: 0px; } .framer-A6T8L .framer-1cgsczk { max-width: unset; } .framer-A6T8L .framer-1yi5pz6-container { height: 1089px; max-width: 494%; order: 2; width: 100%; } .framer-A6T8L .framer-zlk57z { order: 8; padding: 0px 20px 0px 20px; } .framer-A6T8L .framer-w4v4rp { opacity: 0.4; } .framer-A6T8L .framer-qyez4u { gap: 20px; padding: 50px 0px 50px 0px; } .framer-A6T8L .framer-1l2ug5s { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-A6T8L .framer-aifs48, .framer-A6T8L .framer-1hlg232, .framer-A6T8L .framer-34f65t, .framer-A6T8L .framer-vp0t6, .framer-A6T8L .framer-1tvmwk8, .framer-A6T8L .framer-1ew78uf, .framer-A6T8L .framer-1elop9c, .framer-A6T8L .framer-4um65g, .framer-A6T8L .framer-6hjo89, .framer-A6T8L .framer-phqhrl, .framer-A6T8L .framer-qyez4u { gap: 0px; } .framer-A6T8L .framer-aifs48 > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-A6T8L .framer-aifs48 > :first-child, .framer-A6T8L .framer-1hlg232 > :first-child, .framer-A6T8L .framer-34f65t > :first-child, .framer-A6T8L .framer-vp0t6 > :first-child, .framer-A6T8L .framer-1tvmwk8 > :first-child, .framer-A6T8L .framer-1ew78uf > :first-child, .framer-A6T8L .framer-1elop9c > :first-child, .framer-A6T8L .framer-4um65g > :first-child, .framer-A6T8L .framer-6hjo89 > :first-child, .framer-A6T8L .framer-phqhrl > :first-child, .framer-A6T8L .framer-qyez4u > :first-child { margin-top: 0px; } .framer-A6T8L .framer-aifs48 > :last-child, .framer-A6T8L .framer-1hlg232 > :last-child, .framer-A6T8L .framer-34f65t > :last-child, .framer-A6T8L .framer-vp0t6 > :last-child, .framer-A6T8L .framer-1tvmwk8 > :last-child, .framer-A6T8L .framer-1ew78uf > :last-child, .framer-A6T8L .framer-1elop9c > :last-child, .framer-A6T8L .framer-4um65g > :last-child, .framer-A6T8L .framer-6hjo89 > :last-child, .framer-A6T8L .framer-phqhrl > :last-child, .framer-A6T8L .framer-qyez4u > :last-child { margin-bottom: 0px; } .framer-A6T8L .framer-1hlg232 > *, .framer-A6T8L .framer-4um65g > *, .framer-A6T8L .framer-6hjo89 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-A6T8L .framer-34f65t > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-A6T8L .framer-vp0t6 > *, .framer-A6T8L .framer-1ew78uf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-A6T8L .framer-1tvmwk8 > *, .framer-A6T8L .framer-qyez4u > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-A6T8L .framer-1elop9c > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-A6T8L .framer-phqhrl > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}`,`@media (min-width: 1000px) and (max-width: 1599px) { .${metadata.bodyClassName}-framer-A6T8L { background: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)); } .framer-A6T8L.framer-72rtr7 { width: 1000px; } .framer-A6T8L .framer-1k90wli { height: 97.8433598183882vh; order: 0; } .framer-A6T8L .framer-zpq2ca { max-width: 800px; } .framer-A6T8L .framer-z7wfzx { max-width: 530px; } .framer-A6T8L .framer-pmyxpx, .framer-A6T8L .framer-11mjogr-container, .framer-A6T8L .framer-19l2jum { order: 1; } .framer-A6T8L .framer-1by654a { order: 2; } .framer-A6T8L .framer-3ogubq { max-width: 800px; width: auto; } .framer-A6T8L .framer-1njt9bz { order: 4; } .framer-A6T8L .framer-aifs48 { gap: 33px; } .framer-A6T8L .framer-vp0t6 { order: 6; } .framer-A6T8L .framer-1elop9c { gap: 78px; } .framer-A6T8L .framer-1lluglm { width: 100%; } .framer-A6T8L .framer-phqhrl { order: 7; padding: 100px 50px 0px 50px; } .framer-A6T8L .framer-y84vql { bottom: 0px; height: unset; order: 0; top: 0px; } .framer-A6T8L .framer-1cgsczk { order: 0; } .framer-A6T8L .framer-1yi5pz6-container { height: 1101px; max-width: 190%; order: 2; width: 810px; } .framer-A6T8L .framer-zlk57z { order: 8; padding: 8px 50px 8px 50px; } .framer-A6T8L .framer-1l2ug5s { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-A6T8L .framer-aifs48, .framer-A6T8L .framer-1elop9c { gap: 0px; } .framer-A6T8L .framer-aifs48 > * { margin: 0px; margin-left: calc(33px / 2); margin-right: calc(33px / 2); } .framer-A6T8L .framer-aifs48 > :first-child { margin-left: 0px; } .framer-A6T8L .framer-aifs48 > :last-child { margin-right: 0px; } .framer-A6T8L .framer-1elop9c > * { margin: 0px; margin-bottom: calc(78px / 2); margin-top: calc(78px / 2); } .framer-A6T8L .framer-1elop9c > :first-child { margin-top: 0px; } .framer-A6T8L .framer-1elop9c > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-A6T8L[data-border=\"true\"]::after, .framer-A6T8L [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7318.5\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ulru_24ch\":{\"layout\":[\"fixed\",\"fixed\"]},\"jvCw4IpzG\":{\"layout\":[\"fixed\",\"auto\"]},\"n84tt9Kzy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-A6T8L\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7318.5,width:1600};addFonts(FrameraugiA20Il,[{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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6hR47NCV5Z.woff2\",weight:\"700\"}]},...NavBarFonts,...ButtonGradientFonts,...VideoFonts,...BrandLogosFonts,...TickerFonts,...HomepageServiceFonts,...StatsFonts,...TestimonialCardFonts,...SlideshowFonts,...FAQsListFonts,...TextTickerFonts,...FooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7318.5\",\"framerIntrinsicWidth\":\"1600\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ulru_24ch\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jvCw4IpzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n84tt9Kzy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "ref1", "ref2", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "variantClassNames", "transitions", "transformTemplate", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "fact", "height", "id", "number", "width", "props", "ref", "ref1", "createLayoutDependency", "variants", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "MhNn3yIfK", "YFmiRXhkK", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "Framerd7DnOAptI", "withCSS", "d7DnOAptI_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "row1", "row2", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "wfGtFKOCx", "i5O03YodR", "DFIDx_49F", "YEq393da6", "I43n4JqNq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1nm0m5i", "args", "onTap1d1jhgp", "onTaptvijn1", "onTap1j3lih6", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "Icon", "css", "FramerIVozL5jyY", "withCSS", "IVozL5jyY_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "clientName", "company", "height", "id", "image", "quote", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "TYrIC1xIe", "zid21k45x", "xWK1trTmf", "XQebMLGjf", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterr9n7fm", "args", "onMouseLeave1asq4tp", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "Image2", "RichText2", "ComponentViewportProvider", "Icon", "css", "FramerKtpKWPd0G", "withCSS", "KtpKWPd0G_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "XuQs49rUl", "KM7TcE55r", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "addPropertyOverrides", "Image2", "css", "FramerTJRW1qsJY", "withCSS", "TJRW1qsJY_default", "addPropertyControls", "ControlType", "addFonts", "NavBarFonts", "getFonts", "WvxfThqf1_default", "ImageWithFX", "withFX", "Image2", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonGradientFonts", "Ri7mo6WgZ_default", "ContainerWithOptimizedAppearEffect", "Container", "MotionSectionWithFX", "motion", "RichTextWithFX", "VideoFonts", "Video", "MotionDivWithFX", "BrandLogosFonts", "TJRW1qsJY_default", "TickerFonts", "Ticker", "HomepageServiceFonts", "IVozL5jyY_default", "StatsFonts", "d7DnOAptI_default", "TestimonialCardFonts", "KtpKWPd0G_default", "SlideshowFonts", "Slideshow", "FAQsListFonts", "Sd0tHNaJB_default", "TextTickerFonts", "ScPu0aX9j_default", "FooterFonts", "Swq40RzUA_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "ref2", "elementId", "useRouteElementId", "ref3", "elementId1", "elementId2", "ref4", "isDisplayed", "elementId3", "ref5", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "elementId4", "ref6", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
