{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framerusercontent.com/modules/kTFoACi1ttP23MZDZjUu/K4neSz96IhWKZ05LqNcO/w5AwGKd4p.js", "ssg:https://framerusercontent.com/modules/bfhl5TI9ON2B273c1rY4/24UVp1ktEmFPOa96wRod/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){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[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ 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}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},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\"],defaultValue:\"left\",displaySegmentedControl:true},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},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},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;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=useMemo(()=>startTimeProp===100?99.9:startTimeProp,[startTimeProp]);const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTime,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Urbanist-600\"]);export const fonts=[{family:\"Urbanist\",moduleAsset:{localModuleIdentifier:\"local-module:css/w5AwGKd4p:default\",url:\"https://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf\",weight:\"600\"}];export const css=['.framer-KInsR .framer-styles-preset-j8pjhm:not(.rich-text-wrapper), .framer-KInsR .framer-styles-preset-j8pjhm.rich-text-wrapper p, .framer-KInsR .framer-styles-preset-j8pjhm.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Urbanist\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-KInsR .framer-styles-preset-j8pjhm:not(.rich-text-wrapper), .framer-KInsR .framer-styles-preset-j8pjhm.rich-text-wrapper p, .framer-KInsR .framer-styles-preset-j8pjhm.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Urbanist\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-KInsR .framer-styles-preset-j8pjhm:not(.rich-text-wrapper), .framer-KInsR .framer-styles-preset-j8pjhm.rich-text-wrapper p, .framer-KInsR .framer-styles-preset-j8pjhm.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Urbanist\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-KInsR\";\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 (4939531)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,Image,Link,optimizeAppear,optimizeAppearTransformTemplate,PathVariablesContext,PropertyOverrides,removeHiddenBreakpointLayers,resolveLink,RichText,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bwgDNfOkuRQlrlKseDFD/SlideShow.js\";import ScrollToTopButton from\"#framer/local/canvasComponent/A6CEGSP5X/A6CEGSP5X.js\";import Footer from\"#framer/local/canvasComponent/EFt8j0AFn/EFt8j0AFn.js\";import Nav from\"#framer/local/canvasComponent/XP9PKE78G/XP9PKE78G.js\";import Button from\"#framer/local/canvasComponent/zIwM3GZOC/zIwM3GZOC.js\";import Product from\"#framer/local/collection/j01HyGSYA/j01HyGSYA.js\";import*as sharedStyle1 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle3 from\"#framer/local/css/TdPIFrOmc/TdPIFrOmc.js\";import*as sharedStyle4 from\"#framer/local/css/w5AwGKd4p/w5AwGKd4p.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle2 from\"#framer/local/css/Zq2I6ukW1/Zq2I6ukW1.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavFonts=getFonts(Nav);const NavWithVariantAppearEffect=withVariantAppearEffect(Nav);const ButtonFonts=getFonts(Button);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const SlideshowFonts=getFonts(Slideshow);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const ScrollToTopButtonFonts=getFonts(ScrollToTopButton);const ContainerWithFX=withFX(Container);const cycleOrder=[\"WQLkyLRf1\",\"wSm2JVHGJ\",\"sr4ZX8lQF\"];const breakpoints={sr4ZX8lQF:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",wSm2JVHGJ:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-pKkHH\";const variantClassNames={sr4ZX8lQF:\"framer-v-3ud5uq\",WQLkyLRf1:\"framer-v-72rtr7\",wSm2JVHGJ:\"framer-v-ih24pf\"};if(isBrowser()){removeHiddenBreakpointLayers(\"WQLkyLRf1\",breakpoints,variantClassNames);}const transitions={default:{duration:0}};const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,scale:1,transition:transition1,x:0,y:0};const transformTemplate=(_,t)=>`perspective(1200px) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,scale:1,x:0,y:0};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"sr4ZX8lQF\",Tablet:\"wSm2JVHGJ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,kYzfAXXorUBEewxC7w,OBNOyOMhoUBEewxC7w,WzXdmESthUBEewxC7w,oXocv0fdrUBEewxC7w,idUBEewxC7w,kYzfAXXorqCfr_8bk3,OBNOyOMhoqCfr_8bk3,oXocv0fdrqCfr_8bk3,idqCfr_8bk3,kYzfAXXoru1lXXkQRo,OBNOyOMhou1lXXkQRo,g37rJrJPru1lXXkQRo,oXocv0fdru1lXXkQRo,idu1lXXkQRo,kYzfAXXorlm8Q7mmqX,OBNOyOMholm8Q7mmqX,g37rJrJPrlm8Q7mmqX,oXocv0fdrlm8Q7mmqX,idlm8Q7mmqX,kYzfAXXorx2EBE2IQL,OBNOyOMhox2EBE2IQL,g37rJrJPrx2EBE2IQL,oXocv0fdrx2EBE2IQL,idx2EBE2IQL,kYzfAXXorrHvSRHI9D,OBNOyOMhorHvSRHI9D,g37rJrJPrrHvSRHI9D,oXocv0fdrrHvSRHI9D,idrHvSRHI9D,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(metadata1.bodyClassName);return()=>{document.body.classList.remove(metadata1.bodyClassName);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const ref1=React.useRef(null);const router=useRouter();const ref2=React.useRef(null);const id=useRouteElementId(\"Kf1magNx1\");const ref3=React.useRef(null);const id1=useRouteElementId(\"b9mBsH3zq\");const id2=useRouteElementId(\"DZy_353Fi\");const ref4=React.useRef(null);const id3=useRouteElementId(\"bwqVLnim8\");const ref5=React.useRef(null);const id4=useRouteElementId(\"AoPlGtWDA\");const ref6=React.useRef(null);const id5=useRouteElementId(\"sxEGISBZK\");const ref7=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsxs(motion.div,{className:cx(\"framer-pKkHH\",...sharedStyleClassNames),style:{display:\"contents\"},children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Container,{className:\"framer-15x9eu8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sr4ZX8lQF:{__framer__targets:[{offset:0,ref:ref2,target:\"KJbiIXQsr\"}],variant:\"twn0QikEF\"},wSm2JVHGJ:{__framer__targets:[{offset:0,ref:ref2,target:\"KJbiIXQsr\"}],variant:\"twn0QikEF\"}},children:/*#__PURE__*/_jsx(NavWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref2,target:\"PZDNyIBFk\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"eLl3ic9RH\",layoutId:\"eLl3ic9RH\",RT3vWdZw2:\"rgb(255, 255, 255)\",style:{width:\"100%\"},variant:\"wCYyvqhA0\",width:\"100%\",wrxZ9cgl7:resolveLink({hash:\":sxEGISBZK\",webPageId:\"augiA20Il\"},router)})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sr4ZX8lQF:{background:{alt:\"Hero image of beauty products\",fit:\"fill\",intrinsicHeight:2730,intrinsicWidth:2764,pixelHeight:2730,pixelWidth:2764,sizes:\"100vw\",src:\"https://framerusercontent.com/images/21OmbDqFr1ZjFmMKl0uxbyLGc.jpg\",srcSet:\"https://framerusercontent.com/images/21OmbDqFr1ZjFmMKl0uxbyLGc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/21OmbDqFr1ZjFmMKl0uxbyLGc.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/21OmbDqFr1ZjFmMKl0uxbyLGc.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/21OmbDqFr1ZjFmMKl0uxbyLGc.jpg 2764w\"}}},children:/*#__PURE__*/_jsxs(\"section\",{background:{alt:\"Hero image of beauty products\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"100vw\",src:\"https://framerusercontent.com/images/qZmd2mRx584K7nEn3V8uwhXchI.jpg\",srcSet:\"https://framerusercontent.com/images/qZmd2mRx584K7nEn3V8uwhXchI.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/qZmd2mRx584K7nEn3V8uwhXchI.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/qZmd2mRx584K7nEn3V8uwhXchI.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/qZmd2mRx584K7nEn3V8uwhXchI.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/qZmd2mRx584K7nEn3V8uwhXchI.jpg 6000w\"},className:\"framer-dwz1e2\",\"data-framer-name\":\"Hero\",id:id,name:\"Hero\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1otn72m\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o0y2p5\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sr4ZX8lQF:{\"data-framer-appear-id\":\"1am93t4\",animate:optimizeAppear(\"animate\",\"1am93t4\",animation1,\"3ud5uq\"),initial:optimizeAppear(\"initial\",\"1am93t4\",animation2,\"3ud5uq\"),transformTemplate:optimizeAppearTransformTemplate(\"1am93t4\",transformTemplate)},wSm2JVHGJ:{\"data-framer-appear-id\":\"1jc8pa3\",animate:optimizeAppear(\"animate\",\"1jc8pa3\",animation1,\"ih24pf\"),initial:optimizeAppear(\"initial\",\"1jc8pa3\",animation2,\"ih24pf\"),transformTemplate:optimizeAppearTransformTemplate(\"1jc8pa3\",transformTemplate)}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1vz87yp\",animation1,\"72rtr7\"),className:\"framer-1vz87yp\",\"data-framer-appear-id\":\"1vz87yp\",\"data-framer-name\":\"Content\",exit:animation,initial:optimizeAppear(\"initial\",\"1vz87yp\",animation2,\"72rtr7\"),name:\"Content\",transformTemplate:optimizeAppearTransformTemplate(\"1vz87yp\",transformTemplate),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35))\"},children:[\"Health Safety Environment\",/*#__PURE__*/_jsx(\"br\",{}),\" PT. Cipta Dimensi Baja Nusantra\"]})}),className:\"framer-2owy0x\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bdzz2\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-11id5zx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sr4ZX8lQF:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({hash:\":DZy_353Fi\",webPageId:\"augiA20Il\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"H2v3dVu3t\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:true,layoutId:\"H2v3dVu3t\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"View\",variant:\"s6sC9Admh\",VqIbSwMW5:74,width:\"100%\"})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-wru8g-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sr4ZX8lQF:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({hash:\":b9mBsH3zq\",webPageId:\"augiA20Il\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"zqbTaB6nC\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"zqbTaB6nC\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"ZwAZBC7mR\",VqIbSwMW5:24,width:\"100%\"})})})]})]})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}},{offset:0,ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:2,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xhf6i4\",transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lpesis-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(92, 0, 0)\",borderRadius:64,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"sAV_E5xOJ\",isMixedBorderRadius:false,layoutId:\"sAV_E5xOJ\",loop:true,muted:true,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/PMfZT0XZJDe5kVGwEaxHzUBI5k.png?scale-down-to=4096\",posterEnabled:true,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1tz6djm\",\"data-framer-name\":\"About\",id:id1,name:\"About\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rzzqn4\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sr4ZX8lQF:{background:{alt:\"beauty product on a table\",fit:\"fit\",intrinsicHeight:576,intrinsicWidth:600,pixelHeight:576,pixelWidth:600,sizes:\"min(100vw - 40px, 1000px)\",src:\"https://framerusercontent.com/images/CuZ9rvmS19642rlFvCZwe3pQY.png\",srcSet:\"https://framerusercontent.com/images/CuZ9rvmS19642rlFvCZwe3pQY.png?scale-down-to=512 512w, https://framerusercontent.com/images/CuZ9rvmS19642rlFvCZwe3pQY.png 600w\"}},wSm2JVHGJ:{background:{alt:\"beauty product on a table\",fit:\"fit\",intrinsicHeight:576,intrinsicWidth:600,loading:\"lazy\",pixelHeight:576,pixelWidth:600,sizes:\"min(100vw - 40px, 1000px)\",src:\"https://framerusercontent.com/images/CuZ9rvmS19642rlFvCZwe3pQY.png\",srcSet:\"https://framerusercontent.com/images/CuZ9rvmS19642rlFvCZwe3pQY.png?scale-down-to=512 512w, https://framerusercontent.com/images/CuZ9rvmS19642rlFvCZwe3pQY.png 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"beauty product on a table\",fit:\"fit\",intrinsicHeight:576,intrinsicWidth:600,pixelHeight:576,pixelWidth:600,src:\"https://framerusercontent.com/images/CuZ9rvmS19642rlFvCZwe3pQY.png\",srcSet:\"https://framerusercontent.com/images/CuZ9rvmS19642rlFvCZwe3pQY.png?scale-down-to=512 512w, https://framerusercontent.com/images/CuZ9rvmS19642rlFvCZwe3pQY.png 600w\"},className:\"framer-1e57dr3\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sgz4um\",\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"SAFETY FIRST !!\"})}),className:\"framer-9b8yg7\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uqp2xw\",\"data-styles-preset\":\"Zq2I6ukW1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35))\"},children:\"Selamat datang di situs web kami, di mana kita akan menampilkan informasi terkait kebutuhan safety di project milik PT. Cipta . Karena Keselamatan kerja bukan hanya sebuah kewajiban hukum, tetapi juga kunci untuk menciptakan lingkungan kerja yang sehat, produktif, dan berkelanjutan. \"})}),className:\"framer-wcbuo4\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Container,{className:\"framer-1nyi9j0-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({webPageId:\"vKzkJ190V\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"ycnEf9ttQ\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:true,layoutId:\"ycnEf9ttQ\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{width:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"Read more\",variant:\"gkzTNVciA\",VqIbSwMW5:24,width:\"100%\"})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-17ohgrz\",\"data-framer-name\":\"Blog\",id:id2,name:\"Blog\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1to9o7q\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lu92l\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Item\"})}),className:\"framer-1kj4k10\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{openInNewTab:true,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1ggm8eq framer-lux5qc\",\"data-framer-name\":\"Slider\",name:\"Slider\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-15dkhcy-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({webPageId:\"JEJgp90WS\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"wP6U30opi\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"wP6U30opi\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"View all\",variant:\"VoaQVimUr\",VqIbSwMW5:24,width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-vvy90s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sr4ZX8lQF:{arrowOptions:{arrowFill:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35)) /* {\"name\":\"Black\"} */',arrowGap:8,arrowPadding:100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"top-right\",arrowRadius:24,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:24,showMouseControls:true},direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},itemAmount:1},wSm2JVHGJ:{arrowOptions:{arrowFill:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35)) /* {\"name\":\"Black\"} */',arrowGap:8,arrowPadding:100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"top-right\",arrowRadius:24,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:24,showMouseControls:true},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},itemAmount:2}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35)) /* {\"name\":\"Black\"} */',arrowGap:8,arrowPadding:100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"top-right\",arrowRadius:32,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:32,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:32,height:\"100%\",id:\"Y4iBiXCkv\",intervalControl:1.5,itemAmount:3,layoutId:\"Y4iBiXCkv\",padding:0,paddingBottom:80,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:70,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3o7zz4\",\"data-framer-name\":\"Products CMS - 0\",name:\"Products CMS - 0\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},orderBy:[{direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{name:\"kYzfAXXor\",type:\"Identifier\"},{name:\"OBNOyOMho\",type:\"Identifier\"},{name:\"WzXdmESth\",type:\"Identifier\"},{name:\"oXocv0fdr\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection=>collection.map(({kYzfAXXor:kYzfAXXorUBEewxC7w,OBNOyOMho:OBNOyOMhoUBEewxC7w,WzXdmESth:WzXdmESthUBEewxC7w,oXocv0fdr:oXocv0fdrUBEewxC7w,id:idUBEewxC7w},i)=>/*#__PURE__*/_jsx(LayoutGroup,{id:`UBEewxC7w-${idUBEewxC7w}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdrUBEewxC7w},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11bmvhi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-192l0iu\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Eye Cream\"})}),className:\"framer-29wiva\",\"data-framer-name\":\"Title\",name:\"Title\",text:kYzfAXXorUBEewxC7w,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$40.00\"})}),className:\"framer-1ofkl0s\",\"data-framer-name\":\"Price\",name:\"Price\",text:OBNOyOMhoUBEewxC7w,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"242px\",src:\"https://framerusercontent.com/images/a0Izzt26rWq7BexkUJnB8cGU8.png\",srcSet:\"https://framerusercontent.com/images/a0Izzt26rWq7BexkUJnB8cGU8.png?scale-down-to=512 512w, https://framerusercontent.com/images/a0Izzt26rWq7BexkUJnB8cGU8.png 1024w\"},className:\"framer-1krjpr9\"}),/*#__PURE__*/_jsx(Link,{openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-mr3aq2 framer-lux5qc\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-tyxsfr-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink(WzXdmESthUBEewxC7w,router,{oXocv0fdr:oXocv0fdrUBEewxC7w}),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"FVeLCmlkq\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"FVeLCmlkq\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"View Stock\",variant:\"gkzTNVciA\",VqIbSwMW5:24,width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1gw2ohi-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({pathVariables:{oXocv0fdr:oXocv0fdrUBEewxC7w},webPageId:\"Hizkjx9bs\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"gmqcuRjAu\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"gmqcuRjAu\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})]})})]})})},idUBEewxC7w))})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s1etmt\",\"data-framer-name\":\"Products CMS - 1\",name:\"Products CMS - 1\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},orderBy:[{direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{name:\"kYzfAXXor\",type:\"Identifier\"},{name:\"OBNOyOMho\",type:\"Identifier\"},{name:\"oXocv0fdr\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection1=>collection1.map(({kYzfAXXor:kYzfAXXorqCfr_8bk3,OBNOyOMho:OBNOyOMhoqCfr_8bk3,oXocv0fdr:oXocv0fdrqCfr_8bk3,id:idqCfr_8bk3},i)=>/*#__PURE__*/_jsx(LayoutGroup,{id:`qCfr_8bk3-${idqCfr_8bk3}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdrqCfr_8bk3},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mtbag2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10wklv8\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Renewal Night Cream\"})}),className:\"framer-1wccdj1\",\"data-framer-name\":\"Title\",name:\"Title\",text:kYzfAXXorqCfr_8bk3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$50.00\"})}),className:\"framer-10sdt59\",\"data-framer-name\":\"Price\",name:\"Price\",text:OBNOyOMhoqCfr_8bk3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/6av3RUKRTBunUDZ0bc9nJX9NDA.png\"},className:\"framer-1jyyy8f\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oocssa\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1g5aeyw-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({webPageId:\"V7NvOtULE\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"w9JRgxgZ3\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"w9JRgxgZ3\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"View Stock\",variant:\"gkzTNVciA\",VqIbSwMW5:24,width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-l22525-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({pathVariables:{oXocv0fdr:oXocv0fdrqCfr_8bk3},webPageId:\"Hizkjx9bs\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"T9pupbXTx\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"T9pupbXTx\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})]})]})})},idqCfr_8bk3))})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tknzfv\",\"data-framer-name\":\"Products CMS - 2\",name:\"Products CMS - 2\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{name:\"kYzfAXXor\",type:\"Identifier\"},{name:\"OBNOyOMho\",type:\"Identifier\"},{name:\"g37rJrJPr\",type:\"Identifier\"},{name:\"oXocv0fdr\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection2=>collection2.map(({kYzfAXXor:kYzfAXXoru1lXXkQRo,OBNOyOMho:OBNOyOMhou1lXXkQRo,g37rJrJPr:g37rJrJPru1lXXkQRo,oXocv0fdr:oXocv0fdru1lXXkQRo,id:idu1lXXkQRo},i)=>/*#__PURE__*/_jsx(LayoutGroup,{id:`u1lXXkQRo-${idu1lXXkQRo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdru1lXXkQRo},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ku3qti\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xcv3ri\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Glow Moisturizing Cream\"})}),className:\"framer-1jvm3uq\",\"data-framer-name\":\"Title\",name:\"Title\",text:kYzfAXXoru1lXXkQRo,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$30.00\"})}),className:\"framer-14hjmsg\",\"data-framer-name\":\"Price\",name:\"Price\",text:OBNOyOMhou1lXXkQRo,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"242px\",...toResponsiveImage(g37rJrJPru1lXXkQRo)},className:\"framer-zt96is\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ay0uq\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1efazy7-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({webPageId:\"XSOOfiKH8\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"hk_8FtlhR\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"hk_8FtlhR\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"View Stock\",variant:\"gkzTNVciA\",VqIbSwMW5:24,width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-14v4yj2-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({pathVariables:{oXocv0fdr:oXocv0fdru1lXXkQRo},webPageId:\"Hizkjx9bs\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"pAAzPMPNJ\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"pAAzPMPNJ\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})]})]})})},idu1lXXkQRo))})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g3048b\",\"data-framer-name\":\"Products CMS - 3\",name:\"Products CMS - 3\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},orderBy:[{direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{name:\"kYzfAXXor\",type:\"Identifier\"},{name:\"OBNOyOMho\",type:\"Identifier\"},{name:\"g37rJrJPr\",type:\"Identifier\"},{name:\"oXocv0fdr\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection3=>collection3.map(({kYzfAXXor:kYzfAXXorlm8Q7mmqX,OBNOyOMho:OBNOyOMholm8Q7mmqX,g37rJrJPr:g37rJrJPrlm8Q7mmqX,oXocv0fdr:oXocv0fdrlm8Q7mmqX,id:idlm8Q7mmqX},i)=>/*#__PURE__*/_jsx(LayoutGroup,{id:`lm8Q7mmqX-${idlm8Q7mmqX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdrlm8Q7mmqX},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19xdt89\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wk4kzn\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Hydrating Serum\"})}),className:\"framer-1e1aus8\",\"data-framer-name\":\"Title\",name:\"Title\",text:kYzfAXXorlm8Q7mmqX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$45.00\"})}),className:\"framer-gp1wsd\",\"data-framer-name\":\"Price\",name:\"Price\",text:OBNOyOMholm8Q7mmqX,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"242px\",...toResponsiveImage(g37rJrJPrlm8Q7mmqX)},className:\"framer-jg83ef\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1errqw0\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-15faeei-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({webPageId:\"EKmxmbsr2\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"oV1SFylxX\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"oV1SFylxX\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"View Stock\",variant:\"gkzTNVciA\",VqIbSwMW5:24,width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-15augwy-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({pathVariables:{oXocv0fdr:oXocv0fdrlm8Q7mmqX},webPageId:\"Hizkjx9bs\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"KNzF8F8Kp\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"KNzF8F8Kp\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})]})]})})},idlm8Q7mmqX))})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1evtgas\",\"data-framer-name\":\"Products CMS - 4\",name:\"Products CMS - 4\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},orderBy:[{direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{name:\"kYzfAXXor\",type:\"Identifier\"},{name:\"OBNOyOMho\",type:\"Identifier\"},{name:\"g37rJrJPr\",type:\"Identifier\"},{name:\"oXocv0fdr\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection4=>collection4.map(({kYzfAXXor:kYzfAXXorx2EBE2IQL,OBNOyOMho:OBNOyOMhox2EBE2IQL,g37rJrJPr:g37rJrJPrx2EBE2IQL,oXocv0fdr:oXocv0fdrx2EBE2IQL,id:idx2EBE2IQL},i)=>/*#__PURE__*/_jsx(LayoutGroup,{id:`x2EBE2IQL-${idx2EBE2IQL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdrx2EBE2IQL},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-103e57d\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lx1k67\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Firming Mask\"})}),className:\"framer-zs0jtl\",\"data-framer-name\":\"Title\",name:\"Title\",text:kYzfAXXorx2EBE2IQL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$35.00\"})}),className:\"framer-110aruh\",\"data-framer-name\":\"Price\",name:\"Price\",text:OBNOyOMhox2EBE2IQL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"242px\",...toResponsiveImage(g37rJrJPrx2EBE2IQL)},className:\"framer-qae54l\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tenctg\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1rx9mha-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({webPageId:\"K93_EqOrK\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"gVkkfCPOY\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"gVkkfCPOY\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"View Stock\",variant:\"gkzTNVciA\",VqIbSwMW5:24,width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1wh7lus-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({pathVariables:{oXocv0fdr:oXocv0fdrx2EBE2IQL},webPageId:\"Hizkjx9bs\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"yEDSJIbwp\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"yEDSJIbwp\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})]})]})})},idx2EBE2IQL))})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y9aw7i\",\"data-framer-name\":\"Products CMS - 5\",name:\"Products CMS - 5\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Product,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},orderBy:[{direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{name:\"kYzfAXXor\",type:\"Identifier\"},{name:\"OBNOyOMho\",type:\"Identifier\"},{name:\"g37rJrJPr\",type:\"Identifier\"},{name:\"oXocv0fdr\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection5=>collection5.map(({kYzfAXXor:kYzfAXXorrHvSRHI9D,OBNOyOMho:OBNOyOMhorHvSRHI9D,g37rJrJPr:g37rJrJPrrHvSRHI9D,oXocv0fdr:oXocv0fdrrHvSRHI9D,id:idrHvSRHI9D},i)=>/*#__PURE__*/_jsx(LayoutGroup,{id:`rHvSRHI9D-${idrHvSRHI9D}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oXocv0fdr:oXocv0fdrrHvSRHI9D},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cm5j9c\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p6mu6z\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",children:\"Radiant Lip Treatment\"})}),className:\"framer-1aeb07x\",\"data-framer-name\":\"Title\",name:\"Title\",text:kYzfAXXorrHvSRHI9D,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pm95io\",\"data-styles-preset\":\"TdPIFrOmc\",style:{\"--framer-text-color\":\"var(--token-d1d09a71-62b2-422a-84b5-fafafe0e77c9, rgb(227, 213, 202))\"},children:\"$25.00\"})}),className:\"framer-1ff3yk6\",\"data-framer-name\":\"Price\",name:\"Price\",text:OBNOyOMhorHvSRHI9D,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"242px\",...toResponsiveImage(g37rJrJPrrHvSRHI9D)},className:\"framer-6b66s2\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y615bt\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-1c0jsx3-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({webPageId:\"iRJpqfEY6\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"MSsgsQyu1\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"MSsgsQyu1\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"View Stock\",variant:\"gkzTNVciA\",VqIbSwMW5:24,width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-15xs6oe-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:resolveLink({pathVariables:{oXocv0fdr:oXocv0fdrrHvSRHI9D},webPageId:\"Hizkjx9bs\"},router),cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"KmHYaeKCm\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"KmHYaeKCm\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"Learn more\",variant:\"j66KskKjI\",VqIbSwMW5:24,width:\"100%\"})})]})]})})},idrHvSRHI9D))})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-bw4uy9\",\"data-framer-name\":\"Testimonials\",id:id3,name:\"Testimonials\",ref:ref5,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b3rwh2\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ms9wbk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uqp2xw\",\"data-styles-preset\":\"Zq2I6ukW1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35))\"},children:'\"Ingatlah bahwa keselamatan di tempat kerja adalah prioritas utama, dan tindakan pencegahan yang baik adalah kunci untuk menghindari cedera dan menjaga kesejahteraan Anda serta rekan kerja.\"'})}),className:\"framer-1fxa21l\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mletvk\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xvyxs5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-j8pjhm\",\"data-styles-preset\":\"w5AwGKd4p\",style:{\"--framer-text-color\":\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35))\"},children:\"Tangerang, 13 Oktober 2023\"})}),className:\"framer-1yy6rya\",verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-17x83d2\",\"data-framer-name\":\"Instagram\",id:id4,name:\"Instagram\",ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iofkph\",\"data-framer-name\":\"Instagram carousel\",name:\"Instagram carousel\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Galery\"})}),className:\"framer-1o12v5f\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Container,{className:\"framer-1ukz27k-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"DY99DXYEt\",layoutId:\"DY99DXYEt\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"many beauty products on a table\",fit:\"fit\",intrinsicHeight:640,intrinsicWidth:512,pixelHeight:640,pixelWidth:512,sizes:\"350px\",src:\"https://framerusercontent.com/images/QjSmMcgaPiKUczCjeYn7ibDwVIE.jpg\",srcSet:\"https://framerusercontent.com/images/QjSmMcgaPiKUczCjeYn7ibDwVIE.jpg?scale-down-to=512 409w, https://framerusercontent.com/images/QjSmMcgaPiKUczCjeYn7ibDwVIE.jpg 512w\"},className:\"framer-wehr3i\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"beauty products on a green background\",fit:\"fit\",intrinsicHeight:1600,intrinsicWidth:1279,pixelHeight:1600,pixelWidth:1279,sizes:\"350px\",src:\"https://framerusercontent.com/images/hoNBIMfx8B8vttsbOBvff88wyPc.jpeg\",srcSet:\"https://framerusercontent.com/images/hoNBIMfx8B8vttsbOBvff88wyPc.jpeg?scale-down-to=512 409w, https://framerusercontent.com/images/hoNBIMfx8B8vttsbOBvff88wyPc.jpeg?scale-down-to=1024 818w, https://framerusercontent.com/images/hoNBIMfx8B8vttsbOBvff88wyPc.jpeg 1279w\"},className:\"framer-1r6nnsq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"three products nrext a plant\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"350px\",src:\"https://framerusercontent.com/images/osI07fZ0aH2M2DAjSYLcLmCde5Q.png\",srcSet:\"https://framerusercontent.com/images/osI07fZ0aH2M2DAjSYLcLmCde5Q.png?scale-down-to=512 512w, https://framerusercontent.com/images/osI07fZ0aH2M2DAjSYLcLmCde5Q.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/osI07fZ0aH2M2DAjSYLcLmCde5Q.png 1080w\"},className:\"framer-1k3b4p8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"three products on a table\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"350px\",src:\"https://framerusercontent.com/images/ww9BjGelqhtyk4UzHTFEu6UMITM.png\",srcSet:\"https://framerusercontent.com/images/ww9BjGelqhtyk4UzHTFEu6UMITM.png?scale-down-to=512 512w, https://framerusercontent.com/images/ww9BjGelqhtyk4UzHTFEu6UMITM.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ww9BjGelqhtyk4UzHTFEu6UMITM.png 1080w\"},className:\"framer-lr58ze\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"two products on a table\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"350px\",src:\"https://framerusercontent.com/images/9z2bgKonWKsN8xPAFxefIRame78.png\",srcSet:\"https://framerusercontent.com/images/9z2bgKonWKsN8xPAFxefIRame78.png?scale-down-to=512 512w, https://framerusercontent.com/images/9z2bgKonWKsN8xPAFxefIRame78.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/9z2bgKonWKsN8xPAFxefIRame78.png 1080w\"},className:\"framer-1cn26pv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"two products on a table\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"350px\",src:\"https://framerusercontent.com/images/uZ44iiCIsuGz2L8HFFqdAGYbrTI.png\",srcSet:\"https://framerusercontent.com/images/uZ44iiCIsuGz2L8HFFqdAGYbrTI.png?scale-down-to=512 512w, https://framerusercontent.com/images/uZ44iiCIsuGz2L8HFFqdAGYbrTI.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/uZ44iiCIsuGz2L8HFFqdAGYbrTI.png 1080w\"},className:\"framer-1tigis7\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1q66yah-container\",children:/*#__PURE__*/_jsx(Button,{aWw_6KcCZ:\"https://instagram.com/pt.ciptadimensi?igshid=MzRlODBiNWFlZA==\",cqVn8zY_I:false,ewhxR7fOM:true,H13AV0Kq9:\"ArrowLeft\",height:\"100%\",id:\"M8WwTRa7W\",IOCaLunmc:\"ArrowRight\",kAG7qdjE9:false,layoutId:\"M8WwTRa7W\",N1oJYlKKb:\"var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0))\",oxjKhRZ9J:\"var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255))\",style:{height:\"100%\"},t9X5DFqyQ:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',tQqXqVioD:false,TTxnyLF_5:\"Follow us @pt.ciptadimensi\",variant:\"gkzTNVciA\",VqIbSwMW5:24,width:\"100%\"})})]})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1gryl2d-container\",id:id5,ref:ref7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sr4ZX8lQF:{variant:\"b1zf7R3hQ\"},wSm2JVHGJ:{variant:\"uvSGLtcLb\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"sxEGISBZK\",layoutId:\"sxEGISBZK\",style:{width:\"100%\"},variant:\"FzBEdusPy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wSm2JVHGJ:{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}},{offset:0,ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jddytu-container\",layoutScroll:true,transformTemplate:transformTemplate,children:/*#__PURE__*/_jsx(ScrollToTopButton,{color:'var(--token-818a283b-450e-452c-a8af-6b81d42f4181, rgb(33, 33, 35)) /* {\"name\":\"Black\"} */',height:\"100%\",iconColor:'var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',id:\"fqjKDk0xA\",layoutId:\"fqjKDk0xA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})})});});const css=['.framer-pKkHH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName} { background: var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255)); }`,\".framer-pKkHH .framer-lux5qc { display: block; }\",\".framer-pKkHH .framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-pKkHH .framer-15x9eu8-container { flex: none; height: auto; position: sticky; top: -1px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-pKkHH .framer-dwz1e2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 90vh; justify-content: center; overflow: hidden; padding: 32px 100px 64px 100px; position: sticky; top: 0px; width: 100%; will-change: transform; }\",\".framer-pKkHH .framer-1otn72m { 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; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 643px; z-index: 7; }\",\".framer-pKkHH .framer-1o0y2p5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-pKkHH .framer-1vz87yp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1000px; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 1px; z-index: 4; }\",\".framer-pKkHH .framer-2owy0x, .framer-pKkHH .framer-1kj4k10, .framer-pKkHH .framer-1yy6rya, .framer-pKkHH .framer-1o12v5f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-pKkHH .framer-bdzz2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-pKkHH .framer-11id5zx-container, .framer-pKkHH .framer-wru8g-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-pKkHH .framer-1xhf6i4 { align-content: center; align-items: center; background-color: var(--token-e0bc5bc7-8344-43aa-b9e1-84cca4024d64, #fef9f0); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-pKkHH .framer-lpesis-container { flex: none; height: 100%; opacity: 0.83; position: relative; width: 100%; z-index: 5; }\",\".framer-pKkHH .framer-1tz6djm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 40px 64px 40px; position: relative; width: 100%; z-index: 9; }\",\".framer-pKkHH .framer-1rzzqn4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-pKkHH .framer-1e57dr3 { align-self: stretch; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pKkHH .framer-sgz4um { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-pKkHH .framer-9b8yg7, .framer-pKkHH .framer-wcbuo4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 605px; word-break: break-word; word-wrap: break-word; }\",\".framer-pKkHH .framer-1nyi9j0-container { flex: none; height: auto; position: relative; width: 130px; }\",\".framer-pKkHH .framer-17ohgrz { align-content: center; align-items: center; background-color: var(--token-e0bc5bc7-8344-43aa-b9e1-84cca4024d64, #fef9f0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-pKkHH .framer-1to9o7q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-pKkHH .framer-1lu92l, .framer-pKkHH .framer-mletvk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-pKkHH .framer-1ggm8eq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-pKkHH .framer-15dkhcy-container { flex: none; height: 40px; left: 0px; position: absolute; top: 0px; width: auto; z-index: 1; }\",\".framer-pKkHH .framer-vvy90s-container { flex: none; height: 490px; position: relative; width: 1000px; }\",\".framer-pKkHH .framer-3o7zz4, .framer-pKkHH .framer-1s1etmt, .framer-pKkHH .framer-1tknzfv, .framer-pKkHH .framer-1g3048b, .framer-pKkHH .framer-1evtgas, .framer-pKkHH .framer-y9aw7i { 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; padding: 0px 0px 0px 0px; position: relative; width: 306px; }\",\".framer-pKkHH .framer-11bmvhi, .framer-pKkHH .framer-1mtbag2, .framer-pKkHH .framer-103e57d, .framer-pKkHH .framer-cm5j9c { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 400px; justify-content: flex-start; padding: 32px 32px 32px 32px; position: relative; width: 1px; }\",\".framer-pKkHH .framer-192l0iu, .framer-pKkHH .framer-10wklv8, .framer-pKkHH .framer-1xcv3ri, .framer-pKkHH .framer-lx1k67, .framer-pKkHH .framer-p6mu6z { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-pKkHH .framer-29wiva, .framer-pKkHH .framer-1wccdj1, .framer-pKkHH .framer-1jvm3uq, .framer-pKkHH .framer-1e1aus8, .framer-pKkHH .framer-zs0jtl, .framer-pKkHH .framer-1aeb07x { --framer-paragraph-spacing: 0px; flex: none; height: 70px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pKkHH .framer-1ofkl0s, .framer-pKkHH .framer-10sdt59, .framer-pKkHH .framer-14hjmsg, .framer-pKkHH .framer-gp1wsd, .framer-pKkHH .framer-110aruh, .framer-pKkHH .framer-1ff3yk6 { --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-pKkHH .framer-1krjpr9, .framer-pKkHH .framer-1jyyy8f, .framer-pKkHH .framer-zt96is, .framer-pKkHH .framer-qae54l, .framer-pKkHH .framer-6b66s2 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-pKkHH .framer-mr3aq2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-pKkHH .framer-tyxsfr-container, .framer-pKkHH .framer-1gw2ohi-container, .framer-pKkHH .framer-1g5aeyw-container, .framer-pKkHH .framer-l22525-container, .framer-pKkHH .framer-1efazy7-container, .framer-pKkHH .framer-14v4yj2-container, .framer-pKkHH .framer-15faeei-container, .framer-pKkHH .framer-15augwy-container, .framer-pKkHH .framer-1rx9mha-container, .framer-pKkHH .framer-1wh7lus-container, .framer-pKkHH .framer-1c0jsx3-container, .framer-pKkHH .framer-15xs6oe-container, .framer-pKkHH .framer-1q66yah-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-pKkHH .framer-oocssa, .framer-pKkHH .framer-17ay0uq, .framer-pKkHH .framer-1tenctg, .framer-pKkHH .framer-1y615bt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-pKkHH .framer-ku3qti { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 401px; justify-content: flex-start; padding: 32px 32px 32px 32px; position: relative; width: 1px; }\",\".framer-pKkHH .framer-19xdt89 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; padding: 32px 32px 32px 32px; position: relative; width: 1px; }\",\".framer-pKkHH .framer-1wk4kzn { 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 0px 0px 0px; position: relative; width: 242px; }\",\".framer-pKkHH .framer-jg83ef { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 1px; position: relative; width: 242px; }\",\".framer-pKkHH .framer-1errqw0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 242px; }\",\".framer-pKkHH .framer-bw4uy9, .framer-pKkHH .framer-17x83d2 { align-content: center; align-items: center; background-color: var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-pKkHH .framer-1b3rwh2 { 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: 64px; height: min-content; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; width: 780px; }\",\".framer-pKkHH .framer-1ms9wbk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-pKkHH .framer-1fxa21l { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pKkHH .framer-xvyxs5 { 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: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-pKkHH .framer-1iofkph { align-content: center; align-items: center; background-color: var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-pKkHH .framer-1ukz27k-container { flex: none; height: 350px; position: relative; width: 100%; }\",\".framer-pKkHH .framer-wehr3i, .framer-pKkHH .framer-1r6nnsq, .framer-pKkHH .framer-1k3b4p8, .framer-pKkHH .framer-lr58ze, .framer-pKkHH .framer-1cn26pv, .framer-pKkHH .framer-1tigis7 { aspect-ratio: 1.1176470588235294 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; height: var(--framer-aspect-ratio-supported, 313px); overflow: hidden; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pKkHH .framer-1gryl2d-container { flex: none; height: auto; position: relative; width: 100%; z-index: 9; }\",\".framer-pKkHH .framer-1jddytu-container { aspect-ratio: 1 / 1; bottom: 28px; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: fixed; right: 34px; transform: perspective(1200px); width: 40px; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-pKkHH .framer-72rtr7, .framer-pKkHH .framer-dwz1e2, .framer-pKkHH .framer-1otn72m, .framer-pKkHH .framer-1o0y2p5, .framer-pKkHH .framer-1vz87yp, .framer-pKkHH .framer-bdzz2, .framer-pKkHH .framer-1xhf6i4, .framer-pKkHH .framer-1tz6djm, .framer-pKkHH .framer-1rzzqn4, .framer-pKkHH .framer-sgz4um, .framer-pKkHH .framer-17ohgrz, .framer-pKkHH .framer-1to9o7q, .framer-pKkHH .framer-1lu92l, .framer-pKkHH .framer-1ggm8eq, .framer-pKkHH .framer-3o7zz4, .framer-pKkHH .framer-11bmvhi, .framer-pKkHH .framer-192l0iu, .framer-pKkHH .framer-1s1etmt, .framer-pKkHH .framer-1mtbag2, .framer-pKkHH .framer-10wklv8, .framer-pKkHH .framer-1tknzfv, .framer-pKkHH .framer-ku3qti, .framer-pKkHH .framer-1xcv3ri, .framer-pKkHH .framer-1g3048b, .framer-pKkHH .framer-19xdt89, .framer-pKkHH .framer-1wk4kzn, .framer-pKkHH .framer-1evtgas, .framer-pKkHH .framer-103e57d, .framer-pKkHH .framer-lx1k67, .framer-pKkHH .framer-y9aw7i, .framer-pKkHH .framer-cm5j9c, .framer-pKkHH .framer-p6mu6z, .framer-pKkHH .framer-bw4uy9, .framer-pKkHH .framer-1b3rwh2, .framer-pKkHH .framer-1ms9wbk, .framer-pKkHH .framer-mletvk, .framer-pKkHH .framer-xvyxs5, .framer-pKkHH .framer-17x83d2, .framer-pKkHH .framer-1iofkph { gap: 0px; } .framer-pKkHH .framer-72rtr7 > *, .framer-pKkHH .framer-192l0iu > *, .framer-pKkHH .framer-10wklv8 > *, .framer-pKkHH .framer-1xcv3ri > *, .framer-pKkHH .framer-19xdt89 > *, .framer-pKkHH .framer-1wk4kzn > *, .framer-pKkHH .framer-lx1k67 > *, .framer-pKkHH .framer-p6mu6z > *, .framer-pKkHH .framer-xvyxs5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-pKkHH .framer-72rtr7 > :first-child, .framer-pKkHH .framer-1otn72m > :first-child, .framer-pKkHH .framer-1vz87yp > :first-child, .framer-pKkHH .framer-1tz6djm > :first-child, .framer-pKkHH .framer-sgz4um > :first-child, .framer-pKkHH .framer-17ohgrz > :first-child, .framer-pKkHH .framer-1to9o7q > :first-child, .framer-pKkHH .framer-1lu92l > :first-child, .framer-pKkHH .framer-1ggm8eq > :first-child, .framer-pKkHH .framer-11bmvhi > :first-child, .framer-pKkHH .framer-192l0iu > :first-child, .framer-pKkHH .framer-1mtbag2 > :first-child, .framer-pKkHH .framer-10wklv8 > :first-child, .framer-pKkHH .framer-ku3qti > :first-child, .framer-pKkHH .framer-1xcv3ri > :first-child, .framer-pKkHH .framer-19xdt89 > :first-child, .framer-pKkHH .framer-1wk4kzn > :first-child, .framer-pKkHH .framer-103e57d > :first-child, .framer-pKkHH .framer-lx1k67 > :first-child, .framer-pKkHH .framer-cm5j9c > :first-child, .framer-pKkHH .framer-p6mu6z > :first-child, .framer-pKkHH .framer-bw4uy9 > :first-child, .framer-pKkHH .framer-1b3rwh2 > :first-child, .framer-pKkHH .framer-1ms9wbk > :first-child, .framer-pKkHH .framer-mletvk > :first-child, .framer-pKkHH .framer-xvyxs5 > :first-child, .framer-pKkHH .framer-17x83d2 > :first-child, .framer-pKkHH .framer-1iofkph > :first-child { margin-top: 0px; } .framer-pKkHH .framer-72rtr7 > :last-child, .framer-pKkHH .framer-1otn72m > :last-child, .framer-pKkHH .framer-1vz87yp > :last-child, .framer-pKkHH .framer-1tz6djm > :last-child, .framer-pKkHH .framer-sgz4um > :last-child, .framer-pKkHH .framer-17ohgrz > :last-child, .framer-pKkHH .framer-1to9o7q > :last-child, .framer-pKkHH .framer-1lu92l > :last-child, .framer-pKkHH .framer-1ggm8eq > :last-child, .framer-pKkHH .framer-11bmvhi > :last-child, .framer-pKkHH .framer-192l0iu > :last-child, .framer-pKkHH .framer-1mtbag2 > :last-child, .framer-pKkHH .framer-10wklv8 > :last-child, .framer-pKkHH .framer-ku3qti > :last-child, .framer-pKkHH .framer-1xcv3ri > :last-child, .framer-pKkHH .framer-19xdt89 > :last-child, .framer-pKkHH .framer-1wk4kzn > :last-child, .framer-pKkHH .framer-103e57d > :last-child, .framer-pKkHH .framer-lx1k67 > :last-child, .framer-pKkHH .framer-cm5j9c > :last-child, .framer-pKkHH .framer-p6mu6z > :last-child, .framer-pKkHH .framer-bw4uy9 > :last-child, .framer-pKkHH .framer-1b3rwh2 > :last-child, .framer-pKkHH .framer-1ms9wbk > :last-child, .framer-pKkHH .framer-mletvk > :last-child, .framer-pKkHH .framer-xvyxs5 > :last-child, .framer-pKkHH .framer-17x83d2 > :last-child, .framer-pKkHH .framer-1iofkph > :last-child { margin-bottom: 0px; } .framer-pKkHH .framer-dwz1e2 > *, .framer-pKkHH .framer-1xhf6i4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-pKkHH .framer-dwz1e2 > :first-child, .framer-pKkHH .framer-1o0y2p5 > :first-child, .framer-pKkHH .framer-bdzz2 > :first-child, .framer-pKkHH .framer-1xhf6i4 > :first-child, .framer-pKkHH .framer-1rzzqn4 > :first-child, .framer-pKkHH .framer-3o7zz4 > :first-child, .framer-pKkHH .framer-1s1etmt > :first-child, .framer-pKkHH .framer-1tknzfv > :first-child, .framer-pKkHH .framer-1g3048b > :first-child, .framer-pKkHH .framer-1evtgas > :first-child, .framer-pKkHH .framer-y9aw7i > :first-child { margin-left: 0px; } .framer-pKkHH .framer-dwz1e2 > :last-child, .framer-pKkHH .framer-1o0y2p5 > :last-child, .framer-pKkHH .framer-bdzz2 > :last-child, .framer-pKkHH .framer-1xhf6i4 > :last-child, .framer-pKkHH .framer-1rzzqn4 > :last-child, .framer-pKkHH .framer-3o7zz4 > :last-child, .framer-pKkHH .framer-1s1etmt > :last-child, .framer-pKkHH .framer-1tknzfv > :last-child, .framer-pKkHH .framer-1g3048b > :last-child, .framer-pKkHH .framer-1evtgas > :last-child, .framer-pKkHH .framer-y9aw7i > :last-child { margin-right: 0px; } .framer-pKkHH .framer-1otn72m > *, .framer-pKkHH .framer-1ggm8eq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pKkHH .framer-1o0y2p5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pKkHH .framer-1vz87yp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-pKkHH .framer-bdzz2 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-pKkHH .framer-1tz6djm > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-pKkHH .framer-1rzzqn4 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-pKkHH .framer-sgz4um > *, .framer-pKkHH .framer-17ohgrz > *, .framer-pKkHH .framer-1to9o7q > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-pKkHH .framer-1lu92l > *, .framer-pKkHH .framer-mletvk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-pKkHH .framer-3o7zz4 > *, .framer-pKkHH .framer-1s1etmt > *, .framer-pKkHH .framer-1tknzfv > *, .framer-pKkHH .framer-1g3048b > *, .framer-pKkHH .framer-1evtgas > *, .framer-pKkHH .framer-y9aw7i > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-pKkHH .framer-11bmvhi > *, .framer-pKkHH .framer-1mtbag2 > *, .framer-pKkHH .framer-ku3qti > *, .framer-pKkHH .framer-103e57d > *, .framer-pKkHH .framer-cm5j9c > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-pKkHH .framer-bw4uy9 > *, .framer-pKkHH .framer-17x83d2 > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } .framer-pKkHH .framer-1b3rwh2 > *, .framer-pKkHH .framer-1iofkph > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-pKkHH .framer-1ms9wbk > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } }\",\"@media (min-width: 1200px) { .framer-pKkHH .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-pKkHH .hidden-ih24pf { display: none !important; } .${metadata.bodyClassName} { background: var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255)); } .framer-pKkHH .framer-72rtr7 { width: 810px; } .framer-pKkHH .framer-15x9eu8-container { order: 0; } .framer-pKkHH .framer-dwz1e2 { order: 1; padding: 32px 20px 64px 20px; } .framer-pKkHH .framer-1otn72m, .framer-pKkHH .framer-1o0y2p5 { width: min-content; } .framer-pKkHH .framer-1vz87yp { flex: none; justify-content: flex-start; width: 778px; } .framer-pKkHH .framer-1tz6djm { order: 2; padding: 80px 20px 80px 20px; z-index: 1; } .framer-pKkHH .framer-1rzzqn4 { flex-direction: column; } .framer-pKkHH .framer-1e57dr3 { align-self: unset; flex: none; height: 500px; width: 100%; } .framer-pKkHH .framer-17ohgrz { order: 3; padding: 80px 20px 80px 20px; z-index: 1; } .framer-pKkHH .framer-1to9o7q, .framer-pKkHH .framer-1iofkph { z-index: 1; } .framer-pKkHH .framer-1ggm8eq { align-content: center; align-items: center; } .framer-pKkHH .framer-vvy90s-container, .framer-pKkHH .framer-1b3rwh2 { width: 100%; } .framer-pKkHH .framer-bw4uy9 { order: 4; padding: 80px 20px 80px 20px; z-index: 1; } .framer-pKkHH .framer-17x83d2 { order: 5; padding: 80px 0px 80px 0px; z-index: 1; } .framer-pKkHH .framer-1gryl2d-container { order: 6; z-index: 1; } .framer-pKkHH .framer-1jddytu-container { bottom: 308px; order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-pKkHH .framer-1rzzqn4 { gap: 0px; } .framer-pKkHH .framer-1rzzqn4 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-pKkHH .framer-1rzzqn4 > :first-child { margin-top: 0px; } .framer-pKkHH .framer-1rzzqn4 > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .framer-pKkHH .hidden-3ud5uq { display: none !important; } .${metadata.bodyClassName} { background: var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, rgb(255, 255, 255)); } .framer-pKkHH .framer-72rtr7 { width: 390px; } .framer-pKkHH .framer-dwz1e2 { flex-direction: column; padding: 32px 20px 64px 20px; } .framer-pKkHH .framer-1otn72m { gap: 0px; order: 0; top: 50%; width: min-content; } .framer-pKkHH .framer-1o0y2p5 { width: min-content; } .framer-pKkHH .framer-1vz87yp { align-self: stretch; flex: none; height: auto; max-width: unset; padding: 64px 0px 0px 0px; width: 320px; } .framer-pKkHH .framer-2owy0x { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-pKkHH .framer-bdzz2 { flex-direction: column; width: 160px; } .framer-pKkHH .framer-11id5zx-container, .framer-pKkHH .framer-wru8g-container { width: 160px; } .framer-pKkHH .framer-1xhf6i4 { flex: 1 0 0px; height: 1px; order: 1; } .framer-pKkHH .framer-1tz6djm { padding: 100px 20px 32px 20px; } .framer-pKkHH .framer-1rzzqn4 { flex-direction: column; } .framer-pKkHH .framer-1e57dr3 { align-self: unset; flex: none; height: 285px; width: 100%; } .framer-pKkHH .framer-sgz4um, .framer-pKkHH .framer-1b3rwh2 { width: 100%; } .framer-pKkHH .framer-9b8yg7 { order: 0; width: 100%; } .framer-pKkHH .framer-wcbuo4 { order: 1; width: 100%; } .framer-pKkHH .framer-1nyi9j0-container { order: 2; z-index: 1; } .framer-pKkHH .framer-17ohgrz { padding: 60px 20px 60px 20px; } .framer-pKkHH .framer-vvy90s-container { height: 600px; width: 100%; } .framer-pKkHH .framer-bw4uy9, .framer-pKkHH .framer-17x83d2 { gap: 64px; padding: 60px 20px 60px 20px; } .framer-pKkHH .framer-1iofkph { gap: 32px; } .framer-pKkHH .framer-1jddytu-container { bottom: 72px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-pKkHH .framer-dwz1e2, .framer-pKkHH .framer-1otn72m, .framer-pKkHH .framer-bdzz2, .framer-pKkHH .framer-1rzzqn4, .framer-pKkHH .framer-bw4uy9, .framer-pKkHH .framer-17x83d2, .framer-pKkHH .framer-1iofkph { gap: 0px; } .framer-pKkHH .framer-dwz1e2 > *, .framer-pKkHH .framer-1otn72m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-pKkHH .framer-dwz1e2 > :first-child, .framer-pKkHH .framer-1otn72m > :first-child, .framer-pKkHH .framer-bdzz2 > :first-child, .framer-pKkHH .framer-1rzzqn4 > :first-child, .framer-pKkHH .framer-bw4uy9 > :first-child, .framer-pKkHH .framer-17x83d2 > :first-child, .framer-pKkHH .framer-1iofkph > :first-child { margin-top: 0px; } .framer-pKkHH .framer-dwz1e2 > :last-child, .framer-pKkHH .framer-1otn72m > :last-child, .framer-pKkHH .framer-bdzz2 > :last-child, .framer-pKkHH .framer-1rzzqn4 > :last-child, .framer-pKkHH .framer-bw4uy9 > :last-child, .framer-pKkHH .framer-17x83d2 > :last-child, .framer-pKkHH .framer-1iofkph > :last-child { margin-bottom: 0px; } .framer-pKkHH .framer-bdzz2 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-pKkHH .framer-1rzzqn4 > *, .framer-pKkHH .framer-bw4uy9 > *, .framer-pKkHH .framer-17x83d2 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-pKkHH .framer-1iofkph > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3597.4\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wSm2JVHGJ\":{\"layout\":[\"fixed\",\"auto\"]},\"sr4ZX8lQF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables false\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-pKkHH\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3597.4,width:1200};addFonts(FrameraugiA20Il,[...NavFonts,...ButtonFonts,...VideoFonts,...SlideshowFonts,...TickerFonts,...FooterFonts,...ScrollToTopButtonFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts,...sharedStyle4.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wSm2JVHGJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sr4ZX8lQF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"3597.4\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "NavFonts", "getFonts", "XP9PKE78G_default", "NavWithVariantAppearEffect", "withVariantAppearEffect", "ButtonFonts", "zIwM3GZOC_default", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "motion", "SlideshowFonts", "Slideshow", "TickerFonts", "Ticker", "FooterFonts", "EFt8j0AFn_default", "ScrollToTopButtonFonts", "A6CEGSP5X_default", "ContainerWithFX", "Container", "breakpoints", "isBrowser", "variantClassNames", "isBrowser", "transitions", "transition1", "animation", "transformTemplate", "_", "t", "animation1", "animation2", "QueryData", "query", "children", "data", "useQueryData", "toResponsiveImage", "value", "metadata", "a", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "kYzfAXXorUBEewxC7w", "OBNOyOMhoUBEewxC7w", "WzXdmESthUBEewxC7w", "oXocv0fdrUBEewxC7w", "idUBEewxC7w", "kYzfAXXorqCfr_8bk3", "OBNOyOMhoqCfr_8bk3", "oXocv0fdrqCfr_8bk3", "idqCfr_8bk3", "kYzfAXXoru1lXXkQRo", "OBNOyOMhou1lXXkQRo", "g37rJrJPru1lXXkQRo", "oXocv0fdru1lXXkQRo", "idu1lXXkQRo", "kYzfAXXorlm8Q7mmqX", "OBNOyOMholm8Q7mmqX", "g37rJrJPrlm8Q7mmqX", "oXocv0fdrlm8Q7mmqX", "idlm8Q7mmqX", "kYzfAXXorx2EBE2IQL", "OBNOyOMhox2EBE2IQL", "g37rJrJPrx2EBE2IQL", "oXocv0fdrx2EBE2IQL", "idx2EBE2IQL", "kYzfAXXorrHvSRHI9D", "OBNOyOMhorHvSRHI9D", "g37rJrJPrrHvSRHI9D", "oXocv0fdrrHvSRHI9D", "idrHvSRHI9D", "restProps", "fe", "metadata1", "_document_querySelector", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "transition", "ref1", "pe", "router", "useRouter", "ref2", "useRouteElementId", "ref3", "id1", "id2", "ref4", "id3", "ref5", "id4", "ref6", "id5", "ref7", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides2", "NavWithVariantAppearEffect", "resolveLink", "optimizeAppear", "optimizeAppearTransformTemplate", "RichText2", "x", "zIwM3GZOC_default", "MotionDivWithFX", "Video", "Image2", "Link", "Slideshow", "j01HyGSYA_default", "collection", "i", "PathVariablesContext", "collection1", "collection2", "collection3", "collection4", "collection5", "Ticker", "EFt8j0AFn_default", "ContainerWithFX", "A6CEGSP5X_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavFonts", "ButtonFonts", "VideoFonts", "SlideshowFonts", "TickerFonts", "FooterFonts", "ScrollToTopButtonFonts", "fonts", "__FramerMetadata__"]
}
