{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/879NsfOSEJfFxp8PKAfY/x9XDPJT6E8LByC0O9IYc/namtoJPs_.js", "ssg:https://framerusercontent.com/modules/7JHK0q3MDkGaytcLh3wh/rRhQA788nfOETSGFCP0H/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";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});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.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();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (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===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...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:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// 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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (d6b3045)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Contact from\"https://framerusercontent.com/modules/DafC1r4U2CijKqbcnnXs/Ef067eodJXU4n1IFtKUW/AyrAGLRHQ.js\";import Journal from\"https://framerusercontent.com/modules/O970zEgurLqPZtd9IOuR/xfVEVN3TcF0xc1iWlcT8/J3gl0XM0G.js\";import Products from\"https://framerusercontent.com/modules/DcyH9a6cHjYAKI1SybhT/cKSL9v9XoO8FDdAMzGO4/k4U6XIUwA.js\";import About from\"https://framerusercontent.com/modules/NsxnXZiCovoN4me6xaw6/1sBXU5foN70AXK7aPVSK/nBkNCzM3g.js\";const ProductsFonts=getFonts(Products);const JournalFonts=getFonts(Journal);const AboutFonts=getFonts(About);const ContactFonts=getFonts(Contact);const serializationHash=\"framer-Br3mK\";const variantClassNames={yU8FbbUb4:\"framer-v-5x968v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,fROJXG4gl:click!==null&&click!==void 0?click:props.fROJXG4gl};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fROJXG4gl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"yU8FbbUb4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap96501c=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(fROJXG4gl){const res=await fROJXG4gl(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-5x968v\",className,classNames),\"data-framer-name\":\"Menu-forside\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yU8FbbUb4\",onTap:onTap96501c,ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pyw83d\",\"data-framer-name\":\"Menu products\",layoutDependency:layoutDependency,layoutId:\"yU8FbbUb4rrAN0Cgze\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h70am5\",layoutDependency:layoutDependency,layoutId:\"yU8FbbUb4Q2axdAKPJ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||310)-0-310)/2+0+0)+141+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ly4oa-container\",\"data-framer-name\":\"Collection\",layoutDependency:layoutDependency,layoutId:\"yU8FbbUb4XTEpM8tpI-container\",name:\"Collection\",children:/*#__PURE__*/_jsx(Products,{height:\"100%\",id:\"yU8FbbUb4XTEpM8tpI\",layoutId:\"yU8FbbUb4XTEpM8tpI\",name:\"Collection\",style:{height:\"100%\"},variant:\"zTXW2n1aT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||310)-0-310)/2+0+0)+141,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u2s5yy-container\",layoutDependency:layoutDependency,layoutId:\"yU8FbbUb4do5Str10z-container\",children:/*#__PURE__*/_jsx(Journal,{height:\"100%\",id:\"yU8FbbUb4do5Str10z\",layoutId:\"yU8FbbUb4do5Str10z\",style:{height:\"100%\"},variant:\"otJhskjr7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||310)-0-310)/2+0+0)+141,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y35sdc-container\",layoutDependency:layoutDependency,layoutId:\"yU8FbbUb4Qszv6iBAe-container\",children:/*#__PURE__*/_jsx(About,{height:\"100%\",id:\"yU8FbbUb4Qszv6iBAe\",layoutId:\"yU8FbbUb4Qszv6iBAe\",style:{height:\"100%\"},variant:\"hWBsDrHRh\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||310)-0-310)/2+0+0)+141,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r4c4uv-container\",layoutDependency:layoutDependency,layoutId:\"yU8FbbUb4ECpQy6OOH-container\",children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"yU8FbbUb4ECpQy6OOH\",layoutId:\"yU8FbbUb4ECpQy6OOH\",style:{height:\"100%\"},variant:\"n5EH2UvJ0\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Br3mK.framer-1qfugiw, .framer-Br3mK .framer-1qfugiw { display: block; }\",\".framer-Br3mK.framer-5x968v { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Br3mK .framer-pyw83d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 310px; justify-content: center; overflow: visible; padding: 15px 15px 20px 15px; position: relative; width: 1501px; }\",\".framer-Br3mK .framer-1h70am5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 23px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Br3mK .framer-4ly4oa-container, .framer-Br3mK .framer-u2s5yy-container, .framer-Br3mK .framer-y35sdc-container, .framer-Br3mK .framer-1r4c4uv-container { cursor: pointer; flex: none; height: 23px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Br3mK.framer-5x968v, .framer-Br3mK .framer-pyw83d, .framer-Br3mK .framer-1h70am5 { gap: 0px; } .framer-Br3mK.framer-5x968v > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Br3mK.framer-5x968v > :first-child { margin-top: 0px; } .framer-Br3mK.framer-5x968v > :last-child { margin-bottom: 0px; } .framer-Br3mK .framer-pyw83d > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Br3mK .framer-pyw83d > :first-child, .framer-Br3mK .framer-1h70am5 > :first-child { margin-left: 0px; } .framer-Br3mK .framer-pyw83d > :last-child, .framer-Br3mK .framer-1h70am5 > :last-child { margin-right: 0px; } .framer-Br3mK .framer-1h70am5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 310\n * @framerIntrinsicWidth 1501\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"fROJXG4gl\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernamtoJPs_=withCSS(Component,css,\"framer-Br3mK\");export default FramernamtoJPs_;FramernamtoJPs_.displayName=\"Menu forside\";FramernamtoJPs_.defaultProps={height:310,width:1501};addPropertyControls(FramernamtoJPs_,{fROJXG4gl:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramernamtoJPs_,[{explicitInter:true,fonts:[]},...ProductsFonts,...JournalFonts,...AboutFonts,...ContactFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernamtoJPs_\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"fROJXG4gl\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1501\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"310\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./namtoJPs_.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCodeBoundaryForOverrides,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import TabletMobileMenu from\"#framer/local/canvasComponent/dORFCxCug/dORFCxCug.js\";import Sidemenu from\"#framer/local/canvasComponent/fBpcQIMki/fBpcQIMki.js\";import MenuForside from\"#framer/local/canvasComponent/namtoJPs_/namtoJPs_.js\";import{with100svh}from\"#framer/local/codeFile/ZM9zdd0/Full_height_override.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MotionDivWith100svhyeesra=withCodeBoundaryForOverrides(motion.div,{nodeId:\"g34PV80G5\",override:with100svh,scopeId:\"augiA20Il\"});const MenuForsideFonts=getFonts(MenuForside);const SidemenuFonts=getFonts(Sidemenu);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const TabletMobileMenuFonts=getFonts(TabletMobileMenu);const MotionDivWith100svh1adp5n=withCodeBoundaryForOverrides(motion.div,{nodeId:\"pnKqI8AC8\",override:with100svh,scopeId:\"augiA20Il\"});const MotionDivWith100svh72rtr7=withCodeBoundaryForOverrides(motion.div,{nodeId:\"WQLkyLRf1\",override:with100svh,scopeId:\"augiA20Il\"});const breakpoints={WQLkyLRf1:\"(min-width: 1512px)\",xvWdACxjI:\"(min-width: 1024px) and (max-width: 1511px)\",yHM0KTeN6:\"(min-width: 810px) and (max-width: 1023px)\",ZjPM17FMm:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-c3y21\";const variantClassNames={WQLkyLRf1:\"framer-v-72rtr7\",xvWdACxjI:\"framer-v-eydhoa\",yHM0KTeN6:\"framer-v-piogiv\",ZjPM17FMm:\"framer-v-1rxva67\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:.8,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Small desktop\":\"xvWdACxjI\",Desktop:\"WQLkyLRf1\",Phone:\"ZjPM17FMm\",Tablet:\"yHM0KTeN6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ZjPM17FMm\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"yHM0KTeN6\",\"ZjPM17FMm\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"yHM0KTeN6\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yHM0KTeN6:{background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},ZjPM17FMm:{background:{alt:\"\",positionX:\"center\",positionY:\"center\"}}},children:/*#__PURE__*/_jsxs(MotionDivWith100svh72rtr7,{...restProps,background:{alt:\"\",fit:\"fill\",positionX:\"50%\",positionY:\"77.9%\"},className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWith100svhyeesra,{className:\"framer-yeesra hidden-72rtr7 hidden-eydhoa hidden-piogiv\",\"data-framer-name\":\"Forside\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZjPM17FMm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1e3-110+35+0),sizes:\"180px\",src:\"https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png\",srcSet:\"https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"180px\",src:\"https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png\",srcSet:\"https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png 4096w\"},className:\"framer-1bpc921\",\"data-framer-name\":\"logo sticker d\\xf8r hvid 1\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",positionX:\"center\",positionY:\"center\"},className:\"framer-wx2grb hidden-piogiv hidden-1rxva67\",\"data-framer-appear-id\":\"wx2grb\",\"data-framer-name\":\"Forside\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7b58zj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,y:(componentViewport?.y||0)+0+0+1e3-200+200-160,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dwzrnk-container\",nodeId:\"pV2FCf344\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MenuForside,{height:\"100%\",id:\"pV2FCf344\",layoutId:\"pV2FCf344\",style:{height:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4lf01c\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+15+56),pixelHeight:1170,pixelWidth:3777,sizes:\"134px\",src:\"https://framerusercontent.com/images/VwRawu78rni9slIVJI0PeJDaQk.png\",srcSet:\"https://framerusercontent.com/images/VwRawu78rni9slIVJI0PeJDaQk.png?scale-down-to=512 512w,https://framerusercontent.com/images/VwRawu78rni9slIVJI0PeJDaQk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VwRawu78rni9slIVJI0PeJDaQk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VwRawu78rni9slIVJI0PeJDaQk.png 3777w\"},className:\"framer-b2tnv4\",\"data-framer-name\":\"logo sticker d\\xf8r hvid 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19ddo32\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:`calc(${componentViewport?.width||\"100vw\"} * 0.17)`,y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3gqmx1-container\",nodeId:\"MpyVN0DnP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Sidemenu,{height:\"100%\",id:\"MpyVN0DnP\",layoutId:\"MpyVN0DnP\",style:{height:\"100%\",width:\"100%\"},variant:\"mpDNpDgzn\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vsygjy\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wg5vtj-container\",isModuleExternal:true,nodeId:\"BcY6chy1a\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"BcY6chy1a\",isMixedBorderRadius:false,layoutId:\"BcY6chy1a\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/1vBA3c3465i5bT56h5rZdJkHxq0.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/6K3YkDmSAxUDCWrpoZpvOJ1VhAY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",positionX:\"center\",positionY:\"center\"},className:\"framer-107y277 hidden-72rtr7 hidden-eydhoa hidden-1rxva67\",\"data-framer-name\":\"Forside\",children:isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yHM0KTeN6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+897.1429),sizes:\"220px\",src:\"https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png\",srcSet:\"https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png\",srcSet:\"https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/v6Xs5Sf3vRmL7belgsMvosMCYTM.png 4096w\"},className:\"framer-1s5si97 hidden-72rtr7\",\"data-framer-name\":\"logo sticker d\\xf8r hvid 1\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",positionX:\"center\",positionY:\"bottom\"},className:\"framer-9vwlbt hidden-72rtr7 hidden-eydhoa hidden-piogiv\",children:isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWith100svh1adp5n,{className:\"framer-1adp5n hidden-72rtr7\",\"data-framer-name\":\"Menu-stack\",children:isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZjPM17FMm:{height:81,width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+15}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h1alsl-container hidden-72rtr7\",nodeId:\"gkh5yO6uI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TabletMobileMenu,{height:\"100%\",id:\"gkh5yO6uI\",layoutId:\"gkh5yO6uI\",style:{width:\"100%\"},variant:\"pngDrbbWa\",width:\"100%\"})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-pcrqc8 hidden-72rtr7 hidden-eydhoa hidden-1rxva67\",\"data-framer-name\":\"Menu-stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yHM0KTeN6:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+15}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u2v6sl-container\",nodeId:\"cO_HygqFE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TabletMobileMenu,{height:\"100%\",id:\"cO_HygqFE\",layoutId:\"cO_HygqFE\",style:{width:\"100%\"},variant:\"pngDrbbWa\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c3y21.framer-lux5qc, .framer-c3y21 .framer-lux5qc { display: block; }\",\".framer-c3y21.framer-72rtr7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1512px; }\",\".framer-c3y21 .framer-yeesra { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; left: 50%; overflow: hidden; padding: 35px 0px 40px 0px; position: absolute; transform: translateX(-50%); width: 46%; z-index: 3; }\",\".framer-c3y21 .framer-1bpc921 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 35px; justify-content: center; padding: 15px; position: relative; width: 180px; z-index: 2; }\",\".framer-c3y21 .framer-wx2grb { flex: none; height: 100vh; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-c3y21 .framer-7b58zj { bottom: 0px; flex: none; height: 200px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 6; }\",\".framer-c3y21 .framer-dwzrnk-container { bottom: 0px; flex: none; height: 160px; left: 50%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-c3y21 .framer-4lf01c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 130px; justify-content: flex-end; overflow: hidden; padding: 0px; position: absolute; right: 30px; top: 15px; width: 215px; }\",\".framer-c3y21 .framer-b2tnv4 { flex: none; height: 18px; position: relative; width: 134px; }\",\".framer-c3y21 .framer-19ddo32 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: 17%; }\",\".framer-c3y21 .framer-3gqmx1-container { flex: none; height: 100vh; position: relative; width: 100%; z-index: 1; }\",\".framer-c3y21 .framer-vsygjy { background-color: #000000; flex: none; height: 100vh; left: 0px; mix-blend-mode: multiply; opacity: 0.18; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-c3y21 .framer-1wg5vtj-container { bottom: 0px; flex: none; height: 100vh; left: 0px; position: absolute; right: 0px; z-index: 0; }\",\".framer-c3y21 .framer-107y277 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-end; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-c3y21 .framer-1s5si97 { align-content: center; align-items: center; aspect-ratio: 5.133333333333334 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 43px); justify-content: flex-end; padding: 15px; position: relative; width: 220px; z-index: 7; }\",\".framer-c3y21 .framer-9vwlbt { flex: none; height: 100vh; overflow: hidden; position: relative; width: 100%; z-index: 6; }\",\".framer-c3y21 .framer-1adp5n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 0px; min-height: 844px; overflow: hidden; padding: 15px; position: absolute; right: 0px; top: 0px; z-index: 6; }\",\".framer-c3y21 .framer-h1alsl-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 7; }\",\".framer-c3y21 .framer-pcrqc8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 15px; position: absolute; right: 0px; top: 0px; z-index: 4; }\",\".framer-c3y21 .framer-1u2v6sl-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c3y21.framer-72rtr7, .framer-c3y21 .framer-yeesra, .framer-c3y21 .framer-1bpc921, .framer-c3y21 .framer-4lf01c, .framer-c3y21 .framer-19ddo32, .framer-c3y21 .framer-107y277, .framer-c3y21 .framer-1s5si97, .framer-c3y21 .framer-1adp5n, .framer-c3y21 .framer-pcrqc8 { gap: 0px; } .framer-c3y21.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-c3y21.framer-72rtr7 > :first-child, .framer-c3y21 .framer-yeesra > :first-child, .framer-c3y21 .framer-107y277 > :first-child { margin-top: 0px; } .framer-c3y21.framer-72rtr7 > :last-child, .framer-c3y21 .framer-yeesra > :last-child, .framer-c3y21 .framer-107y277 > :last-child { margin-bottom: 0px; } .framer-c3y21 .framer-yeesra > *, .framer-c3y21 .framer-107y277 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c3y21 .framer-1bpc921 > *, .framer-c3y21 .framer-4lf01c > *, .framer-c3y21 .framer-19ddo32 > *, .framer-c3y21 .framer-1s5si97 > *, .framer-c3y21 .framer-1adp5n > *, .framer-c3y21 .framer-pcrqc8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-c3y21 .framer-1bpc921 > :first-child, .framer-c3y21 .framer-4lf01c > :first-child, .framer-c3y21 .framer-19ddo32 > :first-child, .framer-c3y21 .framer-1s5si97 > :first-child, .framer-c3y21 .framer-1adp5n > :first-child, .framer-c3y21 .framer-pcrqc8 > :first-child { margin-left: 0px; } .framer-c3y21 .framer-1bpc921 > :last-child, .framer-c3y21 .framer-4lf01c > :last-child, .framer-c3y21 .framer-19ddo32 > :last-child, .framer-c3y21 .framer-1s5si97 > :last-child, .framer-c3y21 .framer-1adp5n > :last-child, .framer-c3y21 .framer-pcrqc8 > :last-child { margin-right: 0px; } }\",\"@media (min-width: 1024px) and (max-width: 1511px) { .framer-c3y21.framer-72rtr7 { width: 1024px; } .framer-c3y21 .framer-19ddo32 { justify-content: flex-start; right: 0px; width: unset; } .framer-c3y21 .framer-3gqmx1-container { width: 17%; }}\",\"@media (min-width: 810px) and (max-width: 1023px) { .framer-c3y21.framer-72rtr7 { width: 810px; } .framer-c3y21 .framer-vsygjy { order: 3; } .framer-c3y21 .framer-1wg5vtj-container { order: 5; } .framer-c3y21 .framer-107y277 { order: 2; } .framer-c3y21 .framer-pcrqc8 { order: 1; }}\",\"@media (max-width: 809px) { .framer-c3y21.framer-72rtr7 { gap: 0px; width: 390px; } .framer-c3y21 .framer-yeesra { order: 0; } .framer-c3y21 .framer-vsygjy { order: 2; } .framer-c3y21 .framer-1wg5vtj-container { order: 3; } .framer-c3y21 .framer-9vwlbt { order: 1; } .framer-c3y21 .framer-1adp5n { min-height: unset; overflow: visible; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c3y21.framer-72rtr7 { gap: 0px; } .framer-c3y21.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c3y21.framer-72rtr7 > :first-child { margin-top: 0px; } .framer-c3y21.framer-72rtr7 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xvWdACxjI\":{\"layout\":[\"fixed\",\"auto\"]},\"yHM0KTeN6\":{\"layout\":[\"fixed\",\"auto\"]},\"ZjPM17FMm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-c3y21\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:800,width:1512};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[]},...MenuForsideFonts,...SidemenuFonts,...VideoFonts,...TabletMobileMenuFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1512\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xvWdACxjI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yHM0KTeN6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZjPM17FMm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"800\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ProductsFonts", "getFonts", "k4U6XIUwA_default", "JournalFonts", "J3gl0XM0G_default", "AboutFonts", "nBkNCzM3g_default", "ContactFonts", "AyrAGLRHQ_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "fROJXG4gl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap96501c", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "ComponentViewportProvider", "k4U6XIUwA_default", "J3gl0XM0G_default", "nBkNCzM3g_default", "AyrAGLRHQ_default", "css", "FramernamtoJPs_", "withCSS", "namtoJPs_default", "addPropertyControls", "ControlType", "addFonts", "ProductsFonts", "JournalFonts", "AboutFonts", "ContactFonts", "MotionDivWith100svhyeesra", "withCodeBoundaryForOverrides", "motion", "with100svh", "MenuForsideFonts", "getFonts", "namtoJPs_default", "SidemenuFonts", "fBpcQIMki_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "VideoFonts", "Video", "TabletMobileMenuFonts", "dORFCxCug_default", "MotionDivWith100svh1adp5n", "MotionDivWith100svh72rtr7", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "ComponentViewportProvider", "Container", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
