{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/nWuJ5TrVAai4Ec2Xf0SV/k52gKFjiRk17yUg45tut/PwZVbgbPv.js", "ssg:https://framerusercontent.com/modules/g795hsgqLYPx1YIsgHP9/F4smk9giMOH6TLdiCbLT/Z0jT2fWCR.js", "ssg:https://framerusercontent.com/modules/nwpkpvVyMSuasV3yJB25/5A90N9EJeFJo97CH0d22/hpYLmmfqk.js", "ssg:https://framerusercontent.com/modules/bbCDqZpL1ZCtyLxPns3g/EXFyFQHPdVyCY6jNOkwD/jJ_ie3RTx.js", "ssg:https://framerusercontent.com/modules/FwLGXpMNEOEstRGNoGuX/clU9YRqBfKpEPNYDSS9J/l31u1O20K.js", "ssg:https://framerusercontent.com/modules/gcduRISivLiYQsv3F839/49OwQa4B8dKyG3UbE5RY/twScBqvgA.js", "ssg:https://framerusercontent.com/modules/VmZV9dPRnRe0RAb8U2tH/dj2m6B1W6LX7SwZTmOck/zSTuLCh_O.js", "ssg:https://framerusercontent.com/modules/oR4iAwYkoax73uDuC80Q/ICdTo0GghalCDP96EuYS/kpl2lluMc.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,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength: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(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[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)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",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\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (f57d8b5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;General Sans-regular\",\"FS;General Sans-bold\",\"FS;General Sans-bold italic\",\"FS;General Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MFQT7HFGCR2L5ULQTW6YXYZXXHMPKLJ3/YWQ244D6TACUX5JBKATPOW5I5MGJ3G73/7YY3ZAAE3TRV2LANYOLXNHTPHLXVWTKH.woff2\",weight:\"400\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KWXO5X3YW4X7OLUMPO4X24HQJGJU7E2Q/VOWUQZS3YLP66ZHPTXAFSH6YACY4WJHT/NIQ54PVBBIWVK3PFSOIOUJSXIJ5WTNDP.woff2\",weight:\"700\"},{family:\"General Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/IZAMKIKJNFHYAA4XTXOGUSQUJWNXQHPE/2S5HU7TKNAV6MHTRNU2NPZD7U4OT6VKE/HCZ5OQRTYQOAVSHRS6UOFWUZ5CGI6JRO.woff2\",weight:\"700\"},{family:\"General Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GQOITZI54NH6HDBP26XAMQYTXB4JQ3NQ/VY7SXNCPHYFLQTOFY72GM4OZTBH62U2D/AHPLTG2YASI4OYLGJV4CF3P25VBHPK5X.woff2\",weight:\"400\"}]}];export const css=['.framer-wvCzS .framer-styles-preset-eg0hx8:not(.rich-text-wrapper), .framer-wvCzS .framer-styles-preset-eg0hx8.rich-text-wrapper p { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1779px) and (min-width: 1200px) { .framer-wvCzS .framer-styles-preset-eg0hx8:not(.rich-text-wrapper), .framer-wvCzS .framer-styles-preset-eg0hx8.rich-text-wrapper p { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-wvCzS .framer-styles-preset-eg0hx8:not(.rich-text-wrapper), .framer-wvCzS .framer-styles-preset-eg0hx8.rich-text-wrapper p { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-wvCzS .framer-styles-preset-eg0hx8:not(.rich-text-wrapper), .framer-wvCzS .framer-styles-preset-eg0hx8.rich-text-wrapper p { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-wvCzS\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3bc9980)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/nWuJ5TrVAai4Ec2Xf0SV/k52gKFjiRk17yUg45tut/PwZVbgbPv.js\";const enabledGestures={BhJ9Qgo4j:{hover:true},EbAhPQvOY:{hover:true},qpygSY6c3:{hover:true},y0UYY5i6R:{hover:true}};const cycleOrder=[\"y0UYY5i6R\",\"EbAhPQvOY\",\"BhJ9Qgo4j\",\"qpygSY6c3\"];const serializationHash=\"framer-uQIuF\";const variantClassNames={BhJ9Qgo4j:\"framer-v-1f73ws7\",EbAhPQvOY:\"framer-v-bi1yue\",qpygSY6c3:\"framer-v-1y6e2pl\",y0UYY5i6R:\"framer-v-njhjii\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Tablet Black\":\"BhJ9Qgo4j\",\"Tablet White\":\"qpygSY6c3\",\"Variant 1\":\"y0UYY5i6R\",\"Variant 2\":\"EbAhPQvOY\"};const getProps=({height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,jesp7m7YY:(_ref=title!==null&&title!==void 0?title:props.jesp7m7YY)!==null&&_ref!==void 0?_ref:\"Verbal Identity\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"y0UYY5i6R\"};};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,jesp7m7YY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"y0UYY5i6R\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-njhjii\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"y0UYY5i6R\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48,...style},variants:{\"BhJ9Qgo4j-hover\":{backgroundColor:\"rgb(0, 0, 0)\"},\"EbAhPQvOY-hover\":{backgroundColor:\"rgb(255, 255, 255)\"},\"qpygSY6c3-hover\":{backgroundColor:\"rgb(255, 255, 255)\"},\"y0UYY5i6R-hover\":{backgroundColor:\"rgb(0, 0, 0)\"},EbAhPQvOY:{\"--border-color\":\"rgb(255, 255, 255)\"},qpygSY6c3:{\"--border-color\":\"rgb(255, 255, 255)\"}},...addPropertyOverrides({\"BhJ9Qgo4j-hover\":{\"data-framer-name\":undefined},\"EbAhPQvOY-hover\":{\"data-framer-name\":undefined},\"qpygSY6c3-hover\":{\"data-framer-name\":undefined},\"y0UYY5i6R-hover\":{\"data-framer-name\":undefined},BhJ9Qgo4j:{\"data-framer-name\":\"Tablet Black\"},EbAhPQvOY:{\"data-framer-name\":\"Variant 2\"},qpygSY6c3:{\"data-framer-name\":\"Tablet White\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",children:\"Verbal Identity\"})}),className:\"framer-c1ue16\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IBz2YpHTH\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jesp7m7YY,variants:{\"BhJ9Qgo4j-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},\"y0UYY5i6R-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},EbAhPQvOY:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},qpygSY6c3:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"BhJ9Qgo4j-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Verbal Identity\"})})},\"EbAhPQvOY-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",children:\"Verbal Identity\"})})},\"qpygSY6c3-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",children:\"Verbal Identity\"})})},\"y0UYY5i6R-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Verbal Identity\"})})},EbAhPQvOY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Verbal Identity\"})})},qpygSY6c3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Verbal Identity\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uQIuF.framer-fd9mew, .framer-uQIuF .framer-fd9mew { display: block; }\",\".framer-uQIuF.framer-njhjii { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 15px 5px 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-uQIuF .framer-c1ue16 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uQIuF.framer-njhjii { gap: 0px; } .framer-uQIuF.framer-njhjii > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uQIuF.framer-njhjii > :first-child { margin-left: 0px; } .framer-uQIuF.framer-njhjii > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-uQIuF[data-border=\"true\"]::after, .framer-uQIuF [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 34\n * @framerIntrinsicWidth 159.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"EbAhPQvOY\":{\"layout\":[\"auto\",\"auto\"]},\"BhJ9Qgo4j\":{\"layout\":[\"auto\",\"auto\"]},\"qpygSY6c3\":{\"layout\":[\"auto\",\"auto\"]},\"vM8RC0xV0\":{\"layout\":[\"auto\",\"auto\"]},\"qIBbUsROv\":{\"layout\":[\"auto\",\"auto\"]},\"kpTdAYHhK\":{\"layout\":[\"auto\",\"auto\"]},\"b2MyanZjq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"jesp7m7YY\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ0jT2fWCR=withCSS(Component,css,\"framer-uQIuF\");export default FramerZ0jT2fWCR;FramerZ0jT2fWCR.displayName=\"detail services\";FramerZ0jT2fWCR.defaultProps={height:34,width:159.5};addPropertyControls(FramerZ0jT2fWCR,{variant:{options:[\"y0UYY5i6R\",\"EbAhPQvOY\",\"BhJ9Qgo4j\",\"qpygSY6c3\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Tablet Black\",\"Tablet White\"],title:\"Variant\",type:ControlType.Enum},jesp7m7YY:{defaultValue:\"Verbal Identity\",title:\"Title\",type:ControlType.String}});addFonts(FramerZ0jT2fWCR,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ0jT2fWCR\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"jesp7m7YY\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EbAhPQvOY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BhJ9Qgo4j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qpygSY6c3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vM8RC0xV0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qIBbUsROv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kpTdAYHhK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"b2MyanZjq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"159.5\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"34\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z0jT2fWCR.map", "// Generated by Framer (f57d8b5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;General Sans-medium\",\"FS;General Sans-bold\",\"FS;General Sans-bold italic\",\"FS;General Sans-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KWXO5X3YW4X7OLUMPO4X24HQJGJU7E2Q/VOWUQZS3YLP66ZHPTXAFSH6YACY4WJHT/NIQ54PVBBIWVK3PFSOIOUJSXIJ5WTNDP.woff2\",weight:\"700\"},{family:\"General Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/IZAMKIKJNFHYAA4XTXOGUSQUJWNXQHPE/2S5HU7TKNAV6MHTRNU2NPZD7U4OT6VKE/HCZ5OQRTYQOAVSHRS6UOFWUZ5CGI6JRO.woff2\",weight:\"700\"},{family:\"General Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ST6AL2GVQRSWVDOXZNSHY2SMWYYSVFEK/WJ26NN5JS6IPLBXEKX7WHB7HACXDTAKH/H7W54QQR2V6KL5KMDA2PD2KSQRCZHPRE.woff2\",weight:\"500\"}]}];export const css=['.framer-7FTOH .framer-styles-preset-y5k7gm:not(.rich-text-wrapper), .framer-7FTOH .framer-styles-preset-y5k7gm.rich-text-wrapper p { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1779px) and (min-width: 1200px) { .framer-7FTOH .framer-styles-preset-y5k7gm:not(.rich-text-wrapper), .framer-7FTOH .framer-styles-preset-y5k7gm.rich-text-wrapper p { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-7FTOH .framer-styles-preset-y5k7gm:not(.rich-text-wrapper), .framer-7FTOH .framer-styles-preset-y5k7gm.rich-text-wrapper p { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-7FTOH .framer-styles-preset-y5k7gm:not(.rich-text-wrapper), .framer-7FTOH .framer-styles-preset-y5k7gm.rich-text-wrapper p { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-7FTOH\";\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 (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-7Dtbc .framer-styles-preset-fkmrpf:not(.rich-text-wrapper), .framer-7Dtbc .framer-styles-preset-fkmrpf.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-7Dtbc\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cbb0119)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;General Sans-medium\",\"FS;General Sans-medium\",\"FS;General Sans-semibold italic\",\"FS;General Sans-variableVF=IndnaHQiIDcwMA==\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{family:\"General Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/T2VB54RK54AYH45QBSFO6FWJJBOGDZQS/WZUJLZL2KK72TQFDHQ6EV4KREZ7WEUL2/6FVUUVSLJPCCVHIJND4LQZIT4MFZBXYJ.woff2\",weight:\"600\"}]}];export const css=['.framer-k0rCY .framer-styles-preset-z96v8s:not(.rich-text-wrapper), .framer-k0rCY .framer-styles-preset-z96v8s.rich-text-wrapper h1 { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-italic: \"wght\" 700; --framer-font-weight: 500; --framer-font-weight-bold: 500; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1699px) and (min-width: 1200px) { .framer-k0rCY .framer-styles-preset-z96v8s:not(.rich-text-wrapper), .framer-k0rCY .framer-styles-preset-z96v8s.rich-text-wrapper h1 { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-italic: \"wght\" 700; --framer-font-weight: 500; --framer-font-weight-bold: 500; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-k0rCY .framer-styles-preset-z96v8s:not(.rich-text-wrapper), .framer-k0rCY .framer-styles-preset-z96v8s.rich-text-wrapper h1 { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-italic: \"wght\" 700; --framer-font-weight: 500; --framer-font-weight-bold: 500; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-k0rCY .framer-styles-preset-z96v8s:not(.rich-text-wrapper), .framer-k0rCY .framer-styles-preset-z96v8s.rich-text-wrapper h1 { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-italic: \"wght\" 700; --framer-font-weight: 500; --framer-font-weight-bold: 500; --framer-font-weight-bold-italic: 600; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-k0rCY\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-WKFL3 .framer-styles-preset-u93pi4:not(.rich-text-wrapper), .framer-WKFL3 .framer-styles-preset-u93pi4.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #000000; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #000000; --framer-link-text-decoration: none; transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-WKFL3\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;General Sans-variable\",\"FS;General Sans-variableVF=IndnaHQiIDQwMA==\",\"FS;General Sans-variableVF=IndnaHQiIDQwMA==\",\"FS;General Sans-variableVF=IndnaHQiIDQwMA==\"]);const variationAxes=[{defaultValue:700,maxValue:700,minValue:200,name:\"Weight\",tag:\"wght\"}];export const fonts=[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LHQJ5KSAL7VGAEIDSTEXCCOIUKFLT2I6/GW57XUEG4ZBVMLZZTQZTGYPROITRRQ5W/JA3IZUEMJ2J6WWT2OQVJOAWDXO3YL4YG.woff2\",variationAxes,weight:\"400\"}]}];export const css=['.framer-NYmcD .framer-styles-preset-1t8ignu:not(.rich-text-wrapper), .framer-NYmcD .framer-styles-preset-1t8ignu.rich-text-wrapper p { --framer-font-family: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-bold: \"wght\" 400; --framer-font-variation-axes-bold-italic: \"wght\" 400; --framer-font-variation-axes-italic: \"wght\" 400; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1699px) and (min-width: 1200px) { .framer-NYmcD .framer-styles-preset-1t8ignu:not(.rich-text-wrapper), .framer-NYmcD .framer-styles-preset-1t8ignu.rich-text-wrapper p { --framer-font-family: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-bold: \"wght\" 400; --framer-font-variation-axes-bold-italic: \"wght\" 400; --framer-font-variation-axes-italic: \"wght\" 400; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-NYmcD .framer-styles-preset-1t8ignu:not(.rich-text-wrapper), .framer-NYmcD .framer-styles-preset-1t8ignu.rich-text-wrapper p { --framer-font-family: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-bold: \"wght\" 400; --framer-font-variation-axes-bold-italic: \"wght\" 400; --framer-font-variation-axes-italic: \"wght\" 400; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-NYmcD .framer-styles-preset-1t8ignu:not(.rich-text-wrapper), .framer-NYmcD .framer-styles-preset-1t8ignu.rich-text-wrapper p { --framer-font-family: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans Variable\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-variation-axes-bold: \"wght\" 400; --framer-font-variation-axes-bold-italic: \"wght\" 400; --framer-font-variation-axes-italic: \"wght\" 400; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-NYmcD\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,clampRGB,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Image1 from\"https://framerusercontent.com/modules/4FYXL5lQz9cgJ2BJkaNV/uQoXZ4NvFasfJqYRTeHn/Image.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import CMSItemCounter from\"https://framerusercontent.com/modules/BBUAbGx22zVBT9dNUfhp/8sfQG6otPZ6Zt70vg4QT/CMSCounter.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import Header from\"#framer/local/canvasComponent/ApEj2Pw1L/ApEj2Pw1L.js\";import MobilMenuVariant from\"#framer/local/canvasComponent/lBBAFp1ey/lBBAFp1ey.js\";import Cursor from\"#framer/local/canvasComponent/UR5UrbBRm/UR5UrbBRm.js\";import Footer from\"#framer/local/canvasComponent/wnu7DgivS/wnu7DgivS.js\";import DetailServices from\"#framer/local/canvasComponent/Z0jT2fWCR/Z0jT2fWCR.js\";import WorkItem from\"#framer/local/canvasComponent/ZUtbQuYab/ZUtbQuYab.js\";import{withdisableRightClick}from\"#framer/local/codeFile/lSpip6F/Disable_click.js\";import Filter from\"#framer/local/collection/B3_TIyslb/B3_TIyslb.js\";import Work from\"#framer/local/collection/gkwaSJTcJ/gkwaSJTcJ.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle9 from\"#framer/local/css/AHjYVhywd/AHjYVhywd.js\";import*as sharedStyle12 from\"#framer/local/css/cB4t4F4RU/cB4t4F4RU.js\";import*as sharedStyle from\"#framer/local/css/EDXfz34E1/EDXfz34E1.js\";import*as sharedStyle13 from\"#framer/local/css/fLLkg37o9/fLLkg37o9.js\";import*as sharedStyle1 from\"#framer/local/css/hpYLmmfqk/hpYLmmfqk.js\";import*as sharedStyle4 from\"#framer/local/css/jJ_ie3RTx/jJ_ie3RTx.js\";import*as sharedStyle6 from\"#framer/local/css/l31u1O20K/l31u1O20K.js\";import*as sharedStyle10 from\"#framer/local/css/lMhDLMDpj/lMhDLMDpj.js\";import*as sharedStyle16 from\"#framer/local/css/LowM0gqwN/LowM0gqwN.js\";import*as sharedStyle5 from\"#framer/local/css/mqfzQ79Q8/mqfzQ79Q8.js\";import*as sharedStyle8 from\"#framer/local/css/O6PVy6EP1/O6PVy6EP1.js\";import*as sharedStyle2 from\"#framer/local/css/PwZVbgbPv/PwZVbgbPv.js\";import*as sharedStyle11 from\"#framer/local/css/SNLux7hCO/SNLux7hCO.js\";import*as sharedStyle17 from\"#framer/local/css/twScBqvgA/twScBqvgA.js\";import*as sharedStyle15 from\"#framer/local/css/Urt4Jr2jY/Urt4Jr2jY.js\";import*as sharedStyle14 from\"#framer/local/css/vPxZPkZJn/vPxZPkZJn.js\";import*as sharedStyle3 from\"#framer/local/css/W7GJWO4f5/W7GJWO4f5.js\";import*as sharedStyle7 from\"#framer/local/css/zSTuLCh_O/zSTuLCh_O.js\";import metadataProvider from\"#framer/local/webPageMetadata/kpl2lluMc/kpl2lluMc.js\";const MobilMenuVariantFonts=getFonts(MobilMenuVariant);const MobilMenuVariantWithVariantAppearEffect=withVariantAppearEffect(MobilMenuVariant);const CMSItemCounterFonts=getFonts(CMSItemCounter);const FooterFonts=getFonts(Footer);const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const DetailServicesFonts=getFonts(DetailServices);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const SlideshowFonts=getFonts(Slideshow);const Image1Fonts=getFonts(Image1);const TickerFonts=getFonts(Ticker);const WorkItemFonts=getFonts(WorkItem);const MotionDivWithdisableRightClick4r55r=withCodeBoundaryForOverrides(motion.div,{nodeId:\"ydRqz8RcS\",override:withdisableRightClick,scopeId:\"kpl2lluMc\"});const CursorFonts=getFonts(Cursor);const breakpoints={nfITZpF2j:\"(min-width: 1700px)\",yBAwnv50I:\"(max-width: 809px)\",ydRqz8RcS:\"(min-width: 1200px) and (max-width: 1699px)\",zw36pmcBv:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-QkUjS\";const variantClassNames={nfITZpF2j:\"framer-v-1tmzacx\",yBAwnv50I:\"framer-v-1aouiyv\",ydRqz8RcS:\"framer-v-4r55r\",zw36pmcBv:\"framer-v-rghj1h\"};const transition1={bounce:.2,delay:.2,duration:.5,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:280};const transition2={bounce:0,delay:0,duration:1,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:280};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"VQHb1jERI\";}else{return\"DiA_9Pv9n\";}};const convertFromBoolean1=(value,activeLocale,{YBAuAw4FNELWNJ3xPh})=>{if(value){return undefined;}else{return{pathVariables:{YBAuAw4FN:YBAuAw4FNELWNJ3xPh},webPageId:\"kpl2lluMc\"};}};const convertFromBoolean2=(value,activeLocale)=>{if(value){return\"brvsUxlUd\";}else{return\"G3ZlStf0h\";}};const convertFromBoolean3=(value,activeLocale)=>{if(value){return\"GNssqe6lZ\";}else{return\"zSx3UPWV3\";}};const convertFromBoolean4=(value,activeLocale)=>{if(value){return\"Nq_OlSA3B\";}else{return\"QVJ1zsNLs\";}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ydRqz8RcS\",Phone:\"yBAwnv50I\",Tablet:\"zw36pmcBv\",XLarge:\"nfITZpF2j\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ydRqz8RcS\"};};const cursor={component:Cursor,variant:\"AgomirRqh\"};const cursor1={component:Cursor,variant:\"txey4BeWx\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"kpl2lluMc\",data:Work,type:\"Collection\"},select:[{collection:\"kpl2lluMc\",name:\"Jp7uxhmFC\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"s5XbPVetn\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"dLCIaMNnG\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"JFy23sjE2\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"i6mz0lwhS\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"yk5axwEqw\",type:\"Identifier\"},{alias:\"WvDa6y5kR\",arguments:[{from:{alias:\"WvDa6y5kR\",data:Filter,type:\"Collection\"},orderBy:[{arguments:[{collection:\"kpl2lluMc\",name:\"WvDa6y5kR\",type:\"Identifier\"},{collection:\"WvDa6y5kR\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"WvDa6y5kR\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"WvDa6y5kR\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"kpl2lluMc\",name:\"WvDa6y5kR\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"kpl2lluMc\",name:\"wM5IcSTqT\",type:\"Identifier\"},{alias:\"sAzsNHIOW\",arguments:[{from:{alias:\"sAzsNHIOW\",data:Filter,type:\"Collection\"},orderBy:[{arguments:[{collection:\"kpl2lluMc\",name:\"sAzsNHIOW\",type:\"Identifier\"},{collection:\"sAzsNHIOW\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"sAzsNHIOW\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"sAzsNHIOW\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"kpl2lluMc\",name:\"sAzsNHIOW\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"kpl2lluMc\",name:\"Ov4z1z7kW\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"ogvIVP7g6\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"c4NAWwJu1\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"AzmR5ePCe\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"zHbBPVFgh\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"cvGThB5f8\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"Bz4Irkt85\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"s0hu4fc3l\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"ZPkH3E8IA\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"xMk4EpRnQ\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"ojobmDTKA\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"QzKKXiCb4\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"CpgP4euuN\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"s3V2ypkE0\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"bYMvBAee9\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"ccwZjFCgE\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"uGrsgPr6S\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"q7U1CtPgS\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"R4nnHOdf1\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"S3JET6kA7\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"RZOs7jI2a\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"d1D6dbjdY\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"fJmBStE4y\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"IAJ8X56D1\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"LMekX3vlf\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"ws26RNiTe\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"rBzjwXn0_\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"G34ilfY75\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"MhuBiA0oj\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"egdZSg8Ru\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"ADJLSUbhC\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"myUs0XeOM\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"iwwveszdN\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"DjenomX1p\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"GmKGUNfIW\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"SfX2emvEz\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"N2wkWkKZK\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"Qwifz1E1C\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"xJjLbpu55\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"eW4Igh43W\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"oX1MK92Or\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"r1lweXGQb\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"MpRiu0Mre\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"dnCafr9kE\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"wfoYZXunJ\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"Cgepe1YR8\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"QeyKN2Zea\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"Emvnaw48r\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"iXO87W7Pa\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"Pf3lKo_4y\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"zX4JdJhRu\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"YGzGAEbQv\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"jMp_qV0FF\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"DX7vK9A8H\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"CQeIXoNSN\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"w0ZZ7jtXu\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"MsKfxLohx\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"u_iufSgiQ\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"zjTUL7UdR\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"NVyUQrLfl\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"wrA81X5Iy\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"tMjtUK1BR\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"cG26W0pxW\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"OvuXKUHi8\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"KHANcKNb1\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"NIPUmyXfV\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"puASocdKU\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"AqQ6Eu4iZ\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"j_I3md96D\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"cdD9z97Gu\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"rZ22iAFYw\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"hexrZ1YM9\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"IvHb_xiOE\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"fayIwfJ16\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"wsHgICA5a\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"svKm7O3w7\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"ksm4RsbNo\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"kHsGsGqkV\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"YnVyTfwGI\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"tG1gcywTB\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"jOV9eHmvn\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"cQnfKk8JZ\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"JlFvjVwc7\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"uw9M7Q9Al\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"DVvOSt4a3\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"uxKcu082R\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"UspWbZk7v\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"vPFD_N1Xb\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"hNsfEcV7M\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"uSvy17HBd\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"JolceZ69N\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"RDQbvvHWO\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"bHtnhNmzx\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"GAU3qHB6k\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"kjqvP6ifN\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"L8rsp1whF\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"BpPcFPyOx\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"d2hVLIpeO\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"bTuzF9b3Q\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"MBu1vHJI5\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"pzIJg1sMA\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"yH3mwI1UC\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"sdwXR6AmE\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"FUGKrBTLc\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"y0yudAvky\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"sJt0HTaVK\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"k9AIVIs69\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"JBXfKccPo\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"NsheC8x9g\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"fw8PH5v5b\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"NvFlaKM89\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"Z1LLeo1Fu\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"Rnyi4IBsF\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"hBH_FRHf5\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"choqpheMC\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"ZEGxpuyN6\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"Y_klDGrdr\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"ATX3C_5NO\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"TKfCvTFT_\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"eiYcDJWgO\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"HHB5dWyfl\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"ZYyt5g2_a\",type:\"Identifier\"},{collection:\"kpl2lluMc\",name:\"zNCJjiinn\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"kpl2lluMc\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Jp7uxhmFCUeNsibFAP,YBAuAw4FNUeNsibFAP,idUeNsibFAP,dLCIaMNnG=getFromCurrentRouteData(\"dLCIaMNnG\")??\"#09F\",s5XbPVetn=getFromCurrentRouteData(\"s5XbPVetn\"),JFy23sjE2=getFromCurrentRouteData(\"JFy23sjE2\")??true,WvDa6y5kR=getFromCurrentRouteData(\"WvDa6y5kR\"),YBAuAw4FNPUVqF68Ss,VDw5IwRFUtRJ_nqVSS,RCSQ3JVMQtRJ_nqVSS,idtRJ_nqVSS,wM5IcSTqT=getFromCurrentRouteData(\"wM5IcSTqT\")??\"\",RCSQ3JVMQJrehhTFnp,VDw5IwRFUJrehhTFnp,idJrehhTFnp,sAzsNHIOW=getFromCurrentRouteData(\"sAzsNHIOW\"),Ov4z1z7kW=getFromCurrentRouteData(\"Ov4z1z7kW\")??\"\",VDw5IwRFUxzK6xAXDD,RCSQ3JVMQxzK6xAXDD,idxzK6xAXDD,RCSQ3JVMQS7VNAMH6G,VDw5IwRFUS7VNAMH6G,idS7VNAMH6G,ogvIVP7g6=getFromCurrentRouteData(\"ogvIVP7g6\")??true,c4NAWwJu1=getFromCurrentRouteData(\"c4NAWwJu1\"),AzmR5ePCe=getFromCurrentRouteData(\"AzmR5ePCe\"),zHbBPVFgh=getFromCurrentRouteData(\"zHbBPVFgh\")??true,Bz4Irkt85=getFromCurrentRouteData(\"Bz4Irkt85\")??true,ZPkH3E8IA=getFromCurrentRouteData(\"ZPkH3E8IA\"),s0hu4fc3l=getFromCurrentRouteData(\"s0hu4fc3l\"),xMk4EpRnQ=getFromCurrentRouteData(\"xMk4EpRnQ\")??\"\",ojobmDTKA=getFromCurrentRouteData(\"ojobmDTKA\")??\"\",QzKKXiCb4=getFromCurrentRouteData(\"QzKKXiCb4\")??true,s3V2ypkE0=getFromCurrentRouteData(\"s3V2ypkE0\"),CpgP4euuN=getFromCurrentRouteData(\"CpgP4euuN\"),bYMvBAee9=getFromCurrentRouteData(\"bYMvBAee9\")??\"\",ccwZjFCgE=getFromCurrentRouteData(\"ccwZjFCgE\")??\"\",uGrsgPr6S=getFromCurrentRouteData(\"uGrsgPr6S\")??true,R4nnHOdf1=getFromCurrentRouteData(\"R4nnHOdf1\"),q7U1CtPgS=getFromCurrentRouteData(\"q7U1CtPgS\"),S3JET6kA7=getFromCurrentRouteData(\"S3JET6kA7\")??\"\",RZOs7jI2a=getFromCurrentRouteData(\"RZOs7jI2a\")??\"\",d1D6dbjdY=getFromCurrentRouteData(\"d1D6dbjdY\")??true,IAJ8X56D1=getFromCurrentRouteData(\"IAJ8X56D1\"),fJmBStE4y=getFromCurrentRouteData(\"fJmBStE4y\"),LMekX3vlf=getFromCurrentRouteData(\"LMekX3vlf\")??\"\",ws26RNiTe=getFromCurrentRouteData(\"ws26RNiTe\")??\"\",cvGThB5f8=getFromCurrentRouteData(\"cvGThB5f8\"),rBzjwXn0_=getFromCurrentRouteData(\"rBzjwXn0_\")??true,G34ilfY75=getFromCurrentRouteData(\"G34ilfY75\"),egdZSg8Ru=getFromCurrentRouteData(\"egdZSg8Ru\"),MhuBiA0oj=getFromCurrentRouteData(\"MhuBiA0oj\"),ADJLSUbhC=getFromCurrentRouteData(\"ADJLSUbhC\"),myUs0XeOM=getFromCurrentRouteData(\"myUs0XeOM\")??true,iwwveszdN=getFromCurrentRouteData(\"iwwveszdN\"),DjenomX1p=getFromCurrentRouteData(\"DjenomX1p\"),GmKGUNfIW=getFromCurrentRouteData(\"GmKGUNfIW\")??true,SfX2emvEz=getFromCurrentRouteData(\"SfX2emvEz\"),N2wkWkKZK=getFromCurrentRouteData(\"N2wkWkKZK\"),Qwifz1E1C=getFromCurrentRouteData(\"Qwifz1E1C\"),xJjLbpu55=getFromCurrentRouteData(\"xJjLbpu55\"),eW4Igh43W=getFromCurrentRouteData(\"eW4Igh43W\")??true,oX1MK92Or=getFromCurrentRouteData(\"oX1MK92Or\"),r1lweXGQb=getFromCurrentRouteData(\"r1lweXGQb\"),MpRiu0Mre=getFromCurrentRouteData(\"MpRiu0Mre\")??true,dnCafr9kE=getFromCurrentRouteData(\"dnCafr9kE\"),Pf3lKo_4y=getFromCurrentRouteData(\"Pf3lKo_4y\"),wfoYZXunJ=getFromCurrentRouteData(\"wfoYZXunJ\"),zX4JdJhRu=getFromCurrentRouteData(\"zX4JdJhRu\"),Cgepe1YR8=getFromCurrentRouteData(\"Cgepe1YR8\"),YGzGAEbQv=getFromCurrentRouteData(\"YGzGAEbQv\"),QeyKN2Zea=getFromCurrentRouteData(\"QeyKN2Zea\"),jMp_qV0FF=getFromCurrentRouteData(\"jMp_qV0FF\"),Emvnaw48r=getFromCurrentRouteData(\"Emvnaw48r\"),DX7vK9A8H=getFromCurrentRouteData(\"DX7vK9A8H\"),iXO87W7Pa=getFromCurrentRouteData(\"iXO87W7Pa\"),CQeIXoNSN=getFromCurrentRouteData(\"CQeIXoNSN\"),w0ZZ7jtXu=getFromCurrentRouteData(\"w0ZZ7jtXu\")??true,MsKfxLohx=getFromCurrentRouteData(\"MsKfxLohx\"),u_iufSgiQ=getFromCurrentRouteData(\"u_iufSgiQ\"),zjTUL7UdR=getFromCurrentRouteData(\"zjTUL7UdR\"),NVyUQrLfl=getFromCurrentRouteData(\"NVyUQrLfl\"),wrA81X5Iy=getFromCurrentRouteData(\"wrA81X5Iy\"),tMjtUK1BR=getFromCurrentRouteData(\"tMjtUK1BR\"),cG26W0pxW=getFromCurrentRouteData(\"cG26W0pxW\")??true,OvuXKUHi8=getFromCurrentRouteData(\"OvuXKUHi8\"),KHANcKNb1=getFromCurrentRouteData(\"KHANcKNb1\"),NIPUmyXfV=getFromCurrentRouteData(\"NIPUmyXfV\")??true,puASocdKU=getFromCurrentRouteData(\"puASocdKU\"),AqQ6Eu4iZ=getFromCurrentRouteData(\"AqQ6Eu4iZ\"),j_I3md96D=getFromCurrentRouteData(\"j_I3md96D\"),cdD9z97Gu=getFromCurrentRouteData(\"cdD9z97Gu\"),rZ22iAFYw=getFromCurrentRouteData(\"rZ22iAFYw\")??true,hexrZ1YM9=getFromCurrentRouteData(\"hexrZ1YM9\"),IvHb_xiOE=getFromCurrentRouteData(\"IvHb_xiOE\"),fayIwfJ16=getFromCurrentRouteData(\"fayIwfJ16\")??true,wsHgICA5a=getFromCurrentRouteData(\"wsHgICA5a\"),svKm7O3w7=getFromCurrentRouteData(\"svKm7O3w7\"),ksm4RsbNo=getFromCurrentRouteData(\"ksm4RsbNo\"),kHsGsGqkV=getFromCurrentRouteData(\"kHsGsGqkV\"),YnVyTfwGI=getFromCurrentRouteData(\"YnVyTfwGI\")??true,tG1gcywTB=getFromCurrentRouteData(\"tG1gcywTB\"),UspWbZk7v=getFromCurrentRouteData(\"UspWbZk7v\"),jOV9eHmvn=getFromCurrentRouteData(\"jOV9eHmvn\"),vPFD_N1Xb=getFromCurrentRouteData(\"vPFD_N1Xb\"),cQnfKk8JZ=getFromCurrentRouteData(\"cQnfKk8JZ\"),hNsfEcV7M=getFromCurrentRouteData(\"hNsfEcV7M\"),JlFvjVwc7=getFromCurrentRouteData(\"JlFvjVwc7\"),uSvy17HBd=getFromCurrentRouteData(\"uSvy17HBd\"),uw9M7Q9Al=getFromCurrentRouteData(\"uw9M7Q9Al\"),JolceZ69N=getFromCurrentRouteData(\"JolceZ69N\"),DVvOSt4a3=getFromCurrentRouteData(\"DVvOSt4a3\"),RDQbvvHWO=getFromCurrentRouteData(\"RDQbvvHWO\"),uxKcu082R=getFromCurrentRouteData(\"uxKcu082R\"),bHtnhNmzx=getFromCurrentRouteData(\"bHtnhNmzx\"),GAU3qHB6k=getFromCurrentRouteData(\"GAU3qHB6k\")??true,kjqvP6ifN=getFromCurrentRouteData(\"kjqvP6ifN\"),L8rsp1whF=getFromCurrentRouteData(\"L8rsp1whF\"),BpPcFPyOx=getFromCurrentRouteData(\"BpPcFPyOx\"),d2hVLIpeO=getFromCurrentRouteData(\"d2hVLIpeO\"),bTuzF9b3Q=getFromCurrentRouteData(\"bTuzF9b3Q\"),MBu1vHJI5=getFromCurrentRouteData(\"MBu1vHJI5\"),pzIJg1sMA=getFromCurrentRouteData(\"pzIJg1sMA\")??true,yH3mwI1UC=getFromCurrentRouteData(\"yH3mwI1UC\"),sdwXR6AmE=getFromCurrentRouteData(\"sdwXR6AmE\"),FUGKrBTLc=getFromCurrentRouteData(\"FUGKrBTLc\")??true,y0yudAvky=getFromCurrentRouteData(\"y0yudAvky\"),k9AIVIs69=getFromCurrentRouteData(\"k9AIVIs69\"),sJt0HTaVK=getFromCurrentRouteData(\"sJt0HTaVK\"),JBXfKccPo=getFromCurrentRouteData(\"JBXfKccPo\"),NsheC8x9g=getFromCurrentRouteData(\"NsheC8x9g\")??true,fw8PH5v5b=getFromCurrentRouteData(\"fw8PH5v5b\"),NvFlaKM89=getFromCurrentRouteData(\"NvFlaKM89\"),Z1LLeo1Fu=getFromCurrentRouteData(\"Z1LLeo1Fu\")??true,Rnyi4IBsF=getFromCurrentRouteData(\"Rnyi4IBsF\"),choqpheMC=getFromCurrentRouteData(\"choqpheMC\"),hBH_FRHf5=getFromCurrentRouteData(\"hBH_FRHf5\"),ZEGxpuyN6=getFromCurrentRouteData(\"ZEGxpuyN6\"),Y_klDGrdr=getFromCurrentRouteData(\"Y_klDGrdr\")??\"\",ATX3C_5NO=getFromCurrentRouteData(\"ATX3C_5NO\")??\"\",TKfCvTFT_=getFromCurrentRouteData(\"TKfCvTFT_\")??\"\",eiYcDJWgO=getFromCurrentRouteData(\"eiYcDJWgO\")??\"\",HHB5dWyfl=getFromCurrentRouteData(\"HHB5dWyfl\")??true,ZYyt5g2_a=getFromCurrentRouteData(\"ZYyt5g2_a\")??\"\",zNCJjiinn=getFromCurrentRouteData(\"zNCJjiinn\")??\"\",lL4I9kMTcELWNJ3xPh,Jp7uxhmFCELWNJ3xPh,YP0sSsXTfELWNJ3xPh,wM5IcSTqTELWNJ3xPh,RTjsdQDMHELWNJ3xPh,YBAuAw4FNELWNJ3xPh,idELWNJ3xPh,Jp7uxhmFC=getFromCurrentRouteData(\"Jp7uxhmFC\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const GphGAFLwX3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className,sharedStyle17.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"gKSsSLVxm\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"esNHNhrVt\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"SGpeHrWg8\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"lYkUllchp\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"yBAwnv50I\")return true;return false;};const elementId4=useRouteElementId(\"jQHadzlXC\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"UeNsibFAP\");const ref6=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"yBAwnv50I\")return false;return true;};const elementId6=useRouteElementId(\"UYZurUQz8\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"RAn5T54la\");const ref8=React.useRef(null);const visible=negate(isSet(WvDa6y5kR));const visible1=isSet(WvDa6y5kR);const visible2=negate(JFy23sjE2);const elementId8=useRouteElementId(\"SSx20Lx2W\");const ref9=React.useRef(null);const visible3=isSet(c4NAWwJu1);const visible4=isSet(AzmR5ePCe);const elementId9=useRouteElementId(\"lqpLGg_2K\");const ref10=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"yBAwnv50I\",\"nfITZpF2j\"].includes(baseVariant))return false;return true;};const visible5=isSet(ZPkH3E8IA);const visible6=isSet(s0hu4fc3l);const visible7=isSet(s3V2ypkE0);const visible8=isSet(CpgP4euuN);const visible9=isSet(R4nnHOdf1);const visible10=isSet(q7U1CtPgS);const visible11=isSet(IAJ8X56D1);const visible12=isSet(fJmBStE4y);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"nfITZpF2j\")return true;return false;};const visible13=isSet(cvGThB5f8);const visible14=isSet(G34ilfY75);const visible15=isSet(egdZSg8Ru);const visible16=isSet(MhuBiA0oj);const visible17=isSet(ADJLSUbhC);const visible18=isSet(iwwveszdN);const visible19=isSet(DjenomX1p);const visible20=isSet(SfX2emvEz);const visible21=isSet(N2wkWkKZK);const visible22=isSet(Qwifz1E1C);const visible23=isSet(xJjLbpu55);const visible24=isSet(oX1MK92Or);const visible25=isSet(r1lweXGQb);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"nfITZpF2j\")return false;return true;};const visible26=isSet(dnCafr9kE);const visible27=isSet(Pf3lKo_4y);const visible28=isSet(wfoYZXunJ);const visible29=isSet(zX4JdJhRu);const visible30=isSet(Cgepe1YR8);const visible31=isSet(YGzGAEbQv);const visible32=isSet(QeyKN2Zea);const visible33=isSet(jMp_qV0FF);const visible34=isSet(Emvnaw48r);const visible35=isSet(DX7vK9A8H);const visible36=isSet(iXO87W7Pa);const visible37=isSet(CQeIXoNSN);const visible38=isSet(MsKfxLohx);const visible39=isSet(u_iufSgiQ);const visible40=isSet(zjTUL7UdR);const visible41=isSet(NVyUQrLfl);const visible42=isSet(wrA81X5Iy);const visible43=isSet(tMjtUK1BR);const visible44=isSet(OvuXKUHi8);const visible45=isSet(KHANcKNb1);const visible46=isSet(puASocdKU);const visible47=isSet(AqQ6Eu4iZ);const visible48=isSet(j_I3md96D);const visible49=isSet(cdD9z97Gu);const visible50=isSet(hexrZ1YM9);const visible51=isSet(IvHb_xiOE);const visible52=isSet(wsHgICA5a);const visible53=isSet(svKm7O3w7);const visible54=isSet(ksm4RsbNo);const visible55=isSet(kHsGsGqkV);const visible56=isSet(tG1gcywTB);const visible57=isSet(UspWbZk7v);const visible58=isSet(jOV9eHmvn);const visible59=isSet(vPFD_N1Xb);const visible60=isSet(cQnfKk8JZ);const visible61=isSet(hNsfEcV7M);const visible62=isSet(JlFvjVwc7);const visible63=isSet(uSvy17HBd);const visible64=isSet(uw9M7Q9Al);const visible65=isSet(JolceZ69N);const visible66=isSet(DVvOSt4a3);const visible67=isSet(RDQbvvHWO);const visible68=isSet(uxKcu082R);const visible69=isSet(bHtnhNmzx);const visible70=isSet(kjqvP6ifN);const visible71=isSet(L8rsp1whF);const visible72=isSet(BpPcFPyOx);const visible73=isSet(d2hVLIpeO);const visible74=isSet(bTuzF9b3Q);const visible75=isSet(MBu1vHJI5);const visible76=isSet(yH3mwI1UC);const visible77=isSet(sdwXR6AmE);const visible78=isSet(y0yudAvky);const visible79=isSet(k9AIVIs69);const visible80=isSet(sJt0HTaVK);const visible81=isSet(JBXfKccPo);const visible82=isSet(fw8PH5v5b);const visible83=isSet(NvFlaKM89);const visible84=isSet(Rnyi4IBsF);const visible85=isSet(choqpheMC);const visible86=isSet(hBH_FRHf5);const visible87=isSet(ZEGxpuyN6);const visible88=isSet(Y_klDGrdr);const visible89=isSet(ATX3C_5NO);const visible90=isSet(TKfCvTFT_);const visible91=isSet(eiYcDJWgO);const visible92=isSet(ZYyt5g2_a);const visible93=isSet(zNCJjiinn);useCustomCursors({\"1a4m3nj\":{...cursor,variant:\"txey4BeWx\"},\"2pl2d9\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ydRqz8RcS\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(MotionDivWithdisableRightClick4r55r,{...restProps,className:cx(scopingClassNames,\"framer-4r55r\",className),\"data-framer-cursor\":\"2pl2d9\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ip8cce\",\"data-framer-name\":\"header-animation-trigger\",id:elementId,ref:ref1}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wm332z\",\"data-framer-name\":\"header-close-trigger\",id:elementId1,ref:ref2}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bapsv6\",\"data-framer-name\":\"video-trigger\",id:elementId2,ref:ref3}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kpa7dk\",\"data-framer-name\":\"mobile-menu-trigger\",id:elementId3,ref:ref4}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{height:52,y:10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-7kf8f3-container hidden-4r55r hidden-rghj1h hidden-1tmzacx\",id:elementId4,layoutScroll:true,nodeId:\"jQHadzlXC\",ref:ref5,rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:[/*#__PURE__*/_jsx(MobilMenuVariantWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref4,target:\"IUAiWIPpf\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,GphGAFLwX:GphGAFLwX3bnx0g({overlay}),height:\"100%\",id:\"jQHadzlXC\",layoutId:\"jQHadzlXC\",variant:overlay.visible?\"mGSm5U8ED\":\"XYOAOTcxI\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-dm61a7\"),\"data-framer-portal-id\":elementId4,exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay.hide(),transition:{bounce:.2,delay:.2,duration:.5,type:\"spring\"}},\"YVWQUnPru\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-ops5qs\"),\"data-framer-name\":\"All\",\"data-framer-portal-id\":elementId4,exit:animation,initial:animation2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xIkCDhSl_\"},motionChild:true,nodeId:\"tDCCJmnWQ\",openInNewTab:false,scopeId:\"kpl2lluMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11g0cp4\",\"data-styles-preset\":\"EDXfz34E1\",children:\"Home\"})})})}),className:\"framer-z97j4v\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"T0t7L6Eex\"},motionChild:true,nodeId:\"jaJ6iSH2q\",openInNewTab:false,scopeId:\"kpl2lluMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11g0cp4\",\"data-styles-preset\":\"EDXfz34E1\",children:\"Studio\"})})})}),className:\"framer-k7axax\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uszt3o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TEpwoTE4h\"},motionChild:true,nodeId:\"azDKggd_k\",openInNewTab:false,scopeId:\"kpl2lluMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11g0cp4\",\"data-styles-preset\":\"EDXfz34E1\",children:\"Work\"})})})}),className:\"framer-fnv2dg\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gdaf8p\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13gdjo-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zKp3cLSrQ\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(CMSItemCounter,{collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6krgn2\",\"data-framer-name\":\"CMS Counter\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UeNsibFAP\",data:Work,type:\"Collection\"},select:[{collection:\"UeNsibFAP\",name:\"Jp7uxhmFC\",type:\"Identifier\"},{collection:\"UeNsibFAP\",name:\"YBAuAw4FN\",type:\"Identifier\"},{collection:\"UeNsibFAP\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idUeNsibFAP,Jp7uxhmFC:Jp7uxhmFCUeNsibFAP,YBAuAw4FN:YBAuAw4FNUeNsibFAP},index)=>{Jp7uxhmFCUeNsibFAP??=\"\";YBAuAw4FNUeNsibFAP??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UeNsibFAP-${idUeNsibFAP}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{YBAuAw4FN:YBAuAw4FNUeNsibFAP},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"adssad\"})}),className:\"framer-1r3i7u3\",fonts:[\"Inter\"],text:Jp7uxhmFCUeNsibFAP,verticalAlignment:\"top\",withExternalLayout:true})})},idUeNsibFAP);})})})})})],commas:true,font:{fontFamily:'\"General Sans\", \"General Sans Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0.05em\",lineHeight:\"1.5em\",textAlign:\"center\"},fontColor:\"rgb(255, 255, 255)\",height:\"100%\",id:\"zKp3cLSrQ\",layoutId:\"zKp3cLSrQ\",placeholder:12,textSelect:true,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nhffjpTDu\"},motionChild:true,nodeId:\"Kbu2BydlY\",openInNewTab:false,scopeId:\"kpl2lluMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11g0cp4\",\"data-styles-preset\":\"EDXfz34E1\",children:\"Store\"})})})}),className:\"framer-wbr3rv\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tsJFCCCk9\"},motionChild:true,nodeId:\"UXaRCJP0l\",openInNewTab:false,scopeId:\"kpl2lluMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11g0cp4\",\"data-styles-preset\":\"EDXfz34E1\",children:\"Insight\"})})})}),className:\"framer-d7ac2r\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"llMSDzNcG\"},motionChild:true,nodeId:\"WN4iCObeB\",openInNewTab:false,scopeId:\"kpl2lluMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11g0cp4\",\"data-styles-preset\":\"EDXfz34E1\",children:\"Contact\"})})})}),className:\"framer-vysain\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xIkCDhSl_\"},motionChild:true,nodeId:\"zc9q7a7XX\",scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:440,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg\",srcSet:\"https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg 2000w\"},className:\"framer-5zvp5p framer-h1vw06\",\"data-framer-name\":\"Velvele Text\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ei8jwj-container\",inComponentSlot:true,nodeId:\"VgToOw9BF\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"VgToOw9BF\",layoutId:\"VgToOw9BF\",style:{width:\"100%\"},variant:\"qdAmVljx6\",width:\"100%\"})})})]})]}),getContainer())})})]})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfITZpF2j:{y:26}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:20,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfITZpF2j:{style:{scale:1.27}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-5x85m5-container hidden-1aouiyv\",layoutScroll:true,nodeId:\"m1LFQZOjL\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref2,target:\"FFP8xHHtV\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"m1LFQZOjL\",layoutId:\"m1LFQZOjL\",Pg7ohCiqU:\"1a4m3nj\",variant:\"EraLnQj6_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p9xyob\",\"data-framer-name\":\"Logo\",id:elementId6,ref:ref7,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11guujd\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{href:{webPageId:\"xIkCDhSl_\"}}},children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"Dl3paOCZV\",scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:440,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg\",srcSet:\"https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5+0),pixelHeight:440,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,src:\"https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg\",srcSet:\"https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vcCK6o3TLFNt9NLOCOsyp21BrqU.svg 2000w\"},className:\"framer-1hzolzb framer-h1vw06\",\"data-framer-name\":\"Velvele Text\"})})})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aojsh6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ucq9mn\",\"data-framer-name\":\"Hero\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m7o7au\",\"data-framer-name\":\"Wrapper\",style:{\"--1t6p24t\":dLCIaMNnG,\"--wuw60c\":clampRGB(dLCIaMNnG)},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-172dad\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fit\",sizes:\"228.5714px\",...toResponsiveImage(s5XbPVetn),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",...toResponsiveImage(s5XbPVetn),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-rx8im9\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11gem6w\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-drc9tj\",children:[JFy23sjE2&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uupzi\",\"data-border\":true,\"data-framer-name\":\"Black\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-igqx2c\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ialjb9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y5k7gm\",\"data-styles-preset\":\"hpYLmmfqk\",children:\"INDUSTRY\"})}),className:\"framer-103hiqn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"left\"},children:\"-\"})}),className:\"framer-4qrn1k\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h95vpo\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"tRJ_nqVSS\",data:Filter,type:\"Collection\"},orderBy:[{arguments:[{type:\"LiteralValue\",value:WvDa6y5kR},{collection:\"tRJ_nqVSS\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"tRJ_nqVSS\",name:\"VDw5IwRFU\",type:\"Identifier\"},{collection:\"tRJ_nqVSS\",name:\"RCSQ3JVMQ\",type:\"Identifier\"},{collection:\"tRJ_nqVSS\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"tRJ_nqVSS\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:WvDa6y5kR},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idtRJ_nqVSS,RCSQ3JVMQ:RCSQ3JVMQtRJ_nqVSS,VDw5IwRFU:VDw5IwRFUtRJ_nqVSS},index1)=>{VDw5IwRFUtRJ_nqVSS??=\"\";RCSQ3JVMQtRJ_nqVSS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tRJ_nqVSS-${idtRJ_nqVSS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{RCSQ3JVMQ:RCSQ3JVMQtRJ_nqVSS},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o3aszu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YBAuAw4FN:YBAuAw4FNPUVqF68Ss},webPageId:\"VitHVnLaD\"},motionChild:true,nodeId:\"j4FCmo6dr\",openInNewTab:false,scopeId:\"kpl2lluMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-salotr\",\"data-styles-preset\":\"W7GJWO4f5\",children:\"Architecture\"})})})}),className:\"framer-kdewor\",\"data-framer-cursor\":\"1a4m3nj\",fonts:[\"Inter\"],text:VDw5IwRFUtRJ_nqVSS,verticalAlignment:\"top\",withExternalLayout:true})})})},idtRJ_nqVSS);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wtbyqg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y5k7gm\",\"data-styles-preset\":\"hpYLmmfqk\",children:\"YEAR\"})}),className:\"framer-1kzqnrf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",children:\"2024\"})}),className:\"framer-18y8gw4\",fonts:[\"Inter\"],text:wM5IcSTqT,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rbbvs8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y5k7gm\",\"data-styles-preset\":\"hpYLmmfqk\",children:\"SERVICES\"})}),className:\"framer-k3ra4e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xce9qs\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JrehhTFnp\",data:Filter,type:\"Collection\"},select:[{collection:\"JrehhTFnp\",name:\"RCSQ3JVMQ\",type:\"Identifier\"},{collection:\"JrehhTFnp\",name:\"VDw5IwRFU\",type:\"Identifier\"},{collection:\"JrehhTFnp\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"JrehhTFnp\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:sAzsNHIOW},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"JrehhTFnp\",name:\"HZFEeLWuP\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"vQKPyOlOZ\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idJrehhTFnp,RCSQ3JVMQ:RCSQ3JVMQJrehhTFnp,VDw5IwRFU:VDw5IwRFUJrehhTFnp},index2)=>{RCSQ3JVMQJrehhTFnp??=\"\";VDw5IwRFUJrehhTFnp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JrehhTFnp-${idJrehhTFnp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{RCSQ3JVMQ:RCSQ3JVMQJrehhTFnp},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{RCSQ3JVMQ:RCSQ3JVMQJrehhTFnp},webPageId:\"VitHVnLaD\"},motionChild:true,nodeId:\"MumSmOrXz\",scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ke4mmr framer-h1vw06\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-157tll2-container\",\"data-framer-cursor\":\"1a4m3nj\",nodeId:\"jaOjiGUkZ\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{variant:\"BhJ9Qgo4j\"},zw36pmcBv:{variant:\"BhJ9Qgo4j\"}},children:/*#__PURE__*/_jsx(DetailServices,{height:\"100%\",id:\"jaOjiGUkZ\",jesp7m7YY:VDw5IwRFUJrehhTFnp,layoutId:\"jaOjiGUkZ\",variant:\"y0UYY5i6R\",width:\"100%\"})})})})})})})},idJrehhTFnp);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-obwrlh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y5k7gm\",\"data-styles-preset\":\"hpYLmmfqk\",children:\"INFO\"})}),className:\"framer-9f3z3i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",children:\"Pally is a restaurant and cocktail bar that brings together the perfect ingredients for unforgettable memories: food, drink, and people. Their exceptional food, signature cocktails, selective luxury wines and global cuisine redefine the gastronomy scene in the city.\"})}),className:\"framer-1r40e35\",fonts:[\"Inter\"],text:Ov4z1z7kW,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible2&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1al7ipg\",\"data-border\":true,\"data-framer-name\":\"White\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wbarai\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s657mb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y5k7gm\",\"data-styles-preset\":\"hpYLmmfqk\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"INDUSTRY\"})}),className:\"framer-osjj7w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"left\"},children:\"-\"})}),className:\"framer-d81chr\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-xnddh4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xzK6xAXDD\",data:Filter,type:\"Collection\"},orderBy:[{arguments:[{type:\"LiteralValue\",value:WvDa6y5kR},{collection:\"xzK6xAXDD\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"xzK6xAXDD\",name:\"VDw5IwRFU\",type:\"Identifier\"},{collection:\"xzK6xAXDD\",name:\"RCSQ3JVMQ\",type:\"Identifier\"},{collection:\"xzK6xAXDD\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"xzK6xAXDD\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:WvDa6y5kR},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idxzK6xAXDD,RCSQ3JVMQ:RCSQ3JVMQxzK6xAXDD,VDw5IwRFU:VDw5IwRFUxzK6xAXDD},index3)=>{VDw5IwRFUxzK6xAXDD??=\"\";RCSQ3JVMQxzK6xAXDD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xzK6xAXDD-${idxzK6xAXDD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{RCSQ3JVMQ:RCSQ3JVMQxzK6xAXDD},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vb7c5y\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YBAuAw4FN:YBAuAw4FNPUVqF68Ss},webPageId:\"VitHVnLaD\"},motionChild:true,nodeId:\"Mzw9QQ2HV\",openInNewTab:false,scopeId:\"kpl2lluMc\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fkmrpf\",\"data-styles-preset\":\"jJ_ie3RTx\",children:\"Production\"})})})}),className:\"framer-1muhhqh\",fonts:[\"Inter\"],text:VDw5IwRFUxzK6xAXDD,verticalAlignment:\"top\",withExternalLayout:true})})})},idxzK6xAXDD);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lth8pb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y5k7gm\",\"data-styles-preset\":\"hpYLmmfqk\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"YEAR\"})}),className:\"framer-129ircx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2022\"})}),className:\"framer-je8usk\",fonts:[\"Inter\"],text:wM5IcSTqT,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mh3vuk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y5k7gm\",\"data-styles-preset\":\"hpYLmmfqk\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SERVICES\"})}),className:\"framer-1fyytv8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10jw3c\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"S7VNAMH6G\",data:Filter,type:\"Collection\"},select:[{collection:\"S7VNAMH6G\",name:\"RCSQ3JVMQ\",type:\"Identifier\"},{collection:\"S7VNAMH6G\",name:\"VDw5IwRFU\",type:\"Identifier\"},{collection:\"S7VNAMH6G\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"S7VNAMH6G\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:sAzsNHIOW},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"S7VNAMH6G\",name:\"HZFEeLWuP\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"vQKPyOlOZ\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idS7VNAMH6G,RCSQ3JVMQ:RCSQ3JVMQS7VNAMH6G,VDw5IwRFU:VDw5IwRFUS7VNAMH6G},index4)=>{RCSQ3JVMQS7VNAMH6G??=\"\";VDw5IwRFUS7VNAMH6G??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`S7VNAMH6G-${idS7VNAMH6G}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{RCSQ3JVMQ:RCSQ3JVMQS7VNAMH6G},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{RCSQ3JVMQ:RCSQ3JVMQS7VNAMH6G},webPageId:\"VitHVnLaD\"},motionChild:true,nodeId:\"GTGFAgWZT\",scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1p7vi3d framer-h1vw06\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6nitqj-container\",\"data-framer-cursor\":\"1a4m3nj\",nodeId:\"S_zWpFp4U\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{variant:\"qpygSY6c3\"},zw36pmcBv:{variant:\"qpygSY6c3\"}},children:/*#__PURE__*/_jsx(DetailServices,{height:\"100%\",id:\"S_zWpFp4U\",jesp7m7YY:VDw5IwRFUS7VNAMH6G,layoutId:\"S_zWpFp4U\",variant:\"EbAhPQvOY\",width:\"100%\"})})})})})})})},idS7VNAMH6G);})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1944n9d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-y5k7gm\",\"data-styles-preset\":\"hpYLmmfqk\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"INFO\"})}),className:\"framer-806e08\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eg0hx8\",\"data-styles-preset\":\"PwZVbgbPv\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Located in \u0130zmir, Turkey, Ragyu offers a contemporary take on artisan butchery and introducing a new wave dynamic to the scene. As they display their craftsmanship with every slice, Ragyu offers a premium experience for gourmands to purchase gourmet meat both online and offline.\"})}),className:\"framer-3i5pi\",fonts:[\"Inter\"],text:Ov4z1z7kW,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})})}),ogvIVP7g6&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nohe4e\",\"data-framer-name\":\"S1\",id:elementId8,ref:ref9,children:[visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max((${componentViewport?.width||\"100vw\"} - 0px) / 0, 1px)`,...toResponsiveImage(c4NAWwJu1)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+-5.5),pixelHeight:1464,pixelWidth:2200,sizes:`max((${componentViewport?.width||\"100vw\"} - 0px) / 0, 1px)`,...toResponsiveImage(c4NAWwJu1)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((${componentViewport?.width||\"100vw\"} - 0px) / 0, 1px)`,...toResponsiveImage(c4NAWwJu1)},className:\"framer-11wxecf\"})}),visible4&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-w3brse\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t8lqnm-container\",isModuleExternal:true,nodeId:\"d_BC7N3UA\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"d_BC7N3UA\",isMixedBorderRadius:false,layoutId:\"d_BC7N3UA\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:AzmR5ePCe,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),zHbBPVFgh&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-q3jr1a\",\"data-framer-name\":\"HL\",id:elementId9,ref:ref10,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k4ukhs\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfITZpF2j:{transformTemplate:transformTemplate2},yBAwnv50I:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1gt42hg\",\"data-styles-preset\":\"mqfzQ79Q8\",children:\"Highlights\"})}),className:\"framer-1r7ulas\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-za83wc-container hidden-1aouiyv hidden-1tmzacx\",\"data-framer-name\":\"Slideshow - Desktop\",isAuthoredByUser:true,isModuleExternal:true,name:\"Slideshow - Desktop\",nodeId:\"C_gJf7oG1\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:100,arrowPadding:20,arrowPaddingBottom:60,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"C_gJf7oG1\",intervalControl:3,itemAmount:1,layoutId:\"C_gJf7oG1\",name:\"Slideshow - Desktop\",padding:0,paddingBottom:0,paddingLeft:100,paddingPerSide:false,paddingRight:100,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:84,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[Bz4Irkt85&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dfcu2c\",\"data-framer-name\":\"Slide Container - 1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lrn4u6\",\"data-framer-name\":\"Slide\",children:[visible5&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-cqwb8b\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ad06o-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"rgbN7DhKt\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"rgbN7DhKt\",isMixedBorderRadius:false,layoutId:\"rgbN7DhKt\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:ZPkH3E8IA,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible6&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"525px\",...toResponsiveImage(s0hu4fc3l)},className:\"framer-1rjb4gg\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kicjjd\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kls66l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Bringing music to life through a kinetic logo\"})}),className:\"framer-173czbh\",fonts:[\"Inter\"],text:xMk4EpRnQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"Forget the old-school logo rules. Pally\u2019s identity comes alive with multiple brand marks, each showcasing a different facet of its personality. This versatile approach adds an adaptable touch, effortlessly flowing across menus, uniforms, coasters, and more, ensuring the brand feels elevated and cohesive at every interaction.\"})}),className:\"framer-1oofcz3\",fonts:[\"Inter\"],text:ojobmDTKA,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),QzKKXiCb4&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sp6git\",\"data-framer-name\":\"Slide Container - 2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oz7uv4\",\"data-framer-name\":\"Slide\",children:[visible7&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-f3petl\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k7pccw-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"XuLjq4Ejb\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"XuLjq4Ejb\",isMixedBorderRadius:false,layoutId:\"XuLjq4Ejb\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:s3V2ypkE0,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible8&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"525px\",...toResponsiveImage(CpgP4euuN)},className:\"framer-mlmrvk\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mebe9c\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qnar7s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Adapting identity: the versatile sub-logo system\"})}),className:\"framer-1n33zc5\",fonts:[\"Inter\"],text:bYMvBAee9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"In a world leaning toward digital, Pally\u2019s menus preserve the charm of the tangible\u2014designed to be felt, touched, and admired. Each menu reflects the mood of its offerings\u2014vibrant for cocktails, refined for wines, and warm for dinner. So captivating, they\u2019ve become part of the decor\u2014and often \u201Cdisappear\u201D into guests\u2019 hands by the night\u2019s end!\"})}),className:\"framer-ydbtlb\",fonts:[\"Inter\"],text:ccwZjFCgE,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),uGrsgPr6S&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1davbxl\",\"data-framer-name\":\"Slide Container - 3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u1ss3w\",\"data-framer-name\":\"Slide\",children:[visible9&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-14hjfe3\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6af15w-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"QKwu6A0R1\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"QKwu6A0R1\",isMixedBorderRadius:false,layoutId:\"QKwu6A0R1\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:R4nnHOdf1,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible10&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"525px\",...toResponsiveImage(q7U1CtPgS),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1qbzag9\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19hjp8e\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17q6bw7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Content\"})}),className:\"framer-130q5o4\",fonts:[\"Inter\"],text:S3JET6kA7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"At Pally, even the smallest detail leaves a lasting impression. The thank-you card doubles as a bill holder, blending design with functionality. Crafted to be as memorable as the experience itself, these cards are too striking to leave behind\u2014most guests take them home as keepsakes. It\u2019s our way of ensuring that Pally lingers in their minds long after the last bite.\"})}),className:\"framer-1xxsioc\",fonts:[\"Inter\"],text:RZOs7jI2a,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),d1D6dbjdY&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-eyndo0\",\"data-framer-name\":\"Slide Container - 4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k1487a\",\"data-framer-name\":\"Slide\",children:[visible11&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-e1sisv\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jc3888-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"LsVIjL5Cu\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"LsVIjL5Cu\",isMixedBorderRadius:false,layoutId:\"LsVIjL5Cu\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:IAJ8X56D1,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible12&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"525px\",...toResponsiveImage(fJmBStE4y),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-zb0kzh\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dem56v\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9pu4a5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Content\"})}),className:\"framer-2a8g6m\",fonts:[\"Inter\"],text:LMekX3vlf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"In just six months, Pally\u2019s social media became more than a restaurant profile\u2014it\u2019s a lifestyle. Gaining over 30,000 followers, Pally has turned into one of the city\u2019s most sought-after destinations, where tables are now a prized commodity. Every post, from art-directed photoshoots to engaging motion designs, showcases the premium offerings and vibrant spirit of Pally. It\u2019s a digital extension of the brand, turning every scroll into an experience as refined as dining itself.\"})}),className:\"framer-1x9gfv0\",fonts:[\"Inter\"],text:ws26RNiTe,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p7aalw-container hidden-4r55r hidden-rghj1h hidden-1aouiyv\",\"data-framer-name\":\"Slideshow - XL\",isAuthoredByUser:true,isModuleExternal:true,name:\"Slideshow - XL\",nodeId:\"kkodBpAw4\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:100,arrowPadding:20,arrowPaddingBottom:60,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"kkodBpAw4\",intervalControl:3,itemAmount:1,layoutId:\"kkodBpAw4\",name:\"Slideshow - XL\",padding:0,paddingBottom:0,paddingLeft:100,paddingPerSide:false,paddingRight:100,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:100,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[Bz4Irkt85&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-h0elly\",\"data-framer-name\":\"XL Slide Container - 1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15jfcld\",\"data-framer-name\":\"Slide\",children:[visible5&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q0acmc\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ir080v-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"he_P8LhlW\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"he_P8LhlW\",isMixedBorderRadius:false,layoutId:\"he_P8LhlW\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:ZPkH3E8IA,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible6&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"624px\",...toResponsiveImage(s0hu4fc3l)},className:\"framer-1t9o67k\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18w7tj3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19wuyzh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Bringing music to life through a kinetic logo\"})}),className:\"framer-1hpzkgx\",fonts:[\"Inter\"],text:xMk4EpRnQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"Forget the old-school logo rules. Pally\u2019s identity comes alive with multiple brand marks, each showcasing a different facet of its personality. This versatile approach adds an adaptable touch, effortlessly flowing across menus, uniforms, coasters, and more, ensuring the brand feels elevated and cohesive at every interaction.\"})}),className:\"framer-1hk7wk2\",fonts:[\"Inter\"],text:ojobmDTKA,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),QzKKXiCb4&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ytonu\",\"data-framer-name\":\"XL Slide Container - 2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tfzt2s\",\"data-framer-name\":\"Slide\",children:[visible7&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17iqf6e\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-122xsuf-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"fEUetb6K2\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"fEUetb6K2\",isMixedBorderRadius:false,layoutId:\"fEUetb6K2\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:s3V2ypkE0,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible8&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"624px\",...toResponsiveImage(CpgP4euuN)},className:\"framer-157xezt\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8n13c\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l4377h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Adapting identity: the versatile sub-logo system\"})}),className:\"framer-1tv3st0\",fonts:[\"Inter\"],text:bYMvBAee9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"In a world leaning toward digital, Pally\u2019s menus preserve the charm of the tangible\u2014designed to be felt, touched, and admired. Each menu reflects the mood of its offerings\u2014vibrant for cocktails, refined for wines, and warm for dinner. So captivating, they\u2019ve become part of the decor\u2014and often \u201Cdisappear\u201D into guests\u2019 hands by the night\u2019s end!\"})}),className:\"framer-rdjkvm\",fonts:[\"Inter\"],text:ccwZjFCgE,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),uGrsgPr6S&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19zvh2n\",\"data-framer-name\":\"XL Slide Container - 3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15w70aq\",\"data-framer-name\":\"Slide\",children:[visible9&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wooirp\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16g5k5z-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"jItnF0_lC\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"jItnF0_lC\",isMixedBorderRadius:false,layoutId:\"jItnF0_lC\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:R4nnHOdf1,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible10&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"624px\",...toResponsiveImage(q7U1CtPgS),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-mgg7ve\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h7w1uf\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8mgv58\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Content\"})}),className:\"framer-268qob\",fonts:[\"Inter\"],text:S3JET6kA7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"At Pally, even the smallest detail leaves a lasting impression. The thank-you card doubles as a bill holder, blending design with functionality. Crafted to be as memorable as the experience itself, these cards are too striking to leave behind\u2014most guests take them home as keepsakes. It\u2019s our way of ensuring that Pally lingers in their minds long after the last bite.\"})}),className:\"framer-1glvwkl\",fonts:[\"Inter\"],text:RZOs7jI2a,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),d1D6dbjdY&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-b85yuq\",\"data-framer-name\":\"XL Slide Container - 4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s7cbod\",\"data-framer-name\":\"Slide\",children:[visible11&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pbiwl9\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12t4axu-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"aSHAo4B9h\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"aSHAo4B9h\",isMixedBorderRadius:false,layoutId:\"aSHAo4B9h\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:IAJ8X56D1,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible12&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"624px\",...toResponsiveImage(fJmBStE4y),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1uwvmii\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ftpw8b\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2w6guj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Content\"})}),className:\"framer-1ngdy2n\",fonts:[\"Inter\"],text:LMekX3vlf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"In just six months, Pally\u2019s social media became more than a restaurant profile\u2014it\u2019s a lifestyle. Gaining over 30,000 followers, Pally has turned into one of the city\u2019s most sought-after destinations, where tables are now a prized commodity. Every post, from art-directed photoshoots to engaging motion designs, showcases the premium offerings and vibrant spirit of Pally. It\u2019s a digital extension of the brand, turning every scroll into an experience as refined as dining itself.\"})}),className:\"framer-2p218f\",fonts:[\"Inter\"],text:ws26RNiTe,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zytc5h-container hidden-4r55r hidden-rghj1h hidden-1tmzacx\",\"data-framer-name\":\"Slideshow - Mobile\",isAuthoredByUser:true,isModuleExternal:true,name:\"Slideshow - Mobile\",nodeId:\"RZCGWtxbP\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:16,arrowPadding:1,arrowPaddingBottom:16,arrowPaddingLeft:0,arrowPaddingRight:16,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:48,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:32,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",id:\"RZCGWtxbP\",intervalControl:3,itemAmount:1,layoutId:\"RZCGWtxbP\",name:\"Slideshow - Mobile\",padding:30,paddingBottom:0,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:90,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:100,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[Bz4Irkt85&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mfslg6\",\"data-framer-name\":\"Slide Container - 1 (Mobile)\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v6z2d0\",\"data-framer-name\":\"Slide\",children:[visible5&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ehapj5\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-odq8gy-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"UB0FkNOh4\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"UB0FkNOh4\",isMixedBorderRadius:false,layoutId:\"UB0FkNOh4\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:ZPkH3E8IA,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible6&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"380px\",...toResponsiveImage(s0hu4fc3l)},className:\"framer-1xzpxrl\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vlvjl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fp466h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Bringing music to life through a kinetic logo\"})}),className:\"framer-1dc4fom\",fonts:[\"Inter\"],text:xMk4EpRnQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"Forget the old-school logo rules. Pally\u2019s identity comes alive with multiple brand marks, each showcasing a different facet of its personality. This versatile approach adds an adaptable touch, effortlessly flowing across menus, uniforms, coasters, and more, ensuring the brand feels elevated and cohesive at every interaction.\"})}),className:\"framer-134v215\",fonts:[\"Inter\"],text:ojobmDTKA,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),QzKKXiCb4&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ug0sh\",\"data-framer-name\":\"Slide Container - 2 (Mobile)\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v2os0y\",\"data-framer-name\":\"Slide\",children:[visible7&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pckm47\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2q3mmm-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IovTYzOVS\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"IovTYzOVS\",isMixedBorderRadius:false,layoutId:\"IovTYzOVS\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:s3V2ypkE0,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible8&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"380px\",...toResponsiveImage(CpgP4euuN)},className:\"framer-qeeqm4\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xvd8c4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i4k5v7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Adapting identity: the versatile sub-logo system\"})}),className:\"framer-qq8ljb\",fonts:[\"Inter\"],text:bYMvBAee9,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"In a world leaning toward digital, Pally\u2019s menus preserve the charm of the tangible\u2014designed to be felt, touched, and admired. Each menu reflects the mood of its offerings\u2014vibrant for cocktails, refined for wines, and warm for dinner. So captivating, they\u2019ve become part of the decor\u2014and often \u201Cdisappear\u201D into guests\u2019 hands by the night\u2019s end!\"})}),className:\"framer-4u35kj\",fonts:[\"Inter\"],text:ccwZjFCgE,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),uGrsgPr6S&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yjhmry\",\"data-framer-name\":\"Slide Container - 3 (Mobile)\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1trcqcw\",\"data-framer-name\":\"Slide\",children:[visible9&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-yo59u1\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yvajwl-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ExkSeDIl4\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ExkSeDIl4\",isMixedBorderRadius:false,layoutId:\"ExkSeDIl4\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:R4nnHOdf1,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible10&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"380px\",...toResponsiveImage(q7U1CtPgS)},className:\"framer-1pxvdl3\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vsroo2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qg4rh7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Memories That Matter\"})}),className:\"framer-1y88fgb\",fonts:[\"Inter\"],text:S3JET6kA7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"At Pally, even the smallest detail leaves a lasting impression. The thank-you card doubles as a bill holder, blending design with functionality. Crafted to be as memorable as the experience itself, these cards are too striking to leave behind\u2014most guests take them home as keepsakes. It\u2019s our way of ensuring that Pally lingers in their minds long after the last bite.\"})}),className:\"framer-15pfe5e\",fonts:[\"Inter\"],text:RZOs7jI2a,verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),d1D6dbjdY&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-873yqu\",\"data-framer-name\":\"Slide Container - 4 (Mobile)\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fccbbh\",\"data-framer-name\":\"Slide\",children:[visible11&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gk5ua7\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18rk4dj-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"pcCt2yWTI\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"pcCt2yWTI\",isMixedBorderRadius:false,layoutId:\"pcCt2yWTI\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:IAJ8X56D1,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible12&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"380px\",...toResponsiveImage(fJmBStE4y)},className:\"framer-6nv7v5\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-em4pu7\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y9kpjj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z96v8s\",\"data-styles-preset\":\"l31u1O20K\",children:\"Content\"})}),className:\"framer-4fqion\",fonts:[\"Inter\"],text:LMekX3vlf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1t8ignu\",\"data-styles-preset\":\"zSTuLCh_O\",children:\"In just six months, Pally\u2019s social media became more than a restaurant profile\u2014it\u2019s a lifestyle. Gaining over 30,000 followers, Pally has turned into one of the city\u2019s most sought-after destinations, where tables are now a prized commodity. Every post, from art-directed photoshoots to engaging motion designs, showcases the premium offerings and vibrant spirit of Pally. It\u2019s a digital extension of the brand, turning every scroll into an experience as refined as dining itself.\"})}),className:\"framer-mbzcgx\",fonts:[\"Inter\"],text:ws26RNiTe,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:50,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),visible13&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(cvGThB5f8)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1530+5+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(cvGThB5f8)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1001+5+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(cvGThB5f8)},className:\"framer-rzej2k\"})})]})}),rBzjwXn0_&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tfk17c\",\"data-framer-name\":\"S2\",children:[visible14&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,...toResponsiveImage(G34ilfY75)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2320+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(G34ilfY75)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2001+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(G34ilfY75)},className:\"framer-ol49hx\"})}),visible15&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-oubwhs\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17rtyd0-container\",isModuleExternal:true,nodeId:\"ftC3ZVFXD\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ftC3ZVFXD\",isMixedBorderRadius:false,layoutId:\"ftC3ZVFXD\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:egdZSg8Ru,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible16&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,...toResponsiveImage(MhuBiA0oj)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2320+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(MhuBiA0oj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2001+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(MhuBiA0oj)},className:\"framer-1b6q2y4\"})}),visible17&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rle7w0\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mi4ix7-container\",isModuleExternal:true,nodeId:\"wyP0ek7zH\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"wyP0ek7zH\",isMixedBorderRadius:false,layoutId:\"wyP0ek7zH\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:ADJLSUbhC,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),myUs0XeOM&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3hot61\",\"data-framer-name\":\"S3\",children:[visible18&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(iwwveszdN)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2850+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(iwwveszdN)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3001+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(iwwveszdN)},className:\"framer-1hyctjr\"})}),visible19&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12kw03a\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bd99bi-container\",isModuleExternal:true,nodeId:\"MA7momI6c\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"MA7momI6c\",isMixedBorderRadius:false,layoutId:\"MA7momI6c\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:DjenomX1p,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),GmKGUNfIW&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d6po96\",\"data-framer-name\":\"S4\",children:[visible20&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,...toResponsiveImage(SfX2emvEz)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3380+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(SfX2emvEz)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4001+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(SfX2emvEz)},className:\"framer-ktli4q\"})}),visible21&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,...toResponsiveImage(N2wkWkKZK)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3380+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(N2wkWkKZK)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4001+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(N2wkWkKZK)},className:\"framer-vbvp5\"})}),visible22&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s1alpg\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d3egb9-container\",isModuleExternal:true,nodeId:\"tFoqJlL6T\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tFoqJlL6T\",isMixedBorderRadius:false,layoutId:\"tFoqJlL6T\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:Qwifz1E1C,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible23&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bqu2n\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tvauze-container\",isModuleExternal:true,nodeId:\"gXXT6kAtj\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"gXXT6kAtj\",isMixedBorderRadius:false,layoutId:\"gXXT6kAtj\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:xJjLbpu55,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),eW4Igh43W&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tp7w3h\",\"data-framer-name\":\"S5\",children:[visible24&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max((${componentViewport?.width||\"100vw\"} - 0px) / 0, 1px)`,...toResponsiveImage(oX1MK92Or)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3910+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((${componentViewport?.width||\"100vw\"} - 0px) / 0, 1px)`,...toResponsiveImage(oX1MK92Or)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5001+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((${componentViewport?.width||\"100vw\"} - 0px) / 0, 1px)`,...toResponsiveImage(oX1MK92Or)},className:\"framer-13fw454\"})}),visible25&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-128jac3\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nht4sa-container\",isModuleExternal:true,nodeId:\"qAplfXapE\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"qAplfXapE\",isMixedBorderRadius:false,layoutId:\"qAplfXapE\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:r1lweXGQb,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),MpRiu0Mre&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ct4o1\",\"data-framer-name\":\"S6\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wl4ew2-container hidden-1tmzacx\",\"data-framer-name\":\"Desktop Ticker (SM1)\",isAuthoredByUser:true,isModuleExternal:true,name:\"Desktop Ticker (SM1)\",nodeId:\"pDUk79RM1\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{speed:100}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:50,height:\"100%\",hoverFactor:1,id:\"pDUk79RM1\",layoutId:\"pDUk79RM1\",name:\"Desktop Ticker (SM1)\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18v0xtq\",\"data-framer-name\":\"Desktop Ticker (SM1)\",children:[visible26&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jl0wfp-container\",\"data-framer-name\":\"Image 1\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 1\",nodeId:\"JM2zc3nvp\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"JM2zc3nvp\",image:toResponsiveImage(dnCafr9kE),layoutId:\"JM2zc3nvp\",name:\"Image 1\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible27&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ucnt5\",\"data-framer-name\":\"Video 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m26wp8-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"V9yX0yzlP\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"V9yX0yzlP\",isMixedBorderRadius:false,layoutId:\"V9yX0yzlP\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:Pf3lKo_4y,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible28&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xjwdib-container\",\"data-framer-name\":\"Image 2\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 2\",nodeId:\"ZcJ0mXdbn\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"ZcJ0mXdbn\",image:toResponsiveImage(wfoYZXunJ),layoutId:\"ZcJ0mXdbn\",name:\"Image 2\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible29&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-duw6k9\",\"data-framer-name\":\"Video 2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9xbmrv-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"uDI7OK3qj\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"uDI7OK3qj\",isMixedBorderRadius:false,layoutId:\"uDI7OK3qj\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:zX4JdJhRu,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible30&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lpjmyl-container\",\"data-framer-name\":\"Image 3\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 3\",nodeId:\"LCXv6mekA\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"LCXv6mekA\",image:toResponsiveImage(Cgepe1YR8),layoutId:\"LCXv6mekA\",name:\"Image 3\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible31&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-9nf5xu\",\"data-framer-name\":\"Video 3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dnd8kl-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"Jwk_K1ijZ\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Jwk_K1ijZ\",isMixedBorderRadius:false,layoutId:\"Jwk_K1ijZ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:YGzGAEbQv,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible32&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xno48r-container\",\"data-framer-name\":\"Image 4\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 4\",nodeId:\"cILC15Pgo\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"cILC15Pgo\",image:toResponsiveImage(QeyKN2Zea),layoutId:\"cILC15Pgo\",name:\"Image 4\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible33&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zctd6d\",\"data-framer-name\":\"Video 4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ymtey1-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"sgVm7f89d\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"sgVm7f89d\",isMixedBorderRadius:false,layoutId:\"sgVm7f89d\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:jMp_qV0FF,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible34&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ox4ucn-container\",\"data-framer-name\":\"Image 5\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 5\",nodeId:\"QEd65XwIf\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"QEd65XwIf\",image:toResponsiveImage(Emvnaw48r),layoutId:\"QEd65XwIf\",name:\"Image 5\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible35&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-pbern1\",\"data-framer-name\":\"Video 5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sk272e-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"Ly9razAwP\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Ly9razAwP\",isMixedBorderRadius:false,layoutId:\"Ly9razAwP\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:DX7vK9A8H,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible36&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hg2s28-container\",\"data-framer-name\":\"Image 6\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 6\",nodeId:\"UGl0SwSjV\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"UGl0SwSjV\",image:toResponsiveImage(iXO87W7Pa),layoutId:\"UGl0SwSjV\",name:\"Image 6\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible37&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-nociyf\",\"data-framer-name\":\"Video 6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4kkw9e-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"h0kupgYzq\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"h0kupgYzq\",isMixedBorderRadius:false,layoutId:\"h0kupgYzq\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:CQeIXoNSN,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v11ba4-container hidden-4r55r hidden-rghj1h hidden-1aouiyv\",\"data-framer-name\":\"XL Ticker (SM1)\",isAuthoredByUser:true,isModuleExternal:true,name:\"XL Ticker (SM1)\",nodeId:\"E4tCkbLIJ\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"E4tCkbLIJ\",layoutId:\"E4tCkbLIJ\",name:\"XL Ticker (SM1)\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10jmh30\",\"data-framer-name\":\"XL Ticker (SM1)\",children:[visible26&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3tb624-container\",\"data-framer-name\":\"Image 1\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 1\",nodeId:\"pflcoO9ao\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"pflcoO9ao\",image:toResponsiveImage(dnCafr9kE),layoutId:\"pflcoO9ao\",name:\"Image 1\",newTab:true,padding:0,radius:28,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible27&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-nfxwao\",\"data-framer-name\":\"Video 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12qe4yn-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"b2HWXOfHd\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"b2HWXOfHd\",isMixedBorderRadius:false,layoutId:\"b2HWXOfHd\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:Pf3lKo_4y,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible28&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yeasuq-container\",\"data-framer-name\":\"Image 2\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 2\",nodeId:\"fxZ0CIIlX\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"fxZ0CIIlX\",image:toResponsiveImage(wfoYZXunJ),layoutId:\"fxZ0CIIlX\",name:\"Image 2\",newTab:true,padding:0,radius:28,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible29&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-16zcbdm\",\"data-framer-name\":\"Video 2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4hasha-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IVCWAeEy9\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"IVCWAeEy9\",isMixedBorderRadius:false,layoutId:\"IVCWAeEy9\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:zX4JdJhRu,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible30&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d5zcz2-container\",\"data-framer-name\":\"Image 3\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 3\",nodeId:\"teyb6liIt\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"teyb6liIt\",image:toResponsiveImage(Cgepe1YR8),layoutId:\"teyb6liIt\",name:\"Image 3\",newTab:true,padding:0,radius:28,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible31&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-n8onb1\",\"data-framer-name\":\"Video 3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x486p5-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"E4zoZwBpi\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"E4zoZwBpi\",isMixedBorderRadius:false,layoutId:\"E4zoZwBpi\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:YGzGAEbQv,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible32&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1caetwr-container\",\"data-framer-name\":\"Image 4\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 4\",nodeId:\"jGlrZAzRM\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"jGlrZAzRM\",image:toResponsiveImage(QeyKN2Zea),layoutId:\"jGlrZAzRM\",name:\"Image 4\",newTab:true,padding:0,radius:28,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible33&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j7ln00\",\"data-framer-name\":\"Video 4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tn119b-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"aa6M6LGHX\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"aa6M6LGHX\",isMixedBorderRadius:false,layoutId:\"aa6M6LGHX\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:jMp_qV0FF,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible34&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l6utrz-container\",\"data-framer-name\":\"Image 5\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 5\",nodeId:\"trqfdDg9e\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"trqfdDg9e\",image:toResponsiveImage(Emvnaw48r),layoutId:\"trqfdDg9e\",name:\"Image 5\",newTab:true,padding:0,radius:28,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible35&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wt6p1k\",\"data-framer-name\":\"Video 5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bkqvy0-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"mKZaNhLwp\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"mKZaNhLwp\",isMixedBorderRadius:false,layoutId:\"mKZaNhLwp\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:DX7vK9A8H,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible36&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11vaxzp-container\",\"data-framer-name\":\"Image 6\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Image 6\",nodeId:\"UqrsWMO9D\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"UqrsWMO9D\",image:toResponsiveImage(iXO87W7Pa),layoutId:\"UqrsWMO9D\",name:\"Image 6\",newTab:true,padding:0,radius:28,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible37&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17aggqq\",\"data-framer-name\":\"Video 6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u8ud95-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"l_XeXMNab\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"l_XeXMNab\",isMixedBorderRadius:false,layoutId:\"l_XeXMNab\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:CQeIXoNSN,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),w0ZZ7jtXu&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-6797f3\",\"data-framer-name\":\"S7\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6yepmb\",children:[visible38&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(MsKfxLohx)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5090+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 20px, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(MsKfxLohx)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7001+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 20px, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(MsKfxLohx)},className:\"framer-1hth8jo\"})}),visible39&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(u_iufSgiQ)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5090+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 20px, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(u_iufSgiQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7001+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 20px, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(u_iufSgiQ)},className:\"framer-1d40qgd\"})}),visible40&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(zjTUL7UdR)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5090+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 20px, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(zjTUL7UdR)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7001+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 20px, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(zjTUL7UdR)},className:\"framer-8c89xv\"})}),visible41&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sew6s\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ld8es-container\",isModuleExternal:true,nodeId:\"KdNOPptsD\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"KdNOPptsD\",isMixedBorderRadius:false,layoutId:\"KdNOPptsD\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:NVyUQrLfl,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible42&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13q6rj5\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11p0xmx-container\",isModuleExternal:true,nodeId:\"mi_aMTKmD\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"mi_aMTKmD\",isMixedBorderRadius:false,layoutId:\"mi_aMTKmD\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:wrA81X5Iy,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible43&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lrmtd8\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hukf6u-container\",isModuleExternal:true,nodeId:\"zFHe3X0rM\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"zFHe3X0rM\",isMixedBorderRadius:false,layoutId:\"zFHe3X0rM\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:tMjtUK1BR,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})}),cG26W0pxW&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nw6eqv\",\"data-framer-name\":\"S8\",children:[visible44&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",sizes:`max((${componentViewport?.width||\"100vw\"} - 0px) / 0, 1px)`,...toResponsiveImage(OvuXKUHi8)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5616+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 0px) / 0, 1px)`,...toResponsiveImage(OvuXKUHi8)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8001+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 0px) / 0, 1px)`,...toResponsiveImage(OvuXKUHi8)},className:\"framer-1jul2lo\"})}),visible45&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wcnmyf\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fpi734-container\",isModuleExternal:true,nodeId:\"bIp9NbFOy\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"bIp9NbFOy\",isMixedBorderRadius:false,layoutId:\"bIp9NbFOy\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:KHANcKNb1,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),NIPUmyXfV&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hniuce\",\"data-framer-name\":\"S9\",children:[visible46&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,...toResponsiveImage(puASocdKU)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6142+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(puASocdKU)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9001+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(puASocdKU)},className:\"framer-ly7bha\"})}),visible47&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,...toResponsiveImage(AqQ6Eu4iZ)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6142+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(AqQ6Eu4iZ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9001+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(AqQ6Eu4iZ)},className:\"framer-16rvtwv\"})}),visible48&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-z0rtlq\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wllnf1-container\",isModuleExternal:true,nodeId:\"VMPO9RFWE\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"VMPO9RFWE\",isMixedBorderRadius:false,layoutId:\"VMPO9RFWE\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:j_I3md96D,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible49&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-49y4xh\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ybplx-container\",isModuleExternal:true,nodeId:\"EPn3U1IaO\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"EPn3U1IaO\",isMixedBorderRadius:false,layoutId:\"EPn3U1IaO\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:cdD9z97Gu,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),rZ22iAFYw&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tn1sjx\",\"data-framer-name\":\"S10\",children:[visible50&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1333,pixelWidth:2e3,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(hexrZ1YM9)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6668+0),pixelHeight:1333,pixelWidth:2e3,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(hexrZ1YM9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10001+0),pixelHeight:1333,pixelWidth:2e3,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(hexrZ1YM9)},className:\"framer-1bmwjdn\"})}),visible51&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vgt3pi\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l51kr5-container\",isModuleExternal:true,nodeId:\"WKwqK9Ifi\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"WKwqK9Ifi\",isMixedBorderRadius:false,layoutId:\"WKwqK9Ifi\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:IvHb_xiOE,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),fayIwfJ16&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wvsq82\",\"data-framer-name\":\"S11\",children:[visible52&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,...toResponsiveImage(wsHgICA5a)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7194+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(wsHgICA5a)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+11001+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(wsHgICA5a)},className:\"framer-1gjivyx\"})}),visible53&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,...toResponsiveImage(svKm7O3w7)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7194+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(svKm7O3w7)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+11001+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(svKm7O3w7)},className:\"framer-9i0tor\"})}),visible54&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fxop8l\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ub6hq2-container\",isModuleExternal:true,nodeId:\"yE0Fc_QDE\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"yE0Fc_QDE\",isMixedBorderRadius:false,layoutId:\"yE0Fc_QDE\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:ksm4RsbNo,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible55&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-121ifdz\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xof0em-container\",isModuleExternal:true,nodeId:\"iM0poueBF\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"iM0poueBF\",isMixedBorderRadius:false,layoutId:\"iM0poueBF\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:kHsGsGqkV,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),YnVyTfwGI&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mju140\",\"data-framer-name\":\"S12\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5bwx2l-container hidden-1tmzacx\",\"data-framer-name\":\"Desktop Ticker (SM2)\",isAuthoredByUser:true,isModuleExternal:true,name:\"Desktop Ticker (SM2)\",nodeId:\"OEewQ7dzk\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{gap:50,speed:100}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"OEewQ7dzk\",layoutId:\"OEewQ7dzk\",name:\"Desktop Ticker (SM2)\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vbxqz7\",\"data-framer-name\":\"Desktop Ticker (SM2)\",children:[visible56&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xig80b-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fQy00zeTD\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"fQy00zeTD\",image:toResponsiveImage(tG1gcywTB),layoutId:\"fQy00zeTD\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible57&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1le87zb\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k8nf9i-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ITpmLk6Qo\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ITpmLk6Qo\",isMixedBorderRadius:false,layoutId:\"ITpmLk6Qo\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:UspWbZk7v,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible58&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r9ax3-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jpfZq6Vav\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"jpfZq6Vav\",image:toResponsiveImage(jOV9eHmvn),layoutId:\"jpfZq6Vav\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible59&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11sx6kb\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dpdb9r-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"qXOcrzhI4\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"qXOcrzhI4\",isMixedBorderRadius:false,layoutId:\"qXOcrzhI4\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:vPFD_N1Xb,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible60&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mec2u5-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mKuN8gi4b\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"mKuN8gi4b\",image:toResponsiveImage(cQnfKk8JZ),layoutId:\"mKuN8gi4b\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible61&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ninf0l\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nrk4us-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"KBtNwXXNb\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"KBtNwXXNb\",isMixedBorderRadius:false,layoutId:\"KBtNwXXNb\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:hNsfEcV7M,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible62&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oqc6e4-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Q6c_jg6LG\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"Q6c_jg6LG\",image:toResponsiveImage(JlFvjVwc7),layoutId:\"Q6c_jg6LG\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible63&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18qiqsn\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pgrmj3-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"vLBWWbHmM\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"vLBWWbHmM\",isMixedBorderRadius:false,layoutId:\"vLBWWbHmM\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:uSvy17HBd,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible64&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iydbx2-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vD58h9fGU\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"vD58h9fGU\",image:toResponsiveImage(uw9M7Q9Al),layoutId:\"vD58h9fGU\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible65&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wpbv52\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sn0uve-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"nmb_hBPAq\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"nmb_hBPAq\",isMixedBorderRadius:false,layoutId:\"nmb_hBPAq\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:JolceZ69N,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible66&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dp88v9-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DphxpmHyI\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"DphxpmHyI\",image:toResponsiveImage(DVvOSt4a3),layoutId:\"DphxpmHyI\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible67&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-uhv6lw\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hj7bfw-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"xTr8GjVHE\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"xTr8GjVHE\",isMixedBorderRadius:false,layoutId:\"xTr8GjVHE\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:RDQbvvHWO,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible68&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-za07zn-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MIwCUU4US\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"MIwCUU4US\",image:toResponsiveImage(uxKcu082R),layoutId:\"MIwCUU4US\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible69&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q0bqu6\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1feb10e-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"lK9AJXICQ\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"lK9AJXICQ\",isMixedBorderRadius:false,layoutId:\"lK9AJXICQ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:bHtnhNmzx,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iotf6e-container hidden-4r55r hidden-rghj1h hidden-1aouiyv\",\"data-framer-name\":\"XL Ticker (SM2)\",isAuthoredByUser:true,isModuleExternal:true,name:\"XL Ticker (SM2)\",nodeId:\"wdMQffy89\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"wdMQffy89\",layoutId:\"wdMQffy89\",name:\"XL Ticker (SM2)\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b1av9b\",\"data-framer-name\":\"XL Ticker (SM2)\",children:[visible56&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e86jt8-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YBYiS3nbe\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"YBYiS3nbe\",image:toResponsiveImage(tG1gcywTB),layoutId:\"YBYiS3nbe\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible57&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pl9r8n\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17ipp2i-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"rz8F_onqU\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"rz8F_onqU\",isMixedBorderRadius:false,layoutId:\"rz8F_onqU\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:UspWbZk7v,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible58&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bluh7q-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dUusB4pkm\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"dUusB4pkm\",image:toResponsiveImage(jOV9eHmvn),layoutId:\"dUusB4pkm\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible59&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fedikj\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-160objp-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"hsHM8sSbQ\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"hsHM8sSbQ\",isMixedBorderRadius:false,layoutId:\"hsHM8sSbQ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:vPFD_N1Xb,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible60&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xtjraj-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"p5AZqU9s8\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"p5AZqU9s8\",image:toResponsiveImage(cQnfKk8JZ),layoutId:\"p5AZqU9s8\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible61&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18iegr4\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uhyayb-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"Rg5_0pecO\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Rg5_0pecO\",isMixedBorderRadius:false,layoutId:\"Rg5_0pecO\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:hNsfEcV7M,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible62&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y94efw-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QIGqrUNyf\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"QIGqrUNyf\",image:toResponsiveImage(JlFvjVwc7),layoutId:\"QIGqrUNyf\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible63&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-iimy9w\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gofu2j-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"B30pVI6vv\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"B30pVI6vv\",isMixedBorderRadius:false,layoutId:\"B30pVI6vv\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:uSvy17HBd,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible64&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11qvas5-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Y9QWrFl7D\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"Y9QWrFl7D\",image:toResponsiveImage(uw9M7Q9Al),layoutId:\"Y9QWrFl7D\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible65&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lksk97\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yzlwi0-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IqXfUhVdk\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"IqXfUhVdk\",isMixedBorderRadius:false,layoutId:\"IqXfUhVdk\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:JolceZ69N,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible66&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t7kle8-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Q2Dqzia6Z\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"Q2Dqzia6Z\",image:toResponsiveImage(DVvOSt4a3),layoutId:\"Q2Dqzia6Z\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible67&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jas2s4\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hd6rkh-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"cPVE8J9Dm\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"cPVE8J9Dm\",isMixedBorderRadius:false,layoutId:\"cPVE8J9Dm\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:RDQbvvHWO,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible68&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wy8ux6-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JiUsh98fB\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"JiUsh98fB\",image:toResponsiveImage(uxKcu082R),layoutId:\"JiUsh98fB\",newTab:true,padding:0,radius:20,shadowOptions:{shadowBlur:12,shadowColor:\"var(--token-2a0613a3-8ed1-428b-8577-050b8e2ece7f, rgba(0, 0, 0, 0.15))\",shadowX:0,shadowY:0},style:{width:\"100%\"},width:\"100%\"})})}),visible69&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1khdjwy\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10s8txa-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"INu5goJRT\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"INu5goJRT\",isMixedBorderRadius:false,layoutId:\"INu5goJRT\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:bHtnhNmzx,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),GAU3qHB6k&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yt4dqc\",\"data-framer-name\":\"S13\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kfbb43\",children:[visible70&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(kjqvP6ifN)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8246+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(kjqvP6ifN)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+13001+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(kjqvP6ifN)},className:\"framer-1l9qesf\"})}),visible71&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(L8rsp1whF)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8246+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(L8rsp1whF)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+13001+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(L8rsp1whF)},className:\"framer-wjmnya\"})}),visible72&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(BpPcFPyOx)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8246+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(BpPcFPyOx)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+13001+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(BpPcFPyOx)},className:\"framer-xwd4jy\"})}),visible73&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-frxkhx\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-otqrv8-container\",isModuleExternal:true,nodeId:\"Odi82dTqA\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Odi82dTqA\",isMixedBorderRadius:false,layoutId:\"Odi82dTqA\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:d2hVLIpeO,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible74&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17mjjlc\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-76413t-container\",isModuleExternal:true,nodeId:\"vk91rmKH9\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"vk91rmKH9\",isMixedBorderRadius:false,layoutId:\"vk91rmKH9\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:bTuzF9b3Q,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible75&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8tjx6d\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gnr9q2-container\",isModuleExternal:true,nodeId:\"Rr4eAKdd5\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Rr4eAKdd5\",isMixedBorderRadius:false,layoutId:\"Rr4eAKdd5\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:MBu1vHJI5,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})}),pzIJg1sMA&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13spnel\",\"data-framer-name\":\"S14\",children:[visible76&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(yH3mwI1UC)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8772+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(yH3mwI1UC)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+14001+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(yH3mwI1UC)},className:\"framer-tgcqe\"})}),visible77&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yazqwh\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oxprzm-container\",isModuleExternal:true,nodeId:\"sUxi698mg\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"sUxi698mg\",isMixedBorderRadius:false,layoutId:\"sUxi698mg\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:sdwXR6AmE,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),FUGKrBTLc&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-p201e7\",\"data-framer-name\":\"S15\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hby8t4\",children:[visible78&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(y0yudAvky)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9306+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(y0yudAvky)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+15001+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(y0yudAvky)},className:\"framer-178ta0s\"})}),visible79&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-joo66c\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iiqyi0-container\",isModuleExternal:true,nodeId:\"lpHCbQHar\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"lpHCbQHar\",isMixedBorderRadius:false,layoutId:\"lpHCbQHar\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:k9AIVIs69,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible80&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(sJt0HTaVK)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9306+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(sJt0HTaVK)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+15001+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(sJt0HTaVK)},className:\"framer-ulub80\"})}),visible81&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-100ckmw\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l3yc51-container\",isModuleExternal:true,nodeId:\"vXEN5RTD4\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"vXEN5RTD4\",isMixedBorderRadius:false,layoutId:\"vXEN5RTD4\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:JBXfKccPo,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})}),NsheC8x9g&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x9dip9\",\"data-framer-name\":\"S16\",children:[visible82&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(fw8PH5v5b)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9836+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(fw8PH5v5b)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+16001+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 5px) / 0, 1px)`,...toResponsiveImage(fw8PH5v5b)},className:\"framer-1j2evl2\"})}),visible83&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dilcmi\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bhvfxp-container\",isModuleExternal:true,nodeId:\"pcBLWbdhv\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"pcBLWbdhv\",isMixedBorderRadius:false,layoutId:\"pcBLWbdhv\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:NvFlaKM89,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),Z1LLeo1Fu&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dtur0e\",\"data-framer-name\":\"S17\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i9pr6t\",children:[visible84&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(Rnyi4IBsF)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10366+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(Rnyi4IBsF)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+17001+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(Rnyi4IBsF)},className:\"framer-kyjfb1\"})}),visible85&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s2pit9\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jimoeu-container\",isModuleExternal:true,nodeId:\"RAL4AHNSD\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"RAL4AHNSD\",isMixedBorderRadius:false,layoutId:\"RAL4AHNSD\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:choqpheMC,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),visible86&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{background:{alt:\"\",fit:\"fill\",pixelHeight:1464,pixelWidth:2200,sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(hBH_FRHf5)}},zw36pmcBv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10366+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(hBH_FRHf5)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+17001+0+0),pixelHeight:1464,pixelWidth:2200,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) + 5px) / 0, 1px)`,...toResponsiveImage(hBH_FRHf5)},className:\"framer-kdjm8b\"})}),visible87&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-n8yc0m\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16dptz4-container\",isModuleExternal:true,nodeId:\"WkFYuTst0\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"WkFYuTst0\",isMixedBorderRadius:false,layoutId:\"WkFYuTst0\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:ZEGxpuyN6,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jabbve\",\"data-framer-name\":\"Overview\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-1gt42hg\",\"data-styles-preset\":\"mqfzQ79Q8\",children:\"Overview\"})}),className:\"framer-1epsgnq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12lez6e\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ecxb7\",\"data-framer-name\":\"top\",children:[visible88&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12md9hm\",\"data-framer-name\":\"col1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kl55t5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-p8mmr1\",\"data-styles-preset\":\"O6PVy6EP1\",children:\"CLIENT\"})}),className:\"framer-1czitmx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s1h838\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"etDziEqlY\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"J9mt19jtH\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Y_klDGrdr,className:\"framer-1t38wv1\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-11g0cp4\",h1:\"framer-styles-preset-wpdo0r\",h2:\"framer-styles-preset-12b5vh8\",h3:\"framer-styles-preset-ovlr3y\",h4:\"framer-styles-preset-143eu6n\",h5:\"framer-styles-preset-e3dgd7\",h6:\"framer-styles-preset-1awyfa3\",img:\"framer-styles-preset-jmcfm7\",p:\"framer-styles-preset-1g6ajcz\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible89&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6kcc1c\",\"data-framer-name\":\"col1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bst2xg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-p8mmr1\",\"data-styles-preset\":\"O6PVy6EP1\",children:\"CREATIVE DIRECTOR\"})}),className:\"framer-z99mdr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qna053\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1g6ajcz\",\"data-styles-preset\":\"Urt4Jr2jY\",children:\"\\xc7a\u011F\u0131l Aygen\"})}),className:\"framer-1olmgzp\",fonts:[\"Inter\"],text:ATX3C_5NO,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible90&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ad0ylk\",\"data-framer-name\":\"col2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ctxxcz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-p8mmr1\",\"data-styles-preset\":\"O6PVy6EP1\",children:\"CONTRIBUTORS\"})}),className:\"framer-hh87cq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1exlg3i\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1g6ajcz\",\"data-styles-preset\":\"Urt4Jr2jY\",children:\"\\xc7a\u011F\u0131l Aygen - Creative Direction\"})}),className:\"framer-1ulqdl\",fonts:[\"Inter\"],text:TKfCvTFT_,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible91&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bcsg9f\",\"data-framer-name\":\"col2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vctskh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-p8mmr1\",\"data-styles-preset\":\"O6PVy6EP1\",children:\"DELIVERABLES\"})}),className:\"framer-1a7i3mc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yvafa6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1g6ajcz\",\"data-styles-preset\":\"Urt4Jr2jY\",children:\"Logo, Tagline, Name, Brand Marks, Typography, Menu,Color Platte, Pins, Coaster, Signage, Uniforms,Instagram Layouts and Curation, Photography Moodboards, Brand Guidelines, Wrapping Paper\"})}),className:\"framer-zr82dm\",fonts:[\"Inter\"],text:eiYcDJWgO,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),HHB5dWyfl&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-apnuv1\",\"data-border\":true,\"data-framer-name\":\"bottom\",children:[visible92&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l31cqw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-p8mmr1\",\"data-styles-preset\":\"O6PVy6EP1\",children:\"AWARDS\"})}),className:\"framer-11pe869\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4qoppg\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"etDziEqlY\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"J9mt19jtH\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ZYyt5g2_a,className:\"framer-fvck6u\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-11g0cp4\",h1:\"framer-styles-preset-wpdo0r\",h2:\"framer-styles-preset-12b5vh8\",h3:\"framer-styles-preset-ovlr3y\",h4:\"framer-styles-preset-143eu6n\",h5:\"framer-styles-preset-e3dgd7\",h6:\"framer-styles-preset-1awyfa3\",img:\"framer-styles-preset-jmcfm7\",p:\"framer-styles-preset-1g6ajcz\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),visible93&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y07to6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-p8mmr1\",\"data-styles-preset\":\"O6PVy6EP1\",children:\"FEATURED IN\"})}),className:\"framer-1uay42e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"etDziEqlY\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"J9mt19jtH\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:zNCJjiinn,className:\"framer-1w7sg2z\",\"data-framer-cursor\":\"1a4m3nj\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-u93pi4\",h1:\"framer-styles-preset-wpdo0r\",h2:\"framer-styles-preset-12b5vh8\",h3:\"framer-styles-preset-ovlr3y\",h4:\"framer-styles-preset-143eu6n\",h5:\"framer-styles-preset-e3dgd7\",h6:\"framer-styles-preset-1awyfa3\",img:\"framer-styles-preset-jmcfm7\",p:\"framer-styles-preset-1g6ajcz\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yvay5d\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ki39u\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ELWNJ3xPh\",data:Work,type:\"Collection\"},select:[{collection:\"ELWNJ3xPh\",name:\"lL4I9kMTc\",type:\"Identifier\"},{collection:\"ELWNJ3xPh\",name:\"Jp7uxhmFC\",type:\"Identifier\"},{collection:\"ELWNJ3xPh\",name:\"YP0sSsXTf\",type:\"Identifier\"},{collection:\"ELWNJ3xPh\",name:\"wM5IcSTqT\",type:\"Identifier\"},{collection:\"ELWNJ3xPh\",name:\"RTjsdQDMH\",type:\"Identifier\"},{collection:\"ELWNJ3xPh\",name:\"YBAuAw4FN\",type:\"Identifier\"},{collection:\"ELWNJ3xPh\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{arguments:[{collection:\"ELWNJ3xPh\",name:\"Jp7uxhmFC\",type:\"Identifier\"},{type:\"LiteralValue\",value:Jp7uxhmFC}],functionName:\"CONTAINS\",type:\"FunctionCall\"}}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection5?.map(({id:idELWNJ3xPh,Jp7uxhmFC:Jp7uxhmFCELWNJ3xPh,lL4I9kMTc:lL4I9kMTcELWNJ3xPh,RTjsdQDMH:RTjsdQDMHELWNJ3xPh,wM5IcSTqT:wM5IcSTqTELWNJ3xPh,YBAuAw4FN:YBAuAw4FNELWNJ3xPh,YP0sSsXTf:YP0sSsXTfELWNJ3xPh},index5)=>{lL4I9kMTcELWNJ3xPh??=true;Jp7uxhmFCELWNJ3xPh??=\"\";YP0sSsXTfELWNJ3xPh??=\"\";wM5IcSTqTELWNJ3xPh??=\"\";YBAuAw4FNELWNJ3xPh??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ELWNJ3xPh-${idELWNJ3xPh}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{YBAuAw4FN:YBAuAw4FNELWNJ3xPh},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kwjli\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean1(lL4I9kMTcELWNJ3xPh,activeLocale,{YBAuAw4FNELWNJ3xPh}),implicitPathVariables:undefined},{href:convertFromBoolean1(lL4I9kMTcELWNJ3xPh,activeLocale,{YBAuAw4FNELWNJ3xPh}),implicitPathVariables:undefined},{href:convertFromBoolean1(lL4I9kMTcELWNJ3xPh,activeLocale,{YBAuAw4FNELWNJ3xPh}),implicitPathVariables:undefined},{href:convertFromBoolean1(lL4I9kMTcELWNJ3xPh,activeLocale,{YBAuAw4FNELWNJ3xPh}),implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{width:`calc(${componentViewport?.width||\"100vw\"} - 10px)`,y:undefined},zw36pmcBv:{y:(componentViewport?.y||0)+0+8923+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+0+13042+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jgzwnv-container\",nodeId:\"W7MemCNgZ\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfITZpF2j:{iACFmCHPC:resolvedLinks[3],variant:convertFromBoolean4(lL4I9kMTcELWNJ3xPh,activeLocale)},yBAwnv50I:{iACFmCHPC:resolvedLinks[2],variant:convertFromBoolean3(equals(lL4I9kMTcELWNJ3xPh,true),activeLocale)},zw36pmcBv:{iACFmCHPC:resolvedLinks[1],variant:convertFromBoolean2(equals(lL4I9kMTcELWNJ3xPh,true),activeLocale)}},children:/*#__PURE__*/_jsx(WorkItem,{AAtnpLJBJ:wM5IcSTqTELWNJ3xPh,BYCgduDv3:Jp7uxhmFCELWNJ3xPh,cPLm5DoAC:YP0sSsXTfELWNJ3xPh,GYMixMhZX:\"1a4m3nj\",height:\"100%\",hUWuoVOWu:\"2pl2d9\",iACFmCHPC:resolvedLinks[0],id:\"W7MemCNgZ\",layoutId:\"W7MemCNgZ\",style:{width:\"100%\"},variant:convertFromBoolean(equals(lL4I9kMTcELWNJ3xPh,true),activeLocale),width:\"100%\",XSbnfzRRU:toResponsiveImage(RTjsdQDMHELWNJ3xPh)})})})})})})})})},idELWNJ3xPh);}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ae6p2\"})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yBAwnv50I:{y:undefined},zw36pmcBv:{y:(componentViewport?.y||0)+0+9030}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+13149,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nyeo6y-container\",nodeId:\"ZCLmS_edi\",rendersWithMotion:true,scopeId:\"kpl2lluMc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nfITZpF2j:{variant:\"ih0sRwPOu\"},yBAwnv50I:{variant:\"pSWXOPURG\"},zw36pmcBv:{variant:\"VC1GEAJDs\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ZCLmS_edi\",layoutId:\"ZCLmS_edi\",oKN6PL4IC:\"1a4m3nj\",style:{width:\"100%\"},variant:\"Rfrb73faq\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QkUjS.framer-h1vw06, .framer-QkUjS .framer-h1vw06 { display: block; }\",\".framer-QkUjS.framer-4r55r { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-QkUjS .framer-1ip8cce { background-color: #ff0000; flex: none; height: 173px; left: 0px; opacity: 0; overflow: visible; pointer-events: none; position: absolute; top: 1px; width: 223px; z-index: 6; }\",\".framer-QkUjS .framer-1wm332z { background-color: #ff0000; flex: none; height: 173px; left: 0px; opacity: 0; overflow: visible; pointer-events: none; position: absolute; top: 664px; width: 223px; z-index: 6; }\",\".framer-QkUjS .framer-1bapsv6 { background-color: #ff0000; flex: none; height: 173px; left: 0px; opacity: 0; overflow: visible; pointer-events: none; position: absolute; top: 748px; width: 223px; z-index: 6; }\",\".framer-QkUjS .framer-1kpa7dk { background-color: #ff0000; flex: none; height: 54px; left: 0px; opacity: 0; overflow: visible; pointer-events: none; position: absolute; top: 20px; width: 39px; z-index: 6; }\",\".framer-QkUjS .framer-7kf8f3-container { flex: none; height: auto; position: fixed; right: 10px; top: 10px; width: auto; z-index: 10; }\",\".framer-QkUjS.framer-dm61a7 { background-color: #ffffff; inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-QkUjS.framer-ops5qs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 100%; justify-content: center; left: 0px; overflow: visible; padding: 5px 15px 125px 15px; position: fixed; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-QkUjS .framer-z97j4v, .framer-QkUjS .framer-k7axax, .framer-QkUjS .framer-wbr3rv, .framer-QkUjS .framer-d7ac2r, .framer-QkUjS .framer-vysain, .framer-QkUjS .framer-4qrn1k, .framer-QkUjS .framer-d81chr, .framer-QkUjS .framer-1muhhqh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QkUjS .framer-1uszt3o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-fnv2dg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QkUjS .framer-1gdaf8p { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-8ef94e85-58c2-4a00-9504-10cb419364ed, #030ffc); border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 34px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-13gdjo-container, .framer-QkUjS .framer-157tll2-container, .framer-QkUjS .framer-6nitqj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-QkUjS .framer-6krgn2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100px; }\",\".framer-QkUjS .framer-1r3i7u3, .framer-QkUjS .framer-11pe869 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QkUjS .framer-5zvp5p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: flex-start; left: 10px; overflow: visible; padding: 0px; position: absolute; text-decoration: none; top: 10px; width: 232px; z-index: 1; }\",\".framer-QkUjS .framer-ei8jwj-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-QkUjS .framer-5x85m5-container { flex: none; height: auto; left: 50%; position: fixed; top: 20px; transform: translateX(-50%); width: auto; z-index: 10; }\",\".framer-QkUjS .framer-p9xyob { align-content: flex-start; align-items: flex-start; aspect-ratio: 4.545454545454546 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 289px); justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-QkUjS .framer-11guujd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; overflow: visible; padding: 5px 5px 0px 5px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-1hzolzb { align-content: flex-start; align-items: flex-start; aspect-ratio: 4.199288256227758 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 284px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-aojsh6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-QkUjS .framer-1ucq9mn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 5px; position: relative; width: 100%; z-index: 2; }\",\".framer-QkUjS .framer-m7o7au { align-content: center; align-items: center; background-color: var(--o4yuv9, var(--wuw60c)); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-172dad { align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-rx8im9 { aspect-ratio: 1.0452961672473868 / 1; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 607px); z-index: 1; }\",\".framer-QkUjS .framer-11gem6w { 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 20px 0px 20px; position: relative; width: 100%; z-index: 3; }\",\".framer-QkUjS .framer-drc9tj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-QkUjS .framer-uupzi { --border-bottom-width: 0px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 10px 40px 10px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-igqx2c, .framer-QkUjS .framer-1wbarai { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1ialjb9, .framer-QkUjS .framer-s657mb, .framer-QkUjS .framer-1l31cqw { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-103hiqn, .framer-QkUjS .framer-1kzqnrf, .framer-QkUjS .framer-18y8gw4, .framer-QkUjS .framer-k3ra4e, .framer-QkUjS .framer-9f3z3i, .framer-QkUjS .framer-1r40e35, .framer-QkUjS .framer-osjj7w, .framer-QkUjS .framer-129ircx, .framer-QkUjS .framer-je8usk, .framer-QkUjS .framer-1fyytv8, .framer-QkUjS .framer-806e08, .framer-QkUjS .framer-3i5pi, .framer-QkUjS .framer-173czbh, .framer-QkUjS .framer-1oofcz3, .framer-QkUjS .framer-1n33zc5, .framer-QkUjS .framer-ydbtlb, .framer-QkUjS .framer-130q5o4, .framer-QkUjS .framer-1xxsioc, .framer-QkUjS .framer-2a8g6m, .framer-QkUjS .framer-1x9gfv0, .framer-QkUjS .framer-1hpzkgx, .framer-QkUjS .framer-1hk7wk2, .framer-QkUjS .framer-1tv3st0, .framer-QkUjS .framer-rdjkvm, .framer-QkUjS .framer-268qob, .framer-QkUjS .framer-1glvwkl, .framer-QkUjS .framer-1ngdy2n, .framer-QkUjS .framer-2p218f, .framer-QkUjS .framer-134v215, .framer-QkUjS .framer-qq8ljb, .framer-QkUjS .framer-4u35kj, .framer-QkUjS .framer-1y88fgb, .framer-QkUjS .framer-15pfe5e, .framer-QkUjS .framer-4fqion, .framer-QkUjS .framer-mbzcgx, .framer-QkUjS .framer-1epsgnq, .framer-QkUjS .framer-1czitmx, .framer-QkUjS .framer-1t38wv1, .framer-QkUjS .framer-z99mdr, .framer-QkUjS .framer-1olmgzp, .framer-QkUjS .framer-hh87cq, .framer-QkUjS .framer-1ulqdl, .framer-QkUjS .framer-1a7i3mc, .framer-QkUjS .framer-zr82dm, .framer-QkUjS .framer-fvck6u, .framer-QkUjS .framer-1uay42e { --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-QkUjS .framer-1h95vpo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-1o3aszu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-kdewor { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-QkUjS .framer-wtbyqg, .framer-QkUjS .framer-1lth8pb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1rbbvs8, .framer-QkUjS .framer-mh3vuk { align-content: flex-start; align-items: flex-start; display: flex; flex: 3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-xce9qs, .framer-QkUjS .framer-10jw3c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 3px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-1ke4mmr, .framer-QkUjS .framer-1p7vi3d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-QkUjS .framer-obwrlh, .framer-QkUjS .framer-1944n9d { align-content: flex-start; align-items: flex-start; display: flex; flex: 4 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1al7ipg { --border-bottom-width: 0px; --border-color: #ffffff; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 10px 40px 10px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-xnddh4, .framer-QkUjS .framer-1vb7c5y { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-1nohe4e { align-content: center; align-items: center; aspect-ratio: 1.5 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 805px); justify-content: center; overflow: visible; padding: 0px 5px 5px 5px; position: relative; width: 100%; z-index: 2; }\",\".framer-QkUjS .framer-11wxecf, .framer-QkUjS .framer-1hyctjr { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1); flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-w3brse, .framer-QkUjS .framer-oubwhs, .framer-QkUjS .framer-128jac3, .framer-QkUjS .framer-sew6s, .framer-QkUjS .framer-13q6rj5, .framer-QkUjS .framer-1lrmtd8, .framer-QkUjS .framer-1wcnmyf, .framer-QkUjS .framer-z0rtlq, .framer-QkUjS .framer-49y4xh, .framer-QkUjS .framer-1vgt3pi, .framer-QkUjS .framer-fxop8l, .framer-QkUjS .framer-121ifdz, .framer-QkUjS .framer-17mjjlc, .framer-QkUjS .framer-8tjx6d, .framer-QkUjS .framer-1yazqwh, .framer-QkUjS .framer-joo66c, .framer-QkUjS .framer-1dilcmi, .framer-QkUjS .framer-1s2pit9, .framer-QkUjS .framer-n8yc0m { align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0px 3px 2px var(--token-924b4666-9004-4ec1-a425-f880e8f470fc, rgba(0, 0, 0, 0.1)); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-1t8lqnm-container, .framer-QkUjS .framer-17rtyd0-container, .framer-QkUjS .framer-1mi4ix7-container, .framer-QkUjS .framer-1bd99bi-container, .framer-QkUjS .framer-1d3egb9-container, .framer-QkUjS .framer-1tvauze-container, .framer-QkUjS .framer-1nht4sa-container, .framer-QkUjS .framer-3ld8es-container, .framer-QkUjS .framer-11p0xmx-container, .framer-QkUjS .framer-hukf6u-container, .framer-QkUjS .framer-1fpi734-container, .framer-QkUjS .framer-1wllnf1-container, .framer-QkUjS .framer-10ybplx-container, .framer-QkUjS .framer-l51kr5-container, .framer-QkUjS .framer-1ub6hq2-container, .framer-QkUjS .framer-1xof0em-container, .framer-QkUjS .framer-otqrv8-container, .framer-QkUjS .framer-76413t-container, .framer-QkUjS .framer-gnr9q2-container, .framer-QkUjS .framer-1oxprzm-container, .framer-QkUjS .framer-iiqyi0-container, .framer-QkUjS .framer-1l3yc51-container, .framer-QkUjS .framer-bhvfxp-container, .framer-QkUjS .framer-1jimoeu-container, .framer-QkUjS .framer-16dptz4-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-QkUjS .framer-q3jr1a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: visible; padding: 5px; position: relative; width: 100%; z-index: 2; }\",\".framer-QkUjS .framer-k4ukhs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1r7ulas { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 76px; transform: translateX(-50%); white-space: pre; width: auto; z-index: 3; }\",\".framer-QkUjS .framer-za83wc-container, .framer-QkUjS .framer-1p7aalw-container, .framer-QkUjS .framer-zytc5h-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 2; }\",\".framer-QkUjS .framer-1dfcu2c, .framer-QkUjS .framer-sp6git, .framer-QkUjS .framer-1davbxl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 90px 20px 90px; position: relative; width: 1070px; }\",\".framer-QkUjS .framer-lrn4u6, .framer-QkUjS .framer-oz7uv4, .framer-QkUjS .framer-1u1ss3w, .framer-QkUjS .framer-k1487a { -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background-color: rgba(255, 255, 255, 0.4); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.08), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.08), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.08), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.08); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 420px; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-cqwb8b, .framer-QkUjS .framer-f3petl, .framer-QkUjS .framer-14hjfe3, .framer-QkUjS .framer-e1sisv { align-content: center; align-items: center; aspect-ratio: 1.25 / 1; border-bottom-left-radius: 28px; border-top-left-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 420px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 525px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-13ad06o-container, .framer-QkUjS .framer-k7pccw-container, .framer-QkUjS .framer-6af15w-container, .framer-QkUjS .framer-1jc3888-container, .framer-QkUjS .framer-ir080v-container, .framer-QkUjS .framer-122xsuf-container, .framer-QkUjS .framer-16g5k5z-container, .framer-QkUjS .framer-12t4axu-container, .framer-QkUjS .framer-1wl4ew2-container, .framer-QkUjS .framer-m26wp8-container, .framer-QkUjS .framer-9xbmrv-container, .framer-QkUjS .framer-1dnd8kl-container, .framer-QkUjS .framer-1ymtey1-container, .framer-QkUjS .framer-sk272e-container, .framer-QkUjS .framer-4kkw9e-container, .framer-QkUjS .framer-1v11ba4-container, .framer-QkUjS .framer-12qe4yn-container, .framer-QkUjS .framer-4hasha-container, .framer-QkUjS .framer-1x486p5-container, .framer-QkUjS .framer-tn119b-container, .framer-QkUjS .framer-1bkqvy0-container, .framer-QkUjS .framer-1u8ud95-container, .framer-QkUjS .framer-5bwx2l-container, .framer-QkUjS .framer-k8nf9i-container, .framer-QkUjS .framer-1dpdb9r-container, .framer-QkUjS .framer-1nrk4us-container, .framer-QkUjS .framer-1pgrmj3-container, .framer-QkUjS .framer-1sn0uve-container, .framer-QkUjS .framer-1hj7bfw-container, .framer-QkUjS .framer-1feb10e-container, .framer-QkUjS .framer-1iotf6e-container, .framer-QkUjS .framer-17ipp2i-container, .framer-QkUjS .framer-160objp-container, .framer-QkUjS .framer-uhyayb-container, .framer-QkUjS .framer-gofu2j-container, .framer-QkUjS .framer-yzlwi0-container, .framer-QkUjS .framer-hd6rkh-container, .framer-QkUjS .framer-10s8txa-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-1rjb4gg, .framer-QkUjS .framer-mlmrvk, .framer-QkUjS .framer-1qbzag9, .framer-QkUjS .framer-zb0kzh { align-content: center; align-items: center; aspect-ratio: 1.25 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 420px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 525px; }\",\".framer-QkUjS .framer-kicjjd, .framer-QkUjS .framer-mebe9c, .framer-QkUjS .framer-19hjp8e, .framer-QkUjS .framer-dem56v { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 60px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1kls66l, .framer-QkUjS .framer-1qnar7s, .framer-QkUjS .framer-17q6bw7, .framer-QkUjS .framer-9pu4a5, .framer-QkUjS .framer-19wuyzh, .framer-QkUjS .framer-l4377h, .framer-QkUjS .framer-8mgv58, .framer-QkUjS .framer-2w6guj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-eyndo0 { align-content: center; align-items: center; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 90px 20px 90px; position: relative; width: 1070px; }\",\".framer-QkUjS .framer-h0elly, .framer-QkUjS .framer-11ytonu, .framer-QkUjS .framer-19zvh2n, .framer-QkUjS .framer-b85yuq { align-content: center; align-items: center; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 1400px; }\",\".framer-QkUjS .framer-15jfcld { -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background-color: rgba(255, 255, 255, 0.4); border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.08), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.08), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.08), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.08); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1q0acmc, .framer-QkUjS .framer-1t9o67k, .framer-QkUjS .framer-17iqf6e, .framer-QkUjS .framer-1wooirp, .framer-QkUjS .framer-1pbiwl9 { align-content: center; align-items: center; aspect-ratio: 1.248 / 1; border-bottom-left-radius: 28px; border-top-left-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 500px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 624px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-18w7tj3, .framer-QkUjS .framer-8n13c, .framer-QkUjS .framer-1h7w1uf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 484px; justify-content: flex-start; overflow: hidden; padding: 60px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1tfzt2s, .framer-QkUjS .framer-15w70aq, .framer-QkUjS .framer-1s7cbod { -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background-color: rgba(255, 255, 255, 0.4); border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.08), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.08), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.08), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.08); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-157xezt, .framer-QkUjS .framer-mgg7ve, .framer-QkUjS .framer-1uwvmii { align-content: center; align-items: center; aspect-ratio: 1.248 / 1; border-bottom-left-radius: 48px; border-top-left-radius: 48px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 500px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 624px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-ftpw8b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: flex-start; overflow: hidden; padding: 60px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1mfslg6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 966px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 380px; }\",\".framer-QkUjS .framer-v6z2d0 { -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background-color: rgba(255, 255, 255, 0.4); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.08), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.08), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.08), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.08); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1ehapj5, .framer-QkUjS .framer-1xzpxrl, .framer-QkUjS .framer-1pckm47, .framer-QkUjS .framer-qeeqm4, .framer-QkUjS .framer-yo59u1, .framer-QkUjS .framer-1pxvdl3, .framer-QkUjS .framer-gk5ua7, .framer-QkUjS .framer-6nv7v5 { align-content: center; align-items: center; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 285px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-odq8gy-container, .framer-QkUjS .framer-2q3mmm-container, .framer-QkUjS .framer-yvajwl-container, .framer-QkUjS .framer-18rk4dj-container { flex: none; height: 285px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-vlvjl, .framer-QkUjS .framer-1xvd8c4, .framer-QkUjS .framer-vsroo2, .framer-QkUjS .framer-em4pu7 { 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: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-fp466h, .framer-QkUjS .framer-1i4k5v7, .framer-QkUjS .framer-qg4rh7, .framer-QkUjS .framer-1y9kpjj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1dc4fom { --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; z-index: 1; }\",\".framer-QkUjS .framer-13ug0sh, .framer-QkUjS .framer-1yjhmry, .framer-QkUjS .framer-873yqu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 380px; }\",\".framer-QkUjS .framer-1v2os0y, .framer-QkUjS .framer-1trcqcw, .framer-QkUjS .framer-1fccbbh { -webkit-backdrop-filter: blur(15px); align-content: center; align-items: center; backdrop-filter: blur(15px); background-color: rgba(255, 255, 255, 0.4); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.08), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.08), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.08), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.08); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 380px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-rzej2k { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.08), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.08), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.08), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.08); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-QkUjS .framer-tfk17c, .framer-QkUjS .framer-3hot61, .framer-QkUjS .framer-d6po96, .framer-QkUjS .framer-1hniuce, .framer-QkUjS .framer-tn1sjx, .framer-QkUjS .framer-1wvsq82, .framer-QkUjS .framer-13spnel, .framer-QkUjS .framer-1x9dip9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 5px 5px 5px; position: relative; width: 100%; z-index: 2; }\",\".framer-QkUjS .framer-ol49hx, .framer-QkUjS .framer-1hth8jo, .framer-QkUjS .framer-1d40qgd, .framer-QkUjS .framer-8c89xv, .framer-QkUjS .framer-ly7bha, .framer-QkUjS .framer-16rvtwv, .framer-QkUjS .framer-1bmwjdn, .framer-QkUjS .framer-1gjivyx, .framer-QkUjS .framer-9i0tor, .framer-QkUjS .framer-1l9qesf, .framer-QkUjS .framer-wjmnya, .framer-QkUjS .framer-178ta0s, .framer-QkUjS .framer-ulub80, .framer-QkUjS .framer-kyjfb1 { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0px 3px 2px var(--token-924b4666-9004-4ec1-a425-f880e8f470fc, rgba(0, 0, 0, 0.1)); flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1b6q2y4, .framer-QkUjS .framer-ktli4q, .framer-QkUjS .framer-vbvp5, .framer-QkUjS .framer-13fw454 { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1); flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-QkUjS .framer-rle7w0, .framer-QkUjS .framer-1s1alpg, .framer-QkUjS .framer-1bqu2n { align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-12kw03a, .framer-QkUjS .framer-frxkhx { align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-1tp7w3h, .framer-QkUjS .framer-1nw6eqv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 5px 5px 5px; position: relative; width: 100%; z-index: 2; }\",\".framer-QkUjS .framer-14ct4o1, .framer-QkUjS .framer-1mju140 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 0px 5px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-QkUjS .framer-18v0xtq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; min-height: 587px; min-width: 1380px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QkUjS .framer-1jl0wfp-container, .framer-QkUjS .framer-1xjwdib-container, .framer-QkUjS .framer-1lpjmyl-container, .framer-QkUjS .framer-1xno48r-container, .framer-QkUjS .framer-ox4ucn-container, .framer-QkUjS .framer-1hg2s28-container { flex: none; height: auto; position: relative; width: 338px; }\",\".framer-QkUjS .framer-11ucnt5, .framer-QkUjS .framer-duw6k9, .framer-QkUjS .framer-9nf5xu, .framer-QkUjS .framer-zctd6d, .framer-QkUjS .framer-pbern1, .framer-QkUjS .framer-nociyf { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 330px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-10jmh30 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; min-height: 768px; min-width: 1788px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QkUjS .framer-3tb624-container, .framer-QkUjS .framer-1yeasuq-container, .framer-QkUjS .framer-d5zcz2-container, .framer-QkUjS .framer-1caetwr-container, .framer-QkUjS .framer-l6utrz-container, .framer-QkUjS .framer-11vaxzp-container, .framer-QkUjS .framer-1e86jt8-container, .framer-QkUjS .framer-bluh7q-container, .framer-QkUjS .framer-1xtjraj-container, .framer-QkUjS .framer-y94efw-container, .framer-QkUjS .framer-11qvas5-container, .framer-QkUjS .framer-t7kle8-container, .framer-QkUjS .framer-wy8ux6-container { flex: none; height: auto; position: relative; width: 432px; }\",\".framer-QkUjS .framer-nfxwao, .framer-QkUjS .framer-16zcbdm, .framer-QkUjS .framer-n8onb1, .framer-QkUjS .framer-1j7ln00, .framer-QkUjS .framer-1wt6p1k { align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 768px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 432px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-17aggqq { align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 740px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 432px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-6797f3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 10px 5px 10px; position: relative; width: 100%; z-index: 2; }\",\".framer-QkUjS .framer-6yepmb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1jul2lo, .framer-QkUjS .framer-tgcqe, .framer-QkUjS .framer-1j2evl2 { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0px 3px 2px var(--token-924b4666-9004-4ec1-a425-f880e8f470fc, rgba(0, 0, 0, 0.1)); flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-vbxqz7 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; min-height: 413px; min-width: 3130px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QkUjS .framer-1xig80b-container, .framer-QkUjS .framer-r9ax3-container, .framer-QkUjS .framer-1mec2u5-container, .framer-QkUjS .framer-oqc6e4-container, .framer-QkUjS .framer-1iydbx2-container, .framer-QkUjS .framer-1dp88v9-container, .framer-QkUjS .framer-za07zn-container { flex: none; height: auto; position: relative; width: 330px; }\",\".framer-QkUjS .framer-1le87zb, .framer-QkUjS .framer-11sx6kb, .framer-QkUjS .framer-1ninf0l, .framer-QkUjS .framer-18qiqsn, .framer-QkUjS .framer-wpbv52, .framer-QkUjS .framer-uhv6lw, .framer-QkUjS .framer-1q0bqu6, .framer-QkUjS .framer-iimy9w { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 330px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-b1av9b { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; min-height: 540px; min-width: 4048px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QkUjS .framer-1pl9r8n, .framer-QkUjS .framer-1fedikj, .framer-QkUjS .framer-18iegr4, .framer-QkUjS .framer-1lksk97, .framer-QkUjS .framer-1jas2s4, .framer-QkUjS .framer-1khdjwy { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 432px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-1yt4dqc, .framer-QkUjS .framer-p201e7, .framer-QkUjS .framer-1dtur0e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 5px 5px 5px; position: relative; width: 100%; z-index: 2; }\",\".framer-QkUjS .framer-1kfbb43, .framer-QkUjS .framer-hby8t4, .framer-QkUjS .framer-1i9pr6t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-xwd4jy, .framer-QkUjS .framer-kdjm8b { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.25); flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-QkUjS .framer-100ckmw { align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.08), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.08), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.08), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.08); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-jabbve { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 120px 40px 200px 40px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-12lez6e { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.08), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.08), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.08), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.08); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 20px 30px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QkUjS .framer-8ecxb7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 100px; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-12md9hm, .framer-QkUjS .framer-6kcc1c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-kl55t5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 135px; overflow: hidden; padding: 0px; position: relative; width: 135px; }\",\".framer-QkUjS .framer-s1h838, .framer-QkUjS .framer-1qna053, .framer-QkUjS .framer-1exlg3i, .framer-QkUjS .framer-yvafa6, .framer-QkUjS .framer-4qoppg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-bst2xg { 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: 185px; overflow: hidden; padding: 0px; position: relative; width: 185px; }\",\".framer-QkUjS .framer-1ad0ylk, .framer-QkUjS .framer-bcsg9f { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-ctxxcz { 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: 255px; overflow: hidden; padding: 0px; position: relative; width: 255px; }\",\".framer-QkUjS .framer-1vctskh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-apnuv1 { --border-bottom-width: 0px; --border-color: #222222; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 77px; overflow: hidden; padding: 30px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-y07to6 { align-content: center; align-items: center; display: flex; flex: 4 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QkUjS .framer-1w7sg2z { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QkUjS .framer-yvay5d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-4ki39u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-kwjli { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QkUjS .framer-jgzwnv-container, .framer-QkUjS .framer-nyeo6y-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-QkUjS .framer-5ae6p2 { background-color: #000000; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; z-index: 4; }\",\"@supports (color: color(display-p3 1 1 1)) { .framer-QkUjS .framer-m7o7au { --o4yuv9: var(--1t6p24t); --o4yuv9: var(--1t6p24t); --o4yuv9: var(--1t6p24t); --o4yuv9: var(--1t6p24t); } }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QkUjS.framer-4r55r, .framer-QkUjS.framer-ops5qs, .framer-QkUjS .framer-1uszt3o, .framer-QkUjS .framer-1gdaf8p, .framer-QkUjS .framer-6krgn2, .framer-QkUjS .framer-5zvp5p, .framer-QkUjS .framer-p9xyob, .framer-QkUjS .framer-11guujd, .framer-QkUjS .framer-1hzolzb, .framer-QkUjS .framer-aojsh6, .framer-QkUjS .framer-1ucq9mn, .framer-QkUjS .framer-m7o7au, .framer-QkUjS .framer-172dad, .framer-QkUjS .framer-11gem6w, .framer-QkUjS .framer-drc9tj, .framer-QkUjS .framer-uupzi, .framer-QkUjS .framer-igqx2c, .framer-QkUjS .framer-1ialjb9, .framer-QkUjS .framer-1h95vpo, .framer-QkUjS .framer-1o3aszu, .framer-QkUjS .framer-wtbyqg, .framer-QkUjS .framer-1rbbvs8, .framer-QkUjS .framer-xce9qs, .framer-QkUjS .framer-1ke4mmr, .framer-QkUjS .framer-obwrlh, .framer-QkUjS .framer-1al7ipg, .framer-QkUjS .framer-1wbarai, .framer-QkUjS .framer-s657mb, .framer-QkUjS .framer-xnddh4, .framer-QkUjS .framer-1vb7c5y, .framer-QkUjS .framer-1lth8pb, .framer-QkUjS .framer-mh3vuk, .framer-QkUjS .framer-10jw3c, .framer-QkUjS .framer-1p7vi3d, .framer-QkUjS .framer-1944n9d, .framer-QkUjS .framer-1nohe4e, .framer-QkUjS .framer-w3brse, .framer-QkUjS .framer-q3jr1a, .framer-QkUjS .framer-k4ukhs, .framer-QkUjS .framer-1dfcu2c, .framer-QkUjS .framer-lrn4u6, .framer-QkUjS .framer-cqwb8b, .framer-QkUjS .framer-1rjb4gg, .framer-QkUjS .framer-kicjjd, .framer-QkUjS .framer-1kls66l, .framer-QkUjS .framer-sp6git, .framer-QkUjS .framer-oz7uv4, .framer-QkUjS .framer-f3petl, .framer-QkUjS .framer-mlmrvk, .framer-QkUjS .framer-mebe9c, .framer-QkUjS .framer-1qnar7s, .framer-QkUjS .framer-1davbxl, .framer-QkUjS .framer-1u1ss3w, .framer-QkUjS .framer-14hjfe3, .framer-QkUjS .framer-1qbzag9, .framer-QkUjS .framer-19hjp8e, .framer-QkUjS .framer-17q6bw7, .framer-QkUjS .framer-eyndo0, .framer-QkUjS .framer-k1487a, .framer-QkUjS .framer-e1sisv, .framer-QkUjS .framer-zb0kzh, .framer-QkUjS .framer-dem56v, .framer-QkUjS .framer-9pu4a5, .framer-QkUjS .framer-h0elly, .framer-QkUjS .framer-15jfcld, .framer-QkUjS .framer-1q0acmc, .framer-QkUjS .framer-1t9o67k, .framer-QkUjS .framer-18w7tj3, .framer-QkUjS .framer-19wuyzh, .framer-QkUjS .framer-11ytonu, .framer-QkUjS .framer-1tfzt2s, .framer-QkUjS .framer-17iqf6e, .framer-QkUjS .framer-157xezt, .framer-QkUjS .framer-8n13c, .framer-QkUjS .framer-l4377h, .framer-QkUjS .framer-19zvh2n, .framer-QkUjS .framer-15w70aq, .framer-QkUjS .framer-1wooirp, .framer-QkUjS .framer-mgg7ve, .framer-QkUjS .framer-1h7w1uf, .framer-QkUjS .framer-8mgv58, .framer-QkUjS .framer-b85yuq, .framer-QkUjS .framer-1s7cbod, .framer-QkUjS .framer-1pbiwl9, .framer-QkUjS .framer-1uwvmii, .framer-QkUjS .framer-ftpw8b, .framer-QkUjS .framer-2w6guj, .framer-QkUjS .framer-1mfslg6, .framer-QkUjS .framer-v6z2d0, .framer-QkUjS .framer-1ehapj5, .framer-QkUjS .framer-1xzpxrl, .framer-QkUjS .framer-vlvjl, .framer-QkUjS .framer-fp466h, .framer-QkUjS .framer-13ug0sh, .framer-QkUjS .framer-1v2os0y, .framer-QkUjS .framer-1pckm47, .framer-QkUjS .framer-qeeqm4, .framer-QkUjS .framer-1xvd8c4, .framer-QkUjS .framer-1i4k5v7, .framer-QkUjS .framer-1yjhmry, .framer-QkUjS .framer-1trcqcw, .framer-QkUjS .framer-yo59u1, .framer-QkUjS .framer-1pxvdl3, .framer-QkUjS .framer-vsroo2, .framer-QkUjS .framer-qg4rh7, .framer-QkUjS .framer-873yqu, .framer-QkUjS .framer-1fccbbh, .framer-QkUjS .framer-gk5ua7, .framer-QkUjS .framer-6nv7v5, .framer-QkUjS .framer-em4pu7, .framer-QkUjS .framer-1y9kpjj, .framer-QkUjS .framer-tfk17c, .framer-QkUjS .framer-oubwhs, .framer-QkUjS .framer-rle7w0, .framer-QkUjS .framer-3hot61, .framer-QkUjS .framer-12kw03a, .framer-QkUjS .framer-d6po96, .framer-QkUjS .framer-1s1alpg, .framer-QkUjS .framer-1bqu2n, .framer-QkUjS .framer-1tp7w3h, .framer-QkUjS .framer-128jac3, .framer-QkUjS .framer-14ct4o1, .framer-QkUjS .framer-18v0xtq, .framer-QkUjS .framer-11ucnt5, .framer-QkUjS .framer-duw6k9, .framer-QkUjS .framer-9nf5xu, .framer-QkUjS .framer-zctd6d, .framer-QkUjS .framer-pbern1, .framer-QkUjS .framer-nociyf, .framer-QkUjS .framer-10jmh30, .framer-QkUjS .framer-nfxwao, .framer-QkUjS .framer-16zcbdm, .framer-QkUjS .framer-n8onb1, .framer-QkUjS .framer-1j7ln00, .framer-QkUjS .framer-1wt6p1k, .framer-QkUjS .framer-17aggqq, .framer-QkUjS .framer-6797f3, .framer-QkUjS .framer-6yepmb, .framer-QkUjS .framer-sew6s, .framer-QkUjS .framer-13q6rj5, .framer-QkUjS .framer-1lrmtd8, .framer-QkUjS .framer-1nw6eqv, .framer-QkUjS .framer-1wcnmyf, .framer-QkUjS .framer-1hniuce, .framer-QkUjS .framer-z0rtlq, .framer-QkUjS .framer-49y4xh, .framer-QkUjS .framer-tn1sjx, .framer-QkUjS .framer-1vgt3pi, .framer-QkUjS .framer-1wvsq82, .framer-QkUjS .framer-fxop8l, .framer-QkUjS .framer-121ifdz, .framer-QkUjS .framer-1mju140, .framer-QkUjS .framer-vbxqz7, .framer-QkUjS .framer-1le87zb, .framer-QkUjS .framer-11sx6kb, .framer-QkUjS .framer-1ninf0l, .framer-QkUjS .framer-18qiqsn, .framer-QkUjS .framer-wpbv52, .framer-QkUjS .framer-uhv6lw, .framer-QkUjS .framer-1q0bqu6, .framer-QkUjS .framer-b1av9b, .framer-QkUjS .framer-1pl9r8n, .framer-QkUjS .framer-1fedikj, .framer-QkUjS .framer-18iegr4, .framer-QkUjS .framer-iimy9w, .framer-QkUjS .framer-1lksk97, .framer-QkUjS .framer-1jas2s4, .framer-QkUjS .framer-1khdjwy, .framer-QkUjS .framer-1yt4dqc, .framer-QkUjS .framer-1kfbb43, .framer-QkUjS .framer-frxkhx, .framer-QkUjS .framer-17mjjlc, .framer-QkUjS .framer-8tjx6d, .framer-QkUjS .framer-13spnel, .framer-QkUjS .framer-1yazqwh, .framer-QkUjS .framer-p201e7, .framer-QkUjS .framer-hby8t4, .framer-QkUjS .framer-joo66c, .framer-QkUjS .framer-100ckmw, .framer-QkUjS .framer-1x9dip9, .framer-QkUjS .framer-1dilcmi, .framer-QkUjS .framer-1dtur0e, .framer-QkUjS .framer-1i9pr6t, .framer-QkUjS .framer-1s2pit9, .framer-QkUjS .framer-n8yc0m, .framer-QkUjS .framer-jabbve, .framer-QkUjS .framer-12lez6e, .framer-QkUjS .framer-8ecxb7, .framer-QkUjS .framer-12md9hm, .framer-QkUjS .framer-kl55t5, .framer-QkUjS .framer-s1h838, .framer-QkUjS .framer-6kcc1c, .framer-QkUjS .framer-bst2xg, .framer-QkUjS .framer-1qna053, .framer-QkUjS .framer-1ad0ylk, .framer-QkUjS .framer-ctxxcz, .framer-QkUjS .framer-1exlg3i, .framer-QkUjS .framer-bcsg9f, .framer-QkUjS .framer-1vctskh, .framer-QkUjS .framer-yvafa6, .framer-QkUjS .framer-apnuv1, .framer-QkUjS .framer-1l31cqw, .framer-QkUjS .framer-4qoppg, .framer-QkUjS .framer-y07to6, .framer-QkUjS .framer-yvay5d, .framer-QkUjS .framer-4ki39u, .framer-QkUjS .framer-kwjli { gap: 0px; } .framer-QkUjS.framer-4r55r > *, .framer-QkUjS .framer-1ucq9mn > *, .framer-QkUjS .framer-m7o7au > *, .framer-QkUjS .framer-172dad > *, .framer-QkUjS .framer-drc9tj > *, .framer-QkUjS .framer-1ialjb9 > *, .framer-QkUjS .framer-wtbyqg > *, .framer-QkUjS .framer-1rbbvs8 > *, .framer-QkUjS .framer-obwrlh > *, .framer-QkUjS .framer-s657mb > *, .framer-QkUjS .framer-1lth8pb > *, .framer-QkUjS .framer-mh3vuk > *, .framer-QkUjS .framer-1944n9d > *, .framer-QkUjS .framer-cqwb8b > *, .framer-QkUjS .framer-1rjb4gg > *, .framer-QkUjS .framer-f3petl > *, .framer-QkUjS .framer-mlmrvk > *, .framer-QkUjS .framer-14hjfe3 > *, .framer-QkUjS .framer-1qbzag9 > *, .framer-QkUjS .framer-e1sisv > *, .framer-QkUjS .framer-zb0kzh > *, .framer-QkUjS .framer-1q0acmc > *, .framer-QkUjS .framer-1t9o67k > *, .framer-QkUjS .framer-17iqf6e > *, .framer-QkUjS .framer-157xezt > *, .framer-QkUjS .framer-1wooirp > *, .framer-QkUjS .framer-mgg7ve > *, .framer-QkUjS .framer-1pbiwl9 > *, .framer-QkUjS .framer-1uwvmii > *, .framer-QkUjS .framer-1ehapj5 > *, .framer-QkUjS .framer-1xzpxrl > *, .framer-QkUjS .framer-1pckm47 > *, .framer-QkUjS .framer-qeeqm4 > *, .framer-QkUjS .framer-yo59u1 > *, .framer-QkUjS .framer-1pxvdl3 > *, .framer-QkUjS .framer-gk5ua7 > *, .framer-QkUjS .framer-6nv7v5 > *, .framer-QkUjS .framer-14ct4o1 > *, .framer-QkUjS .framer-11ucnt5 > *, .framer-QkUjS .framer-duw6k9 > *, .framer-QkUjS .framer-9nf5xu > *, .framer-QkUjS .framer-zctd6d > *, .framer-QkUjS .framer-pbern1 > *, .framer-QkUjS .framer-nociyf > *, .framer-QkUjS .framer-nfxwao > *, .framer-QkUjS .framer-16zcbdm > *, .framer-QkUjS .framer-n8onb1 > *, .framer-QkUjS .framer-1j7ln00 > *, .framer-QkUjS .framer-1wt6p1k > *, .framer-QkUjS .framer-17aggqq > *, .framer-QkUjS .framer-1mju140 > *, .framer-QkUjS .framer-1le87zb > *, .framer-QkUjS .framer-11sx6kb > *, .framer-QkUjS .framer-1ninf0l > *, .framer-QkUjS .framer-18qiqsn > *, .framer-QkUjS .framer-wpbv52 > *, .framer-QkUjS .framer-uhv6lw > *, .framer-QkUjS .framer-1q0bqu6 > *, .framer-QkUjS .framer-1pl9r8n > *, .framer-QkUjS .framer-1fedikj > *, .framer-QkUjS .framer-18iegr4 > *, .framer-QkUjS .framer-iimy9w > *, .framer-QkUjS .framer-1lksk97 > *, .framer-QkUjS .framer-1jas2s4 > *, .framer-QkUjS .framer-1khdjwy > *, .framer-QkUjS .framer-kl55t5 > *, .framer-QkUjS .framer-bst2xg > *, .framer-QkUjS .framer-ctxxcz > *, .framer-QkUjS .framer-1vctskh > *, .framer-QkUjS .framer-1l31cqw > *, .framer-QkUjS .framer-y07to6 > *, .framer-QkUjS .framer-kwjli > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QkUjS.framer-4r55r > :first-child, .framer-QkUjS.framer-ops5qs > :first-child, .framer-QkUjS .framer-6krgn2 > :first-child, .framer-QkUjS .framer-p9xyob > :first-child, .framer-QkUjS .framer-11guujd > :first-child, .framer-QkUjS .framer-aojsh6 > :first-child, .framer-QkUjS .framer-1ucq9mn > :first-child, .framer-QkUjS .framer-m7o7au > :first-child, .framer-QkUjS .framer-172dad > :first-child, .framer-QkUjS .framer-drc9tj > :first-child, .framer-QkUjS .framer-1ialjb9 > :first-child, .framer-QkUjS .framer-1h95vpo > :first-child, .framer-QkUjS .framer-wtbyqg > :first-child, .framer-QkUjS .framer-1rbbvs8 > :first-child, .framer-QkUjS .framer-obwrlh > :first-child, .framer-QkUjS .framer-s657mb > :first-child, .framer-QkUjS .framer-xnddh4 > :first-child, .framer-QkUjS .framer-1vb7c5y > :first-child, .framer-QkUjS .framer-1lth8pb > :first-child, .framer-QkUjS .framer-mh3vuk > :first-child, .framer-QkUjS .framer-1944n9d > :first-child, .framer-QkUjS .framer-k4ukhs > :first-child, .framer-QkUjS .framer-cqwb8b > :first-child, .framer-QkUjS .framer-1rjb4gg > :first-child, .framer-QkUjS .framer-1kls66l > :first-child, .framer-QkUjS .framer-f3petl > :first-child, .framer-QkUjS .framer-mlmrvk > :first-child, .framer-QkUjS .framer-1qnar7s > :first-child, .framer-QkUjS .framer-14hjfe3 > :first-child, .framer-QkUjS .framer-1qbzag9 > :first-child, .framer-QkUjS .framer-17q6bw7 > :first-child, .framer-QkUjS .framer-e1sisv > :first-child, .framer-QkUjS .framer-zb0kzh > :first-child, .framer-QkUjS .framer-9pu4a5 > :first-child, .framer-QkUjS .framer-1q0acmc > :first-child, .framer-QkUjS .framer-1t9o67k > :first-child, .framer-QkUjS .framer-19wuyzh > :first-child, .framer-QkUjS .framer-17iqf6e > :first-child, .framer-QkUjS .framer-157xezt > :first-child, .framer-QkUjS .framer-l4377h > :first-child, .framer-QkUjS .framer-1wooirp > :first-child, .framer-QkUjS .framer-mgg7ve > :first-child, .framer-QkUjS .framer-8mgv58 > :first-child, .framer-QkUjS .framer-1pbiwl9 > :first-child, .framer-QkUjS .framer-1uwvmii > :first-child, .framer-QkUjS .framer-2w6guj > :first-child, .framer-QkUjS .framer-v6z2d0 > :first-child, .framer-QkUjS .framer-1ehapj5 > :first-child, .framer-QkUjS .framer-1xzpxrl > :first-child, .framer-QkUjS .framer-fp466h > :first-child, .framer-QkUjS .framer-1v2os0y > :first-child, .framer-QkUjS .framer-1pckm47 > :first-child, .framer-QkUjS .framer-qeeqm4 > :first-child, .framer-QkUjS .framer-1i4k5v7 > :first-child, .framer-QkUjS .framer-1trcqcw > :first-child, .framer-QkUjS .framer-yo59u1 > :first-child, .framer-QkUjS .framer-1pxvdl3 > :first-child, .framer-QkUjS .framer-qg4rh7 > :first-child, .framer-QkUjS .framer-1fccbbh > :first-child, .framer-QkUjS .framer-gk5ua7 > :first-child, .framer-QkUjS .framer-6nv7v5 > :first-child, .framer-QkUjS .framer-1y9kpjj > :first-child, .framer-QkUjS .framer-14ct4o1 > :first-child, .framer-QkUjS .framer-11ucnt5 > :first-child, .framer-QkUjS .framer-duw6k9 > :first-child, .framer-QkUjS .framer-9nf5xu > :first-child, .framer-QkUjS .framer-zctd6d > :first-child, .framer-QkUjS .framer-pbern1 > :first-child, .framer-QkUjS .framer-nociyf > :first-child, .framer-QkUjS .framer-nfxwao > :first-child, .framer-QkUjS .framer-16zcbdm > :first-child, .framer-QkUjS .framer-n8onb1 > :first-child, .framer-QkUjS .framer-1j7ln00 > :first-child, .framer-QkUjS .framer-1wt6p1k > :first-child, .framer-QkUjS .framer-17aggqq > :first-child, .framer-QkUjS .framer-1mju140 > :first-child, .framer-QkUjS .framer-1le87zb > :first-child, .framer-QkUjS .framer-11sx6kb > :first-child, .framer-QkUjS .framer-1ninf0l > :first-child, .framer-QkUjS .framer-18qiqsn > :first-child, .framer-QkUjS .framer-wpbv52 > :first-child, .framer-QkUjS .framer-uhv6lw > :first-child, .framer-QkUjS .framer-1q0bqu6 > :first-child, .framer-QkUjS .framer-1pl9r8n > :first-child, .framer-QkUjS .framer-1fedikj > :first-child, .framer-QkUjS .framer-18iegr4 > :first-child, .framer-QkUjS .framer-iimy9w > :first-child, .framer-QkUjS .framer-1lksk97 > :first-child, .framer-QkUjS .framer-1jas2s4 > :first-child, .framer-QkUjS .framer-1khdjwy > :first-child, .framer-QkUjS .framer-jabbve > :first-child, .framer-QkUjS .framer-12lez6e > :first-child, .framer-QkUjS .framer-12md9hm > :first-child, .framer-QkUjS .framer-kl55t5 > :first-child, .framer-QkUjS .framer-s1h838 > :first-child, .framer-QkUjS .framer-6kcc1c > :first-child, .framer-QkUjS .framer-bst2xg > :first-child, .framer-QkUjS .framer-1qna053 > :first-child, .framer-QkUjS .framer-1ad0ylk > :first-child, .framer-QkUjS .framer-ctxxcz > :first-child, .framer-QkUjS .framer-1exlg3i > :first-child, .framer-QkUjS .framer-bcsg9f > :first-child, .framer-QkUjS .framer-1vctskh > :first-child, .framer-QkUjS .framer-yvafa6 > :first-child, .framer-QkUjS .framer-1l31cqw > :first-child, .framer-QkUjS .framer-4qoppg > :first-child, .framer-QkUjS .framer-y07to6 > :first-child, .framer-QkUjS .framer-yvay5d > :first-child, .framer-QkUjS .framer-4ki39u > :first-child, .framer-QkUjS .framer-kwjli > :first-child { margin-top: 0px; } .framer-QkUjS.framer-4r55r > :last-child, .framer-QkUjS.framer-ops5qs > :last-child, .framer-QkUjS .framer-6krgn2 > :last-child, .framer-QkUjS .framer-p9xyob > :last-child, .framer-QkUjS .framer-11guujd > :last-child, .framer-QkUjS .framer-aojsh6 > :last-child, .framer-QkUjS .framer-1ucq9mn > :last-child, .framer-QkUjS .framer-m7o7au > :last-child, .framer-QkUjS .framer-172dad > :last-child, .framer-QkUjS .framer-drc9tj > :last-child, .framer-QkUjS .framer-1ialjb9 > :last-child, .framer-QkUjS .framer-1h95vpo > :last-child, .framer-QkUjS .framer-wtbyqg > :last-child, .framer-QkUjS .framer-1rbbvs8 > :last-child, .framer-QkUjS .framer-obwrlh > :last-child, .framer-QkUjS .framer-s657mb > :last-child, .framer-QkUjS .framer-xnddh4 > :last-child, .framer-QkUjS .framer-1vb7c5y > :last-child, .framer-QkUjS .framer-1lth8pb > :last-child, .framer-QkUjS .framer-mh3vuk > :last-child, .framer-QkUjS .framer-1944n9d > :last-child, .framer-QkUjS .framer-k4ukhs > :last-child, .framer-QkUjS .framer-cqwb8b > :last-child, .framer-QkUjS .framer-1rjb4gg > :last-child, .framer-QkUjS .framer-1kls66l > :last-child, .framer-QkUjS .framer-f3petl > :last-child, .framer-QkUjS .framer-mlmrvk > :last-child, .framer-QkUjS .framer-1qnar7s > :last-child, .framer-QkUjS .framer-14hjfe3 > :last-child, .framer-QkUjS .framer-1qbzag9 > :last-child, .framer-QkUjS .framer-17q6bw7 > :last-child, .framer-QkUjS .framer-e1sisv > :last-child, .framer-QkUjS .framer-zb0kzh > :last-child, .framer-QkUjS .framer-9pu4a5 > :last-child, .framer-QkUjS .framer-1q0acmc > :last-child, .framer-QkUjS .framer-1t9o67k > :last-child, .framer-QkUjS .framer-19wuyzh > :last-child, .framer-QkUjS .framer-17iqf6e > :last-child, .framer-QkUjS .framer-157xezt > :last-child, .framer-QkUjS .framer-l4377h > :last-child, .framer-QkUjS .framer-1wooirp > :last-child, .framer-QkUjS .framer-mgg7ve > :last-child, .framer-QkUjS .framer-8mgv58 > :last-child, .framer-QkUjS .framer-1pbiwl9 > :last-child, .framer-QkUjS .framer-1uwvmii > :last-child, .framer-QkUjS .framer-2w6guj > :last-child, .framer-QkUjS .framer-v6z2d0 > :last-child, .framer-QkUjS .framer-1ehapj5 > :last-child, .framer-QkUjS .framer-1xzpxrl > :last-child, .framer-QkUjS .framer-fp466h > :last-child, .framer-QkUjS .framer-1v2os0y > :last-child, .framer-QkUjS .framer-1pckm47 > :last-child, .framer-QkUjS .framer-qeeqm4 > :last-child, .framer-QkUjS .framer-1i4k5v7 > :last-child, .framer-QkUjS .framer-1trcqcw > :last-child, .framer-QkUjS .framer-yo59u1 > :last-child, .framer-QkUjS .framer-1pxvdl3 > :last-child, .framer-QkUjS .framer-qg4rh7 > :last-child, .framer-QkUjS .framer-1fccbbh > :last-child, .framer-QkUjS .framer-gk5ua7 > :last-child, .framer-QkUjS .framer-6nv7v5 > :last-child, .framer-QkUjS .framer-1y9kpjj > :last-child, .framer-QkUjS .framer-14ct4o1 > :last-child, .framer-QkUjS .framer-11ucnt5 > :last-child, .framer-QkUjS .framer-duw6k9 > :last-child, .framer-QkUjS .framer-9nf5xu > :last-child, .framer-QkUjS .framer-zctd6d > :last-child, .framer-QkUjS .framer-pbern1 > :last-child, .framer-QkUjS .framer-nociyf > :last-child, .framer-QkUjS .framer-nfxwao > :last-child, .framer-QkUjS .framer-16zcbdm > :last-child, .framer-QkUjS .framer-n8onb1 > :last-child, .framer-QkUjS .framer-1j7ln00 > :last-child, .framer-QkUjS .framer-1wt6p1k > :last-child, .framer-QkUjS .framer-17aggqq > :last-child, .framer-QkUjS .framer-1mju140 > :last-child, .framer-QkUjS .framer-1le87zb > :last-child, .framer-QkUjS .framer-11sx6kb > :last-child, .framer-QkUjS .framer-1ninf0l > :last-child, .framer-QkUjS .framer-18qiqsn > :last-child, .framer-QkUjS .framer-wpbv52 > :last-child, .framer-QkUjS .framer-uhv6lw > :last-child, .framer-QkUjS .framer-1q0bqu6 > :last-child, .framer-QkUjS .framer-1pl9r8n > :last-child, .framer-QkUjS .framer-1fedikj > :last-child, .framer-QkUjS .framer-18iegr4 > :last-child, .framer-QkUjS .framer-iimy9w > :last-child, .framer-QkUjS .framer-1lksk97 > :last-child, .framer-QkUjS .framer-1jas2s4 > :last-child, .framer-QkUjS .framer-1khdjwy > :last-child, .framer-QkUjS .framer-jabbve > :last-child, .framer-QkUjS .framer-12lez6e > :last-child, .framer-QkUjS .framer-12md9hm > :last-child, .framer-QkUjS .framer-kl55t5 > :last-child, .framer-QkUjS .framer-s1h838 > :last-child, .framer-QkUjS .framer-6kcc1c > :last-child, .framer-QkUjS .framer-bst2xg > :last-child, .framer-QkUjS .framer-1qna053 > :last-child, .framer-QkUjS .framer-1ad0ylk > :last-child, .framer-QkUjS .framer-ctxxcz > :last-child, .framer-QkUjS .framer-1exlg3i > :last-child, .framer-QkUjS .framer-bcsg9f > :last-child, .framer-QkUjS .framer-1vctskh > :last-child, .framer-QkUjS .framer-yvafa6 > :last-child, .framer-QkUjS .framer-1l31cqw > :last-child, .framer-QkUjS .framer-4qoppg > :last-child, .framer-QkUjS .framer-y07to6 > :last-child, .framer-QkUjS .framer-yvay5d > :last-child, .framer-QkUjS .framer-4ki39u > :last-child, .framer-QkUjS .framer-kwjli > :last-child { margin-bottom: 0px; } .framer-QkUjS.framer-ops5qs > *, .framer-QkUjS .framer-6krgn2 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-QkUjS .framer-1uszt3o > *, .framer-QkUjS .framer-1gdaf8p > *, .framer-QkUjS .framer-5zvp5p > *, .framer-QkUjS .framer-1hzolzb > *, .framer-QkUjS .framer-1o3aszu > *, .framer-QkUjS .framer-1nohe4e > *, .framer-QkUjS .framer-q3jr1a > *, .framer-QkUjS .framer-1dfcu2c > *, .framer-QkUjS .framer-kicjjd > *, .framer-QkUjS .framer-sp6git > *, .framer-QkUjS .framer-mebe9c > *, .framer-QkUjS .framer-1davbxl > *, .framer-QkUjS .framer-19hjp8e > *, .framer-QkUjS .framer-eyndo0 > *, .framer-QkUjS .framer-dem56v > *, .framer-QkUjS .framer-h0elly > *, .framer-QkUjS .framer-18w7tj3 > *, .framer-QkUjS .framer-11ytonu > *, .framer-QkUjS .framer-8n13c > *, .framer-QkUjS .framer-19zvh2n > *, .framer-QkUjS .framer-1h7w1uf > *, .framer-QkUjS .framer-b85yuq > *, .framer-QkUjS .framer-ftpw8b > *, .framer-QkUjS .framer-1mfslg6 > *, .framer-QkUjS .framer-vlvjl > *, .framer-QkUjS .framer-13ug0sh > *, .framer-QkUjS .framer-1xvd8c4 > *, .framer-QkUjS .framer-1yjhmry > *, .framer-QkUjS .framer-vsroo2 > *, .framer-QkUjS .framer-873yqu > *, .framer-QkUjS .framer-em4pu7 > *, .framer-QkUjS .framer-1tp7w3h > *, .framer-QkUjS .framer-6yepmb > *, .framer-QkUjS .framer-1nw6eqv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QkUjS .framer-1uszt3o > :first-child, .framer-QkUjS .framer-1gdaf8p > :first-child, .framer-QkUjS .framer-5zvp5p > :first-child, .framer-QkUjS .framer-1hzolzb > :first-child, .framer-QkUjS .framer-11gem6w > :first-child, .framer-QkUjS .framer-uupzi > :first-child, .framer-QkUjS .framer-igqx2c > :first-child, .framer-QkUjS .framer-1o3aszu > :first-child, .framer-QkUjS .framer-xce9qs > :first-child, .framer-QkUjS .framer-1ke4mmr > :first-child, .framer-QkUjS .framer-1al7ipg > :first-child, .framer-QkUjS .framer-1wbarai > :first-child, .framer-QkUjS .framer-10jw3c > :first-child, .framer-QkUjS .framer-1p7vi3d > :first-child, .framer-QkUjS .framer-1nohe4e > :first-child, .framer-QkUjS .framer-w3brse > :first-child, .framer-QkUjS .framer-q3jr1a > :first-child, .framer-QkUjS .framer-1dfcu2c > :first-child, .framer-QkUjS .framer-lrn4u6 > :first-child, .framer-QkUjS .framer-kicjjd > :first-child, .framer-QkUjS .framer-sp6git > :first-child, .framer-QkUjS .framer-oz7uv4 > :first-child, .framer-QkUjS .framer-mebe9c > :first-child, .framer-QkUjS .framer-1davbxl > :first-child, .framer-QkUjS .framer-1u1ss3w > :first-child, .framer-QkUjS .framer-19hjp8e > :first-child, .framer-QkUjS .framer-eyndo0 > :first-child, .framer-QkUjS .framer-k1487a > :first-child, .framer-QkUjS .framer-dem56v > :first-child, .framer-QkUjS .framer-h0elly > :first-child, .framer-QkUjS .framer-15jfcld > :first-child, .framer-QkUjS .framer-18w7tj3 > :first-child, .framer-QkUjS .framer-11ytonu > :first-child, .framer-QkUjS .framer-1tfzt2s > :first-child, .framer-QkUjS .framer-8n13c > :first-child, .framer-QkUjS .framer-19zvh2n > :first-child, .framer-QkUjS .framer-15w70aq > :first-child, .framer-QkUjS .framer-1h7w1uf > :first-child, .framer-QkUjS .framer-b85yuq > :first-child, .framer-QkUjS .framer-1s7cbod > :first-child, .framer-QkUjS .framer-ftpw8b > :first-child, .framer-QkUjS .framer-1mfslg6 > :first-child, .framer-QkUjS .framer-vlvjl > :first-child, .framer-QkUjS .framer-13ug0sh > :first-child, .framer-QkUjS .framer-1xvd8c4 > :first-child, .framer-QkUjS .framer-1yjhmry > :first-child, .framer-QkUjS .framer-vsroo2 > :first-child, .framer-QkUjS .framer-873yqu > :first-child, .framer-QkUjS .framer-em4pu7 > :first-child, .framer-QkUjS .framer-tfk17c > :first-child, .framer-QkUjS .framer-oubwhs > :first-child, .framer-QkUjS .framer-rle7w0 > :first-child, .framer-QkUjS .framer-3hot61 > :first-child, .framer-QkUjS .framer-12kw03a > :first-child, .framer-QkUjS .framer-d6po96 > :first-child, .framer-QkUjS .framer-1s1alpg > :first-child, .framer-QkUjS .framer-1bqu2n > :first-child, .framer-QkUjS .framer-1tp7w3h > :first-child, .framer-QkUjS .framer-128jac3 > :first-child, .framer-QkUjS .framer-18v0xtq > :first-child, .framer-QkUjS .framer-10jmh30 > :first-child, .framer-QkUjS .framer-6797f3 > :first-child, .framer-QkUjS .framer-6yepmb > :first-child, .framer-QkUjS .framer-sew6s > :first-child, .framer-QkUjS .framer-13q6rj5 > :first-child, .framer-QkUjS .framer-1lrmtd8 > :first-child, .framer-QkUjS .framer-1nw6eqv > :first-child, .framer-QkUjS .framer-1wcnmyf > :first-child, .framer-QkUjS .framer-1hniuce > :first-child, .framer-QkUjS .framer-z0rtlq > :first-child, .framer-QkUjS .framer-49y4xh > :first-child, .framer-QkUjS .framer-tn1sjx > :first-child, .framer-QkUjS .framer-1vgt3pi > :first-child, .framer-QkUjS .framer-1wvsq82 > :first-child, .framer-QkUjS .framer-fxop8l > :first-child, .framer-QkUjS .framer-121ifdz > :first-child, .framer-QkUjS .framer-vbxqz7 > :first-child, .framer-QkUjS .framer-b1av9b > :first-child, .framer-QkUjS .framer-1yt4dqc > :first-child, .framer-QkUjS .framer-1kfbb43 > :first-child, .framer-QkUjS .framer-frxkhx > :first-child, .framer-QkUjS .framer-17mjjlc > :first-child, .framer-QkUjS .framer-8tjx6d > :first-child, .framer-QkUjS .framer-13spnel > :first-child, .framer-QkUjS .framer-1yazqwh > :first-child, .framer-QkUjS .framer-p201e7 > :first-child, .framer-QkUjS .framer-hby8t4 > :first-child, .framer-QkUjS .framer-joo66c > :first-child, .framer-QkUjS .framer-100ckmw > :first-child, .framer-QkUjS .framer-1x9dip9 > :first-child, .framer-QkUjS .framer-1dilcmi > :first-child, .framer-QkUjS .framer-1dtur0e > :first-child, .framer-QkUjS .framer-1i9pr6t > :first-child, .framer-QkUjS .framer-1s2pit9 > :first-child, .framer-QkUjS .framer-n8yc0m > :first-child, .framer-QkUjS .framer-8ecxb7 > :first-child, .framer-QkUjS .framer-apnuv1 > :first-child { margin-left: 0px; } .framer-QkUjS .framer-1uszt3o > :last-child, .framer-QkUjS .framer-1gdaf8p > :last-child, .framer-QkUjS .framer-5zvp5p > :last-child, .framer-QkUjS .framer-1hzolzb > :last-child, .framer-QkUjS .framer-11gem6w > :last-child, .framer-QkUjS .framer-uupzi > :last-child, .framer-QkUjS .framer-igqx2c > :last-child, .framer-QkUjS .framer-1o3aszu > :last-child, .framer-QkUjS .framer-xce9qs > :last-child, .framer-QkUjS .framer-1ke4mmr > :last-child, .framer-QkUjS .framer-1al7ipg > :last-child, .framer-QkUjS .framer-1wbarai > :last-child, .framer-QkUjS .framer-10jw3c > :last-child, .framer-QkUjS .framer-1p7vi3d > :last-child, .framer-QkUjS .framer-1nohe4e > :last-child, .framer-QkUjS .framer-w3brse > :last-child, .framer-QkUjS .framer-q3jr1a > :last-child, .framer-QkUjS .framer-1dfcu2c > :last-child, .framer-QkUjS .framer-lrn4u6 > :last-child, .framer-QkUjS .framer-kicjjd > :last-child, .framer-QkUjS .framer-sp6git > :last-child, .framer-QkUjS .framer-oz7uv4 > :last-child, .framer-QkUjS .framer-mebe9c > :last-child, .framer-QkUjS .framer-1davbxl > :last-child, .framer-QkUjS .framer-1u1ss3w > :last-child, .framer-QkUjS .framer-19hjp8e > :last-child, .framer-QkUjS .framer-eyndo0 > :last-child, .framer-QkUjS .framer-k1487a > :last-child, .framer-QkUjS .framer-dem56v > :last-child, .framer-QkUjS .framer-h0elly > :last-child, .framer-QkUjS .framer-15jfcld > :last-child, .framer-QkUjS .framer-18w7tj3 > :last-child, .framer-QkUjS .framer-11ytonu > :last-child, .framer-QkUjS .framer-1tfzt2s > :last-child, .framer-QkUjS .framer-8n13c > :last-child, .framer-QkUjS .framer-19zvh2n > :last-child, .framer-QkUjS .framer-15w70aq > :last-child, .framer-QkUjS .framer-1h7w1uf > :last-child, .framer-QkUjS .framer-b85yuq > :last-child, .framer-QkUjS .framer-1s7cbod > :last-child, .framer-QkUjS .framer-ftpw8b > :last-child, .framer-QkUjS .framer-1mfslg6 > :last-child, .framer-QkUjS .framer-vlvjl > :last-child, .framer-QkUjS .framer-13ug0sh > :last-child, .framer-QkUjS .framer-1xvd8c4 > :last-child, .framer-QkUjS .framer-1yjhmry > :last-child, .framer-QkUjS .framer-vsroo2 > :last-child, .framer-QkUjS .framer-873yqu > :last-child, .framer-QkUjS .framer-em4pu7 > :last-child, .framer-QkUjS .framer-tfk17c > :last-child, .framer-QkUjS .framer-oubwhs > :last-child, .framer-QkUjS .framer-rle7w0 > :last-child, .framer-QkUjS .framer-3hot61 > :last-child, .framer-QkUjS .framer-12kw03a > :last-child, .framer-QkUjS .framer-d6po96 > :last-child, .framer-QkUjS .framer-1s1alpg > :last-child, .framer-QkUjS .framer-1bqu2n > :last-child, .framer-QkUjS .framer-1tp7w3h > :last-child, .framer-QkUjS .framer-128jac3 > :last-child, .framer-QkUjS .framer-18v0xtq > :last-child, .framer-QkUjS .framer-10jmh30 > :last-child, .framer-QkUjS .framer-6797f3 > :last-child, .framer-QkUjS .framer-6yepmb > :last-child, .framer-QkUjS .framer-sew6s > :last-child, .framer-QkUjS .framer-13q6rj5 > :last-child, .framer-QkUjS .framer-1lrmtd8 > :last-child, .framer-QkUjS .framer-1nw6eqv > :last-child, .framer-QkUjS .framer-1wcnmyf > :last-child, .framer-QkUjS .framer-1hniuce > :last-child, .framer-QkUjS .framer-z0rtlq > :last-child, .framer-QkUjS .framer-49y4xh > :last-child, .framer-QkUjS .framer-tn1sjx > :last-child, .framer-QkUjS .framer-1vgt3pi > :last-child, .framer-QkUjS .framer-1wvsq82 > :last-child, .framer-QkUjS .framer-fxop8l > :last-child, .framer-QkUjS .framer-121ifdz > :last-child, .framer-QkUjS .framer-vbxqz7 > :last-child, .framer-QkUjS .framer-b1av9b > :last-child, .framer-QkUjS .framer-1yt4dqc > :last-child, .framer-QkUjS .framer-1kfbb43 > :last-child, .framer-QkUjS .framer-frxkhx > :last-child, .framer-QkUjS .framer-17mjjlc > :last-child, .framer-QkUjS .framer-8tjx6d > :last-child, .framer-QkUjS .framer-13spnel > :last-child, .framer-QkUjS .framer-1yazqwh > :last-child, .framer-QkUjS .framer-p201e7 > :last-child, .framer-QkUjS .framer-hby8t4 > :last-child, .framer-QkUjS .framer-joo66c > :last-child, .framer-QkUjS .framer-100ckmw > :last-child, .framer-QkUjS .framer-1x9dip9 > :last-child, .framer-QkUjS .framer-1dilcmi > :last-child, .framer-QkUjS .framer-1dtur0e > :last-child, .framer-QkUjS .framer-1i9pr6t > :last-child, .framer-QkUjS .framer-1s2pit9 > :last-child, .framer-QkUjS .framer-n8yc0m > :last-child, .framer-QkUjS .framer-8ecxb7 > :last-child, .framer-QkUjS .framer-apnuv1 > :last-child { margin-right: 0px; } .framer-QkUjS .framer-p9xyob > *, .framer-QkUjS .framer-aojsh6 > *, .framer-QkUjS .framer-1h95vpo > *, .framer-QkUjS .framer-xnddh4 > *, .framer-QkUjS .framer-1vb7c5y > *, .framer-QkUjS .framer-v6z2d0 > *, .framer-QkUjS .framer-1v2os0y > *, .framer-QkUjS .framer-1trcqcw > *, .framer-QkUjS .framer-1fccbbh > *, .framer-QkUjS .framer-s1h838 > *, .framer-QkUjS .framer-1qna053 > *, .framer-QkUjS .framer-1exlg3i > *, .framer-QkUjS .framer-yvafa6 > *, .framer-QkUjS .framer-4qoppg > *, .framer-QkUjS .framer-4ki39u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QkUjS .framer-11guujd > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-QkUjS .framer-11gem6w > *, .framer-QkUjS .framer-1ke4mmr > *, .framer-QkUjS .framer-1p7vi3d > *, .framer-QkUjS .framer-lrn4u6 > *, .framer-QkUjS .framer-oz7uv4 > *, .framer-QkUjS .framer-1u1ss3w > *, .framer-QkUjS .framer-k1487a > *, .framer-QkUjS .framer-15jfcld > *, .framer-QkUjS .framer-1tfzt2s > *, .framer-QkUjS .framer-15w70aq > *, .framer-QkUjS .framer-1s7cbod > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QkUjS .framer-uupzi > *, .framer-QkUjS .framer-igqx2c > *, .framer-QkUjS .framer-1al7ipg > *, .framer-QkUjS .framer-1wbarai > *, .framer-QkUjS .framer-w3brse > *, .framer-QkUjS .framer-oubwhs > *, .framer-QkUjS .framer-rle7w0 > *, .framer-QkUjS .framer-12kw03a > *, .framer-QkUjS .framer-1s1alpg > *, .framer-QkUjS .framer-1bqu2n > *, .framer-QkUjS .framer-128jac3 > *, .framer-QkUjS .framer-sew6s > *, .framer-QkUjS .framer-13q6rj5 > *, .framer-QkUjS .framer-1lrmtd8 > *, .framer-QkUjS .framer-1wcnmyf > *, .framer-QkUjS .framer-z0rtlq > *, .framer-QkUjS .framer-49y4xh > *, .framer-QkUjS .framer-1vgt3pi > *, .framer-QkUjS .framer-fxop8l > *, .framer-QkUjS .framer-121ifdz > *, .framer-QkUjS .framer-frxkhx > *, .framer-QkUjS .framer-17mjjlc > *, .framer-QkUjS .framer-8tjx6d > *, .framer-QkUjS .framer-1yazqwh > *, .framer-QkUjS .framer-joo66c > *, .framer-QkUjS .framer-100ckmw > *, .framer-QkUjS .framer-1dilcmi > *, .framer-QkUjS .framer-1s2pit9 > *, .framer-QkUjS .framer-n8yc0m > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-QkUjS .framer-xce9qs > *, .framer-QkUjS .framer-10jw3c > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-QkUjS .framer-k4ukhs > *, .framer-QkUjS .framer-1kls66l > *, .framer-QkUjS .framer-1qnar7s > *, .framer-QkUjS .framer-17q6bw7 > *, .framer-QkUjS .framer-9pu4a5 > *, .framer-QkUjS .framer-19wuyzh > *, .framer-QkUjS .framer-l4377h > *, .framer-QkUjS .framer-8mgv58 > *, .framer-QkUjS .framer-2w6guj > *, .framer-QkUjS .framer-yvay5d > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-QkUjS .framer-fp466h > *, .framer-QkUjS .framer-1i4k5v7 > *, .framer-QkUjS .framer-qg4rh7 > *, .framer-QkUjS .framer-1y9kpjj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-QkUjS .framer-tfk17c > *, .framer-QkUjS .framer-3hot61 > *, .framer-QkUjS .framer-d6po96 > *, .framer-QkUjS .framer-1hniuce > *, .framer-QkUjS .framer-tn1sjx > *, .framer-QkUjS .framer-1wvsq82 > *, .framer-QkUjS .framer-1kfbb43 > *, .framer-QkUjS .framer-13spnel > *, .framer-QkUjS .framer-hby8t4 > *, .framer-QkUjS .framer-1x9dip9 > *, .framer-QkUjS .framer-1i9pr6t > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-QkUjS .framer-18v0xtq > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-QkUjS .framer-10jmh30 > *, .framer-QkUjS .framer-6797f3 > *, .framer-QkUjS .framer-b1av9b > *, .framer-QkUjS .framer-1yt4dqc > *, .framer-QkUjS .framer-p201e7 > *, .framer-QkUjS .framer-1dtur0e > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-QkUjS .framer-vbxqz7 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-QkUjS .framer-jabbve > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-QkUjS .framer-12lez6e > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-QkUjS .framer-8ecxb7 > *, .framer-QkUjS .framer-apnuv1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-QkUjS .framer-12md9hm > *, .framer-QkUjS .framer-6kcc1c > *, .framer-QkUjS .framer-1ad0ylk > *, .framer-QkUjS .framer-bcsg9f > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,...sharedStyle17.css,'.framer-QkUjS[data-border=\"true\"]::after, .framer-QkUjS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-QkUjS.framer-4r55r { width: 810px; } .framer-QkUjS .framer-p9xyob { height: var(--framer-aspect-ratio-supported, 196px); } .framer-QkUjS .framer-1hzolzb { height: var(--framer-aspect-ratio-supported, 191px); } .framer-QkUjS .framer-m7o7au, .framer-QkUjS .framer-ol49hx, .framer-QkUjS .framer-oubwhs, .framer-QkUjS .framer-1b6q2y4, .framer-QkUjS .framer-rle7w0, .framer-QkUjS .framer-1hyctjr, .framer-QkUjS .framer-12kw03a, .framer-QkUjS .framer-ktli4q, .framer-QkUjS .framer-vbvp5, .framer-QkUjS .framer-1s1alpg, .framer-QkUjS .framer-1bqu2n, .framer-QkUjS .framer-13fw454, .framer-QkUjS .framer-128jac3, .framer-QkUjS .framer-1jul2lo, .framer-QkUjS .framer-1wcnmyf, .framer-QkUjS .framer-ly7bha, .framer-QkUjS .framer-16rvtwv, .framer-QkUjS .framer-z0rtlq, .framer-QkUjS .framer-49y4xh, .framer-QkUjS .framer-1bmwjdn, .framer-QkUjS .framer-1gjivyx, .framer-QkUjS .framer-9i0tor, .framer-QkUjS .framer-fxop8l, .framer-QkUjS .framer-121ifdz, .framer-QkUjS .framer-tgcqe, .framer-QkUjS .framer-1yazqwh, .framer-QkUjS .framer-178ta0s, .framer-QkUjS .framer-joo66c, .framer-QkUjS .framer-ulub80, .framer-QkUjS .framer-100ckmw, .framer-QkUjS .framer-1j2evl2, .framer-QkUjS .framer-1dilcmi, .framer-QkUjS .framer-kyjfb1, .framer-QkUjS .framer-1s2pit9, .framer-QkUjS .framer-kdjm8b, .framer-QkUjS .framer-n8yc0m { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; } .framer-QkUjS .framer-rx8im9 { aspect-ratio: 0.6759847522236341 / 1; width: var(--framer-aspect-ratio-supported, 567px); } .framer-QkUjS .framer-1nohe4e { height: var(--framer-aspect-ratio-supported, 541px); } .framer-QkUjS .framer-11wxecf { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 536px; } .framer-QkUjS .framer-q3jr1a { height: 790px; } .framer-QkUjS .framer-1r7ulas { left: 50%; } .framer-QkUjS .framer-rzej2k { height: 1070px; } .framer-QkUjS .framer-tfk17c, .framer-QkUjS .framer-3hot61, .framer-QkUjS .framer-d6po96, .framer-QkUjS .framer-1tp7w3h, .framer-QkUjS .framer-p201e7, .framer-QkUjS .framer-1x9dip9, .framer-QkUjS .framer-1dtur0e { height: 530px; } .framer-QkUjS .framer-14ct4o1 { height: 650px; } .framer-QkUjS .framer-6797f3, .framer-QkUjS .framer-1nw6eqv { aspect-ratio: 1.5399239543726235 / 1; height: var(--framer-aspect-ratio-supported, 130px); } .framer-QkUjS .framer-1hniuce, .framer-QkUjS .framer-tn1sjx, .framer-QkUjS .framer-1wvsq82 { aspect-ratio: 1.5399239543726235 / 1; height: var(--framer-aspect-ratio-supported, 534px); } .framer-QkUjS .framer-1vgt3pi { gap: 16px; } .framer-QkUjS .framer-1mju140, .framer-QkUjS .framer-1yt4dqc { height: 526px; } .framer-QkUjS .framer-13spnel { height: 534px; } .framer-QkUjS .framer-jabbve { gap: 30px; padding: 30px 40px 80px 40px; } .framer-QkUjS .framer-8ecxb7, .framer-QkUjS .framer-apnuv1 { flex-direction: column; } .framer-QkUjS .framer-12md9hm, .framer-QkUjS .framer-6kcc1c { flex: none; width: 100%; } .framer-QkUjS .framer-1ad0ylk, .framer-QkUjS .framer-bcsg9f, .framer-QkUjS .framer-1l31cqw { flex: none; width: 200%; } .framer-QkUjS .framer-y07to6 { flex: none; width: 400%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QkUjS .framer-1vgt3pi, .framer-QkUjS .framer-jabbve, .framer-QkUjS .framer-8ecxb7, .framer-QkUjS .framer-apnuv1 { gap: 0px; } .framer-QkUjS .framer-1vgt3pi > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-QkUjS .framer-1vgt3pi > :first-child { margin-left: 0px; } .framer-QkUjS .framer-1vgt3pi > :last-child { margin-right: 0px; } .framer-QkUjS .framer-jabbve > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-QkUjS .framer-jabbve > :first-child, .framer-QkUjS .framer-8ecxb7 > :first-child, .framer-QkUjS .framer-apnuv1 > :first-child { margin-top: 0px; } .framer-QkUjS .framer-jabbve > :last-child, .framer-QkUjS .framer-8ecxb7 > :last-child, .framer-QkUjS .framer-apnuv1 > :last-child { margin-bottom: 0px; } .framer-QkUjS .framer-8ecxb7 > *, .framer-QkUjS .framer-apnuv1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\",\"@media (max-width: 809px) { .framer-QkUjS.framer-4r55r { width: 390px; } .framer-QkUjS .framer-1bapsv6 { height: 429px; top: 372px; } .framer-QkUjS.framer-ops5qs { padding: 5px 15px 66px 15px; } .framer-QkUjS .framer-p9xyob { aspect-ratio: unset; height: min-content; left: unset; position: relative; top: unset; transform: unset; z-index: 0; } .framer-QkUjS .framer-11guujd { align-content: flex-end; align-items: flex-end; flex-direction: row; gap: unset; justify-content: space-between; padding: 10px; } .framer-QkUjS .framer-1hzolzb { aspect-ratio: 4.461538461538462 / 1; height: var(--framer-aspect-ratio-supported, 52px); text-decoration: none; width: 232px; } .framer-QkUjS .framer-1ucq9mn, .framer-QkUjS .framer-3hot61, .framer-QkUjS .framer-1tp7w3h, .framer-QkUjS .framer-tn1sjx, .framer-QkUjS .framer-1yt4dqc, .framer-QkUjS .framer-13spnel, .framer-QkUjS .framer-p201e7, .framer-QkUjS .framer-1dtur0e { height: min-content; } .framer-QkUjS .framer-m7o7au { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: min-content; } .framer-QkUjS .framer-172dad { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 268px; padding: 16px 0px 0px 0px; } .framer-QkUjS .framer-rx8im9 { aspect-ratio: 1.4285714285714286 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 160px); max-width: 268px; width: 229px; } .framer-QkUjS .framer-11gem6w { padding: 0px 5px 5px 5px; } .framer-QkUjS .framer-uupzi, .framer-QkUjS .framer-1al7ipg { flex-direction: column; gap: 20px; padding: 20px 10px 20px 10px; } .framer-QkUjS .framer-igqx2c, .framer-QkUjS .framer-1wbarai, .framer-QkUjS .framer-12md9hm, .framer-QkUjS .framer-6kcc1c, .framer-QkUjS .framer-1ad0ylk, .framer-QkUjS .framer-bcsg9f, .framer-QkUjS .framer-1l31cqw, .framer-QkUjS .framer-y07to6 { flex: none; width: 100%; } .framer-QkUjS .framer-1ialjb9, .framer-QkUjS .framer-wtbyqg, .framer-QkUjS .framer-s657mb, .framer-QkUjS .framer-1lth8pb { gap: 5px; } .framer-QkUjS .framer-1rbbvs8, .framer-QkUjS .framer-obwrlh, .framer-QkUjS .framer-mh3vuk, .framer-QkUjS .framer-1944n9d { flex: none; gap: 5px; width: 100%; } .framer-QkUjS .framer-1nohe4e { aspect-ratio: unset; height: min-content; } .framer-QkUjS .framer-11wxecf { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 255px; } .framer-QkUjS .framer-w3brse { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 256px; } .framer-QkUjS .framer-q3jr1a { align-content: flex-start; align-items: flex-start; height: min-content; justify-content: flex-start; padding: 0px; } .framer-QkUjS .framer-k4ukhs { height: 800px; justify-content: flex-start; } .framer-QkUjS .framer-1r7ulas { left: 50%; order: 0; top: 6%; transform: translate(-50%, -50%); } .framer-QkUjS .framer-zytc5h-container { order: 3; } .framer-QkUjS .framer-rzej2k { order: 4; } .framer-QkUjS .framer-tfk17c, .framer-QkUjS .framer-d6po96, .framer-QkUjS .framer-1hniuce, .framer-QkUjS .framer-1wvsq82, .framer-QkUjS .framer-hby8t4, .framer-QkUjS .framer-1i9pr6t { flex-direction: column; height: min-content; } .framer-QkUjS .framer-ol49hx, .framer-QkUjS .framer-rle7w0, .framer-QkUjS .framer-1s2pit9 { aspect-ratio: 0.7450980392156863 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 268px); width: 100%; } .framer-QkUjS .framer-oubwhs, .framer-QkUjS .framer-1b6q2y4, .framer-QkUjS .framer-178ta0s, .framer-QkUjS .framer-ulub80, .framer-QkUjS .framer-kyjfb1, .framer-QkUjS .framer-kdjm8b { aspect-ratio: 0.7450980392156863 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 510px); width: 100%; } .framer-QkUjS .framer-1hyctjr, .framer-QkUjS .framer-13fw454, .framer-QkUjS .framer-1bmwjdn, .framer-QkUjS .framer-tgcqe, .framer-QkUjS .framer-1j2evl2 { aspect-ratio: 1.484375 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: var(--framer-aspect-ratio-supported, 256px); } .framer-QkUjS .framer-12kw03a, .framer-QkUjS .framer-1jul2lo, .framer-QkUjS .framer-1wcnmyf, .framer-QkUjS .framer-1vgt3pi, .framer-QkUjS .framer-1yazqwh, .framer-QkUjS .framer-1dilcmi { aspect-ratio: 1.484375 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: var(--framer-aspect-ratio-supported, 135px); } .framer-QkUjS .framer-ktli4q, .framer-QkUjS .framer-ly7bha, .framer-QkUjS .framer-1gjivyx { aspect-ratio: 0.7450980392156863 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 510px); order: 0; width: 100%; } .framer-QkUjS .framer-vbvp5, .framer-QkUjS .framer-16rvtwv, .framer-QkUjS .framer-9i0tor { aspect-ratio: 0.7450980392156863 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 510px); order: 2; width: 100%; } .framer-QkUjS .framer-1s1alpg { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 510px; order: 1; width: 100%; } .framer-QkUjS .framer-1bqu2n, .framer-QkUjS .framer-121ifdz { aspect-ratio: 0.7450980392156863 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 268px); order: 3; width: 100%; } .framer-QkUjS .framer-128jac3 { aspect-ratio: 0.78125 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: var(--framer-aspect-ratio-supported, 256px); } .framer-QkUjS .framer-14ct4o1 { height: 700px; } .framer-QkUjS .framer-1wl4ew2-container { flex: none; height: 610px; } .framer-QkUjS .framer-6797f3 { height: min-content; padding: 0px 5px 5px 5px; } .framer-QkUjS .framer-6yepmb { flex-direction: column; height: min-content; min-height: 250px; } .framer-QkUjS .framer-1hth8jo, .framer-QkUjS .framer-1l9qesf { aspect-ratio: 0.39215686274509803 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 510px); order: 0; width: 100%; } .framer-QkUjS .framer-1d40qgd, .framer-QkUjS .framer-wjmnya { aspect-ratio: 0.39215686274509803 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 510px); order: 2; width: 100%; } .framer-QkUjS .framer-8c89xv, .framer-QkUjS .framer-xwd4jy { aspect-ratio: 0.39215686274509803 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 510px); order: 4; width: 100%; } .framer-QkUjS .framer-sew6s, .framer-QkUjS .framer-frxkhx { aspect-ratio: 0.39215686274509803 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 510px); order: 1; width: 100%; } .framer-QkUjS .framer-13q6rj5, .framer-QkUjS .framer-17mjjlc { aspect-ratio: 0.39215686274509803 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 510px); order: 3; width: 100%; } .framer-QkUjS .framer-1lrmtd8, .framer-QkUjS .framer-8tjx6d { aspect-ratio: 0.39215686274509803 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 510px); order: 5; width: 100%; } .framer-QkUjS .framer-1nw6eqv { height: min-content; min-height: 261px; } .framer-QkUjS .framer-z0rtlq, .framer-QkUjS .framer-fxop8l { aspect-ratio: 0.39215686274509803 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 510px); order: 1; width: 100%; } .framer-QkUjS .framer-49y4xh { aspect-ratio: 0.39215686274509803 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 510px); order: 3; width: 100%; } .framer-QkUjS .framer-1mju140 { height: 600px; } .framer-QkUjS .framer-5bwx2l-container { flex: none; height: 600px; } .framer-QkUjS .framer-1kfbb43 { flex-direction: column; height: min-content; min-height: 160px; } .framer-QkUjS .framer-joo66c, .framer-QkUjS .framer-n8yc0m { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 510px; width: 100%; } .framer-QkUjS .framer-100ckmw { aspect-ratio: 0.39215686274509803 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 510px); width: 100%; } .framer-QkUjS .framer-1x9dip9 { height: 261px; } .framer-QkUjS .framer-16dptz4-container { height: 510px; } .framer-QkUjS .framer-jabbve { gap: 20px; padding: 30px 5px 30px 5px; } .framer-QkUjS .framer-12lez6e { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; gap: 10px; padding: 10px; } .framer-QkUjS .framer-8ecxb7 { flex-direction: column; padding: 15px 10px 10px 10px; } .framer-QkUjS .framer-apnuv1 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; flex-direction: column; padding: 0px 10px 15px 10px; } .framer-QkUjS .framer-4ki39u { padding: 0px 5px 0px 5px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QkUjS .framer-11guujd, .framer-QkUjS .framer-uupzi, .framer-QkUjS .framer-1ialjb9, .framer-QkUjS .framer-wtbyqg, .framer-QkUjS .framer-1rbbvs8, .framer-QkUjS .framer-obwrlh, .framer-QkUjS .framer-1al7ipg, .framer-QkUjS .framer-s657mb, .framer-QkUjS .framer-1lth8pb, .framer-QkUjS .framer-mh3vuk, .framer-QkUjS .framer-1944n9d, .framer-QkUjS .framer-tfk17c, .framer-QkUjS .framer-d6po96, .framer-QkUjS .framer-6yepmb, .framer-QkUjS .framer-1hniuce, .framer-QkUjS .framer-1wvsq82, .framer-QkUjS .framer-1kfbb43, .framer-QkUjS .framer-hby8t4, .framer-QkUjS .framer-1i9pr6t, .framer-QkUjS .framer-jabbve, .framer-QkUjS .framer-12lez6e, .framer-QkUjS .framer-8ecxb7, .framer-QkUjS .framer-apnuv1 { gap: 0px; } .framer-QkUjS .framer-11guujd > *, .framer-QkUjS .framer-11guujd > :first-child, .framer-QkUjS .framer-11guujd > :last-child { margin: 0px; } .framer-QkUjS .framer-uupzi > *, .framer-QkUjS .framer-1al7ipg > *, .framer-QkUjS .framer-jabbve > *, .framer-QkUjS .framer-8ecxb7 > *, .framer-QkUjS .framer-apnuv1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-QkUjS .framer-uupzi > :first-child, .framer-QkUjS .framer-1ialjb9 > :first-child, .framer-QkUjS .framer-wtbyqg > :first-child, .framer-QkUjS .framer-1rbbvs8 > :first-child, .framer-QkUjS .framer-obwrlh > :first-child, .framer-QkUjS .framer-1al7ipg > :first-child, .framer-QkUjS .framer-s657mb > :first-child, .framer-QkUjS .framer-1lth8pb > :first-child, .framer-QkUjS .framer-mh3vuk > :first-child, .framer-QkUjS .framer-1944n9d > :first-child, .framer-QkUjS .framer-tfk17c > :first-child, .framer-QkUjS .framer-d6po96 > :first-child, .framer-QkUjS .framer-6yepmb > :first-child, .framer-QkUjS .framer-1hniuce > :first-child, .framer-QkUjS .framer-1wvsq82 > :first-child, .framer-QkUjS .framer-1kfbb43 > :first-child, .framer-QkUjS .framer-hby8t4 > :first-child, .framer-QkUjS .framer-1i9pr6t > :first-child, .framer-QkUjS .framer-jabbve > :first-child, .framer-QkUjS .framer-12lez6e > :first-child, .framer-QkUjS .framer-8ecxb7 > :first-child, .framer-QkUjS .framer-apnuv1 > :first-child { margin-top: 0px; } .framer-QkUjS .framer-uupzi > :last-child, .framer-QkUjS .framer-1ialjb9 > :last-child, .framer-QkUjS .framer-wtbyqg > :last-child, .framer-QkUjS .framer-1rbbvs8 > :last-child, .framer-QkUjS .framer-obwrlh > :last-child, .framer-QkUjS .framer-1al7ipg > :last-child, .framer-QkUjS .framer-s657mb > :last-child, .framer-QkUjS .framer-1lth8pb > :last-child, .framer-QkUjS .framer-mh3vuk > :last-child, .framer-QkUjS .framer-1944n9d > :last-child, .framer-QkUjS .framer-tfk17c > :last-child, .framer-QkUjS .framer-d6po96 > :last-child, .framer-QkUjS .framer-6yepmb > :last-child, .framer-QkUjS .framer-1hniuce > :last-child, .framer-QkUjS .framer-1wvsq82 > :last-child, .framer-QkUjS .framer-1kfbb43 > :last-child, .framer-QkUjS .framer-hby8t4 > :last-child, .framer-QkUjS .framer-1i9pr6t > :last-child, .framer-QkUjS .framer-jabbve > :last-child, .framer-QkUjS .framer-12lez6e > :last-child, .framer-QkUjS .framer-8ecxb7 > :last-child, .framer-QkUjS .framer-apnuv1 > :last-child { margin-bottom: 0px; } .framer-QkUjS .framer-1ialjb9 > *, .framer-QkUjS .framer-wtbyqg > *, .framer-QkUjS .framer-1rbbvs8 > *, .framer-QkUjS .framer-obwrlh > *, .framer-QkUjS .framer-s657mb > *, .framer-QkUjS .framer-1lth8pb > *, .framer-QkUjS .framer-mh3vuk > *, .framer-QkUjS .framer-1944n9d > *, .framer-QkUjS .framer-tfk17c > *, .framer-QkUjS .framer-d6po96 > *, .framer-QkUjS .framer-1hniuce > *, .framer-QkUjS .framer-1wvsq82 > *, .framer-QkUjS .framer-1kfbb43 > *, .framer-QkUjS .framer-hby8t4 > *, .framer-QkUjS .framer-1i9pr6t > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-QkUjS .framer-6yepmb > *, .framer-QkUjS .framer-12lez6e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (min-width: 1700px) { .framer-QkUjS.framer-4r55r { width: 1700px; } .framer-QkUjS .framer-1wm332z { top: 689px; } .framer-QkUjS .framer-1bapsv6 { top: 956px; } .framer-QkUjS .framer-5x85m5-container { left: 50%; top: 26px; } .framer-QkUjS .framer-p9xyob { height: var(--framer-aspect-ratio-supported, 408px); } .framer-QkUjS .framer-1hzolzb { height: var(--framer-aspect-ratio-supported, 403px); } .framer-QkUjS .framer-rx8im9 { width: var(--framer-aspect-ratio-supported, 641px); } .framer-QkUjS .framer-1nohe4e { height: var(--framer-aspect-ratio-supported, 1139px); } .framer-QkUjS .framer-1r7ulas { left: 50%; top: 13%; transform: translate(-50%, -50%); } .framer-QkUjS .framer-jabbve { padding: 120px 120px 200px 120px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12148\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zw36pmcBv\":{\"layout\":[\"fixed\",\"auto\"]},\"yBAwnv50I\":{\"layout\":[\"fixed\",\"auto\"]},\"nfITZpF2j\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"gKSsSLVxm\":{\"pattern\":\":gKSsSLVxm\",\"name\":\"header-animation-trigger\"},\"esNHNhrVt\":{\"pattern\":\":esNHNhrVt\",\"name\":\"header-close-trigger\"},\"SGpeHrWg8\":{\"pattern\":\":SGpeHrWg8\",\"name\":\"video-trigger2\"},\"lYkUllchp\":{\"pattern\":\":lYkUllchp\",\"name\":\"mobile-menu-trigger\"},\"jQHadzlXC\":{\"pattern\":\":jQHadzlXC\",\"name\":\"\"},\"UeNsibFAP\":{\"pattern\":\":UeNsibFAP\",\"name\":\"content\"},\"UYZurUQz8\":{\"pattern\":\":UYZurUQz8\",\"name\":\"hero\"},\"RAn5T54la\":{\"pattern\":\":RAn5T54la\",\"name\":\"hero-trigger\"},\"SSx20Lx2W\":{\"pattern\":\":SSx20Lx2W\",\"name\":\"hero-trigger-2\"},\"lqpLGg_2K\":{\"pattern\":\":lqpLGg_2K\",\"name\":\"highlights-(s2)\"}}\n * @framerResponsiveScreen\n */const Framerkpl2lluMc=withCSS(Component,css,\"framer-QkUjS\");export default Framerkpl2lluMc;Framerkpl2lluMc.displayName=\"Page\";Framerkpl2lluMc.defaultProps={height:12148,width:1200};addFonts(Framerkpl2lluMc,[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{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:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MFQT7HFGCR2L5ULQTW6YXYZXXHMPKLJ3/YWQ244D6TACUX5JBKATPOW5I5MGJ3G73/7YY3ZAAE3TRV2LANYOLXNHTPHLXVWTKH.woff2\",weight:\"400\"}]},...MobilMenuVariantFonts,...CMSItemCounterFonts,...FooterFonts,...HeaderFonts,...DetailServicesFonts,...VideoFonts,...SlideshowFonts,...Image1Fonts,...TickerFonts,...WorkItemFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...getFontsFromSharedStyle(sharedStyle17.fonts),...componentPresets.fonts?.[\"J9mt19jtH\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"J9mt19jtH\"]):[],...componentPresets.fonts?.[\"etDziEqlY\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"etDziEqlY\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerkpl2lluMc\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"gKSsSLVxm\\\":{\\\"pattern\\\":\\\":gKSsSLVxm\\\",\\\"name\\\":\\\"header-animation-trigger\\\"},\\\"esNHNhrVt\\\":{\\\"pattern\\\":\\\":esNHNhrVt\\\",\\\"name\\\":\\\"header-close-trigger\\\"},\\\"SGpeHrWg8\\\":{\\\"pattern\\\":\\\":SGpeHrWg8\\\",\\\"name\\\":\\\"video-trigger2\\\"},\\\"lYkUllchp\\\":{\\\"pattern\\\":\\\":lYkUllchp\\\",\\\"name\\\":\\\"mobile-menu-trigger\\\"},\\\"jQHadzlXC\\\":{\\\"pattern\\\":\\\":jQHadzlXC\\\",\\\"name\\\":\\\"\\\"},\\\"UeNsibFAP\\\":{\\\"pattern\\\":\\\":UeNsibFAP\\\",\\\"name\\\":\\\"content\\\"},\\\"UYZurUQz8\\\":{\\\"pattern\\\":\\\":UYZurUQz8\\\",\\\"name\\\":\\\"hero\\\"},\\\"RAn5T54la\\\":{\\\"pattern\\\":\\\":RAn5T54la\\\",\\\"name\\\":\\\"hero-trigger\\\"},\\\"SSx20Lx2W\\\":{\\\"pattern\\\":\\\":SSx20Lx2W\\\",\\\"name\\\":\\\"hero-trigger-2\\\"},\\\"lqpLGg_2K\\\":{\\\"pattern\\\":\\\":lqpLGg_2K\\\",\\\"name\\\":\\\"highlights-(s2)\\\"}}\",\"framerIntrinsicHeight\":\"12148\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zw36pmcBv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yBAwnv50I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nfITZpF2j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jesp7m7YY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerZ0jT2fWCR", "withCSS", "Z0jT2fWCR_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "variationAxes", "fonts", "css", "className", "MobilMenuVariantFonts", "getFonts", "lBBAFp1ey_default", "MobilMenuVariantWithVariantAppearEffect", "withVariantAppearEffect", "CMSItemCounterFonts", "CMSCounter", "FooterFonts", "wnu7DgivS_default", "HeaderFonts", "ApEj2Pw1L_default", "HeaderWithVariantAppearEffect", "DetailServicesFonts", "Z0jT2fWCR_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "SlideshowFonts", "Slideshow", "Image1Fonts", "Image", "TickerFonts", "Ticker", "WorkItemFonts", "ZUtbQuYab_default", "MotionDivWithdisableRightClick4r55r", "withCodeBoundaryForOverrides", "withdisableRightClick", "CursorFonts", "UR5UrbBRm_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transformTemplate1", "_", "t", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation3", "transition2", "animation4", "toResponsiveImage", "value", "isSet", "negate", "transformTemplate2", "equals", "b", "convertFromBoolean", "activeLocale", "convertFromBoolean1", "YBAuAw4FNELWNJ3xPh", "convertFromBoolean2", "convertFromBoolean3", "convertFromBoolean4", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "props", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "gkwaSJTcJ_default", "B3_TIyslb_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "Jp7uxhmFCUeNsibFAP", "YBAuAw4FNUeNsibFAP", "idUeNsibFAP", "dLCIaMNnG", "s5XbPVetn", "JFy23sjE2", "WvDa6y5kR", "YBAuAw4FNPUVqF68Ss", "VDw5IwRFUtRJ_nqVSS", "RCSQ3JVMQtRJ_nqVSS", "idtRJ_nqVSS", "wM5IcSTqT", "RCSQ3JVMQJrehhTFnp", "VDw5IwRFUJrehhTFnp", "idJrehhTFnp", "sAzsNHIOW", "Ov4z1z7kW", "VDw5IwRFUxzK6xAXDD", "RCSQ3JVMQxzK6xAXDD", "idxzK6xAXDD", "RCSQ3JVMQS7VNAMH6G", "VDw5IwRFUS7VNAMH6G", "idS7VNAMH6G", "ogvIVP7g6", "c4NAWwJu1", "AzmR5ePCe", "zHbBPVFgh", "Bz4Irkt85", "ZPkH3E8IA", "s0hu4fc3l", "xMk4EpRnQ", "ojobmDTKA", "QzKKXiCb4", "s3V2ypkE0", "CpgP4euuN", "bYMvBAee9", "ccwZjFCgE", "uGrsgPr6S", "R4nnHOdf1", "q7U1CtPgS", "S3JET6kA7", "RZOs7jI2a", "d1D6dbjdY", "IAJ8X56D1", "fJmBStE4y", "LMekX3vlf", "ws26RNiTe", "cvGThB5f8", "rBzjwXn0_", "G34ilfY75", "egdZSg8Ru", "MhuBiA0oj", "ADJLSUbhC", "myUs0XeOM", "iwwveszdN", "DjenomX1p", "GmKGUNfIW", "SfX2emvEz", "N2wkWkKZK", "Qwifz1E1C", "xJjLbpu55", "eW4Igh43W", "oX1MK92Or", "r1lweXGQb", "MpRiu0Mre", "dnCafr9kE", "Pf3lKo_4y", "wfoYZXunJ", "zX4JdJhRu", "Cgepe1YR8", "YGzGAEbQv", "QeyKN2Zea", "jMp_qV0FF", "Emvnaw48r", "DX7vK9A8H", "iXO87W7Pa", "CQeIXoNSN", "w0ZZ7jtXu", "MsKfxLohx", "u_iufSgiQ", "zjTUL7UdR", "NVyUQrLfl", "wrA81X5Iy", "tMjtUK1BR", "cG26W0pxW", "OvuXKUHi8", "KHANcKNb1", "NIPUmyXfV", "puASocdKU", "AqQ6Eu4iZ", "j_I3md96D", "cdD9z97Gu", "rZ22iAFYw", "hexrZ1YM9", "IvHb_xiOE", "fayIwfJ16", "wsHgICA5a", "svKm7O3w7", "ksm4RsbNo", "kHsGsGqkV", "YnVyTfwGI", "tG1gcywTB", "UspWbZk7v", "jOV9eHmvn", "vPFD_N1Xb", "cQnfKk8JZ", "hNsfEcV7M", "JlFvjVwc7", "uSvy17HBd", "uw9M7Q9Al", "JolceZ69N", "DVvOSt4a3", "RDQbvvHWO", "uxKcu082R", "bHtnhNmzx", "GAU3qHB6k", "kjqvP6ifN", "L8rsp1whF", "BpPcFPyOx", "d2hVLIpeO", "bTuzF9b3Q", "MBu1vHJI5", "pzIJg1sMA", "yH3mwI1UC", "sdwXR6AmE", "FUGKrBTLc", "y0yudAvky", "k9AIVIs69", "sJt0HTaVK", "JBXfKccPo", "NsheC8x9g", "fw8PH5v5b", "NvFlaKM89", "Z1LLeo1Fu", "Rnyi4IBsF", "choqpheMC", "hBH_FRHf5", "ZEGxpuyN6", "Y_klDGrdr", "ATX3C_5NO", "TKfCvTFT_", "eiYcDJWgO", "HHB5dWyfl", "ZYyt5g2_a", "zNCJjiinn", "lL4I9kMTcELWNJ3xPh", "Jp7uxhmFCELWNJ3xPh", "YP0sSsXTfELWNJ3xPh", "wM5IcSTqTELWNJ3xPh", "RTjsdQDMHELWNJ3xPh", "YBAuAw4FNELWNJ3xPh", "idELWNJ3xPh", "Jp7uxhmFC", "restProps", "getProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "GphGAFLwX3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "serializationHash", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed", "isBrowser", "elementId4", "ref5", "elementId5", "ref6", "isDisplayed1", "elementId6", "ref7", "elementId7", "ref8", "visible", "negate", "isSet", "visible1", "visible2", "elementId8", "ref9", "visible3", "visible4", "elementId9", "ref10", "isDisplayed2", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "isDisplayed3", "visible13", "visible14", "visible15", "visible16", "visible17", "visible18", "visible19", "visible20", "visible21", "visible22", "visible23", "visible24", "visible25", "isDisplayed4", "visible26", "visible27", "visible28", "visible29", "visible30", "visible31", "visible32", "visible33", "visible34", "visible35", "visible36", "visible37", "visible38", "visible39", "visible40", "visible41", "visible42", "visible43", "visible44", "visible45", "visible46", "visible47", "visible48", "visible49", "visible50", "visible51", "visible52", "visible53", "visible54", "visible55", "visible56", "visible57", "visible58", "visible59", "visible60", "visible61", "visible62", "visible63", "visible64", "visible65", "visible66", "visible67", "visible68", "visible69", "visible70", "visible71", "visible72", "visible73", "visible74", "visible75", "visible76", "visible77", "visible78", "visible79", "visible80", "visible81", "visible82", "visible83", "visible84", "visible85", "visible86", "visible87", "visible88", "visible89", "visible90", "visible91", "visible92", "visible93", "useCustomCursors", "cursor", "p", "GeneratedComponentContext", "variantClassNames", "u", "LayoutGroup", "HTMLStyle", "MotionDivWithdisableRightClick4r55r", "motion", "Overlay", "l", "PropertyOverrides2", "ComponentViewportProvider", "Container", "MobilMenuVariantWithVariantAppearEffect", "AnimatePresence", "Ga", "x", "animation1", "animation", "animation2", "RichText2", "Link", "CMSCounter", "ChildrenCanSuspend", "QueryData", "collection", "paginationInfo", "index", "PathVariablesContext", "Image2", "transformTemplate1", "wnu7DgivS_default", "getContainer", "HeaderWithVariantAppearEffect", "getLoadingLazyAtYPosition", "MotionDivWithFX", "transition2", "animation3", "animation4", "clampRGB", "toResponsiveImage", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "Z0jT2fWCR_default", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "Video", "transformTemplate2", "Slideshow", "Ticker", "Image", "ComponentPresetsProvider", "collection5", "paginationInfo5", "loadMore5", "index5", "ResolveLinks", "convertFromBoolean1", "resolvedLinks", "convertFromBoolean4", "convertFromBoolean3", "equals", "convertFromBoolean2", "ZUtbQuYab_default", "convertFromBoolean", "css", "Framerkpl2lluMc", "withCSS", "kpl2lluMc_default", "addFonts", "MobilMenuVariantFonts", "CMSItemCounterFonts", "FooterFonts", "HeaderFonts", "DetailServicesFonts", "VideoFonts", "SlideshowFonts", "Image1Fonts", "TickerFonts", "WorkItemFonts", "CursorFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
