{"version":3,"file":"qMAKQbQ5d.W7mnLGeA.mjs","names":["useState","useRef","addPropertyOverrides","Image","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","className","css","addPropertyOverrides","ServicePreview","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableEnumMap","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","className","css","ServiceCarousel","useRef","className"],"sources":["https:/framerusercontent.com/modules/mNKpOpVRUlidVUxYt7kK/7qEdJ3XTQmTrKpZx5HRU/Carousel.js","https:/framerusercontent.com/modules/Uz18tRcKuyXB0kOFWTqd/Ml6oZNdOgrEZVuiUk3ui/EDMpwXhD4.js","https:/framerusercontent.com/modules/QgiEQ8Te1M7shzBbdHn7/UiG0vsVoZNY0qLxq0mJi/cUSRdtEE1.js","https:/framerusercontent.com/modules/B6hKA9tbjBOiGvCXweDR/WehretDIESvor47y88yu/qMAKQbQ5d.js"],"sourcesContent":["// export default Carousel\n\"use client\";import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion,useAnimation}from\"framer-motion\";import{useState,useEffect,useRef}from\"react\";function Carousel({instances=[],instanceWidth=300,gap=24,backgroundColor=\"#FFFFFF\",prevButtonImage=\"\",nextButtonImage=\"\",navigationSize=24,device=\"desktop\"}){const[position,setPosition]=useState(0);const[buttonDisabled,setButtonDisabled]=useState(false);const controls=useAnimation();const minPosition=-((instances.length-1)*(instanceWidth+gap));// Track if we're currently dragging\nconst isDragging=useRef(false);// Animation configuration\nconst animationConfig={type:\"spring\",stiffness:300,damping:30,mass:.8,duration:.5};// Update animation controls when position changes\nuseEffect(()=>{if(!isDragging.current){controls.start({x:position,transition:animationConfig});}},[position,controls]);// Safety timeout to ensure buttons are re-enabled\nuseEffect(()=>{if(buttonDisabled){const timer=setTimeout(()=>{setButtonDisabled(false);},600)// Slightly longer than animation duration\n;return()=>clearTimeout(timer);}},[buttonDisabled]);const moveLeft=()=>{if(buttonDisabled||position===0)return;const newPosition=Math.min(position+instanceWidth+gap,0);setPosition(newPosition);// Disable buttons during animation\nsetButtonDisabled(true);};const moveRight=()=>{if(buttonDisabled||position===minPosition)return;const newPosition=Math.max(position-(instanceWidth+gap),minPosition);setPosition(newPosition);// Disable buttons during animation\nsetButtonDisabled(true);};const handleDragEnd=(_,info)=>{// Set dragging state to false\nisDragging.current=false;const{offset,velocity}=info;// Calculate new position based on current position and drag offset\nconst newX=position+offset.x;// Calculate the closest snap point\nconst snapPoint=Math.round(newX/(instanceWidth+gap))*(instanceWidth+gap);// Apply constraints to the snap point\nlet newPosition=Math.min(Math.max(snapPoint,minPosition),0);// If dragged with high velocity, move an additional item in that direction\nif(Math.abs(velocity.x)>300){if(velocity.x>0&&newPosition<0){// Moving right (previous)\nnewPosition=Math.min(newPosition+instanceWidth+gap,0);}else if(velocity.x<0&&newPosition>minPosition){// Moving left (next)\nnewPosition=Math.max(newPosition-(instanceWidth+gap),minPosition);}}// Update position state\nsetPosition(newPosition);// Disable buttons during animation\nsetButtonDisabled(true);};// Navigation position based on device type\nconst getNavigationStyles=()=>{switch(device){case\"mobile\":return{position:\"absolute\",display:\"flex\",gap:\"10px\",top:\"-70px\",right:\"20px\",zIndex:1};case\"tablet\":return{position:\"absolute\",display:\"flex\",gap:\"15px\",top:\"-70px\",right:\"20px\",zIndex:1};case\"desktop\":default:return{position:\"absolute\",display:\"flex\",gap:\"10px\",top:\"-70px\",left:\"750px\",zIndex:1};}};const navigationStyles=getNavigationStyles();// Prevent text selection\nconst noSelectStyle={WebkitUserSelect:\"none\",MozUserSelect:\"none\",msUserSelect:\"none\",userSelect:\"none\"};return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",backgroundColor,...noSelectStyle},children:[/*#__PURE__*/_jsx(\"div\",{style:{overflow:\"visible\",marginBottom:\"20px\"},children:/*#__PURE__*/_jsx(motion.div,{drag:\"x\",dragConstraints:{left:minPosition,right:0},dragElastic:0,dragMomentum:false,onDragStart:()=>{isDragging.current=true;setButtonDisabled(true);},onDragEnd:handleDragEnd,animate:controls,initial:{x:0},children:/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",gap:`${gap}px`,cursor:\"grab\",touchAction:\"pan-y\"},children:instances.map((instance,index)=>/*#__PURE__*/_jsx(motion.div,{style:{flexShrink:0,width:`${instanceWidth}px`},whileHover:{scale:1.02},transition:{duration:.2},children:instance},index))})})}),/*#__PURE__*/_jsxs(\"div\",{style:{...navigationStyles,...noSelectStyle},children:[/*#__PURE__*/_jsx(motion.button,{onClick:moveLeft,disabled:position===0,\"aria-label\":\"Previous items\",whileTap:{scale:.9},whileHover:position!==0?{scale:1.1}:undefined,transition:{duration:.2},style:{width:`${navigationSize}px`,height:`${navigationSize}px`,backgroundColor:\"transparent\",border:\"none\",cursor:position===0?\"default\":\"pointer\",opacity:position===0?.5:1,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",padding:0,...noSelectStyle,pointerEvents:buttonDisabled?\"none\":\"auto\"},onMouseDown:e=>e.preventDefault(),children:prevButtonImage?/*#__PURE__*/_jsx(\"img\",{src:prevButtonImage||\"/placeholder.svg\",alt:\"Previous\",style:{width:\"100%\",height:\"100%\",objectFit:\"contain\",...noSelectStyle,pointerEvents:\"none\"},draggable:false}):/*#__PURE__*/_jsx(\"svg\",{width:navigationSize,height:navigationSize,viewBox:\"0 0 24 24\",fill:\"none\",stroke:\"currentColor\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",style:{...noSelectStyle,pointerEvents:\"none\"},children:/*#__PURE__*/_jsx(\"polyline\",{points:\"15 18 9 12 15 6\"})})}),/*#__PURE__*/_jsx(motion.button,{onClick:moveRight,disabled:position===minPosition,\"aria-label\":\"Next items\",whileTap:{scale:.9},whileHover:position!==minPosition?{scale:1.1}:undefined,transition:{duration:.2},style:{width:`${navigationSize}px`,height:`${navigationSize}px`,backgroundColor:\"transparent\",border:\"none\",cursor:position===minPosition?\"default\":\"pointer\",opacity:position===minPosition?.5:1,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",padding:0,...noSelectStyle,pointerEvents:buttonDisabled?\"none\":\"auto\"},onMouseDown:e=>e.preventDefault(),children:nextButtonImage?/*#__PURE__*/_jsx(\"img\",{src:nextButtonImage||\"/placeholder.svg\",alt:\"Next\",style:{width:\"100%\",height:\"100%\",objectFit:\"contain\",...noSelectStyle,pointerEvents:\"none\"},draggable:false}):/*#__PURE__*/_jsx(\"svg\",{width:navigationSize,height:navigationSize,viewBox:\"0 0 24 24\",fill:\"none\",stroke:\"currentColor\",strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",style:{...noSelectStyle,pointerEvents:\"none\"},children:/*#__PURE__*/_jsx(\"polyline\",{points:\"9 18 15 12 9 6\"})})})]})]});}// Add Framer property controls\naddPropertyControls(Carousel,{instances:{type:ControlType.Array,title:\"Instances\",propertyControl:{type:ControlType.ComponentInstance}},instanceWidth:{type:ControlType.Number,title:\"Instance Width\",defaultValue:300,min:100,max:1e3,step:10},gap:{type:ControlType.Number,title:\"Gap\",defaultValue:24,min:0,max:100,step:4},backgroundColor:{type:ControlType.Color,title:\"Background Color\"},prevButtonImage:{type:ControlType.Image,title:\"Previous Button Image\"},nextButtonImage:{type:ControlType.Image,title:\"Next Button Image\"},navigationSize:{type:ControlType.Number,title:\"Navigation Size\",defaultValue:24,min:16,max:64,step:1},device:{type:ControlType.Enum,title:\"Device\",options:[\"desktop\",\"tablet\",\"mobile\"],defaultValue:\"desktop\"}});export default Carousel;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map","// Generated by Framer (d65dc2b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{withLazyImage}from\"https://framerusercontent.com/modules/LiZhBfmF7RnuvJ6afFIH/VQ6itIbNRs3mKoqc8yYT/LazyLoading.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/FbZXu9nTKbHsrudMc2iG/EUS48mz8YqRnF3zriev2/Im3Zi1eYT.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/llOUx4qpAPHmTTJq8TU8/oDk4se5yXLcgJ9Et4tBi/su7_kZRFp.js\";const VideoFonts=getFonts(Video);const ImageWithLazyImage1aap5s9=withCodeBoundaryForOverrides(Image,{nodeId:\"TA0E0Yrjg\",override:withLazyImage,scopeId:\"EDMpwXhD4\"});const enabledGestures={cejlCZSi1:{hover:true},HCM6XtHBB:{hover:true},JZLqvC7YZ:{hover:true},KLo6mwfaW:{hover:true},L1FESdJAd:{hover:true},nR4zItetJ:{hover:true},PdjRg6kUf:{hover:true},TA0E0Yrjg:{hover:true},XXGrEi3Tx:{hover:true},z_SSfgY4D:{hover:true}};const cycleOrder=[\"TA0E0Yrjg\",\"VycH60hDw\",\"XXGrEi3Tx\",\"vtMMFTHkg\",\"PdjRg6kUf\",\"B0Z67_TgM\",\"KLo6mwfaW\",\"F7HHEDImP\",\"nR4zItetJ\",\"a0JaqDSSt\",\"z_SSfgY4D\",\"mMsaBC8Xk\",\"cejlCZSi1\",\"O4h1XUiUx\",\"JZLqvC7YZ\",\"rYtaRWk3l\",\"L1FESdJAd\",\"kv_xvOQ3a\",\"HCM6XtHBB\",\"HAEtu5BYc\"];const serializationHash=\"framer-g1OSR\";const variantClassNames={a0JaqDSSt:\"framer-v-1murbx8\",B0Z67_TgM:\"framer-v-p9wyrm\",cejlCZSi1:\"framer-v-1spp21j\",F7HHEDImP:\"framer-v-f47qa9\",HAEtu5BYc:\"framer-v-13qsxcc\",HCM6XtHBB:\"framer-v-109am6p\",JZLqvC7YZ:\"framer-v-ez496d\",KLo6mwfaW:\"framer-v-1g56ee4\",kv_xvOQ3a:\"framer-v-iz8tov\",L1FESdJAd:\"framer-v-1yi1o70\",mMsaBC8Xk:\"framer-v-1x1edhk\",nR4zItetJ:\"framer-v-1jvir7a\",O4h1XUiUx:\"framer-v-vl9hpv\",PdjRg6kUf:\"framer-v-j9xc2\",rYtaRWk3l:\"framer-v-1lf66ol\",TA0E0Yrjg:\"framer-v-1aap5s9\",vtMMFTHkg:\"framer-v-4scg48\",VycH60hDw:\"framer-v-1veuf28\",XXGrEi3Tx:\"framer-v-14e17vv\",z_SSfgY4D:\"framer-v-dgus17\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Digitale installasjoner\":\"L1FESdJAd\",\"MOBIL AI\":\"vtMMFTHkg\",\"MOBIL Animasjon\":\"F7HHEDImP\",\"MOBIL Apputvikling\":\"O4h1XUiUx\",\"MOBIL Digitale installasjoner\":\"kv_xvOQ3a\",\"MOBIL Filmproduksjon\":\"VycH60hDw\",\"MOBIL Gamification\":\"rYtaRWk3l\",\"MOBIL Holdningskampanje\":\"mMsaBC8Xk\",\"MOBIL Kode\":\"B0Z67_TgM\",\"MOBIL Reklame\":\"HAEtu5BYc\",\"MOBIL VR & AR\":\"a0JaqDSSt\",\"VR & AR\":\"nR4zItetJ\",AI:\"XXGrEi3Tx\",Animasjon:\"KLo6mwfaW\",Apputvikling:\"cejlCZSi1\",Filmproduksjon:\"TA0E0Yrjg\",Gamification:\"JZLqvC7YZ\",Holdningskampanje:\"z_SSfgY4D\",Kode:\"PdjRg6kUf\",Reklame:\"HCM6XtHBB\"};const getProps=({height,hover,id,width,...props})=>{return{...props,qnPrZFlBf:hover??props.qnPrZFlBf,variant:humanReadableVariantMap[props.variant]??props.variant??\"TA0E0Yrjg\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,qnPrZFlBf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TA0E0Yrjg\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterbq6s5l=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(qnPrZFlBf){const res=await qnPrZFlBf(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"L1FESdJAd-hover\",\"nR4zItetJ-hover\",\"TA0E0Yrjg-hover\",\"cejlCZSi1-hover\",\"JZLqvC7YZ-hover\",\"XXGrEi3Tx-hover\",\"KLo6mwfaW-hover\",\"PdjRg6kUf-hover\",\"HCM6XtHBB-hover\",\"z_SSfgY4D-hover\"].includes(gestureVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OeY1eStl0:\"reklamefilm\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"UCdw6Yglw\"}},webPageId:\"MJ5EfMApc\"},motionChild:true,nodeId:\"TA0E0Yrjg\",openInNewTab:false,scopeId:\"EDMpwXhD4\",...addPropertyOverrides({a0JaqDSSt:{href:{pathVariables:{OeY1eStl0:\"vr-og-360-video\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"EBDkJR8xa\"}},webPageId:\"MJ5EfMApc\"}},B0Z67_TgM:{href:{webPageId:\"vMxFbh72Z\"}},cejlCZSi1:{href:{pathVariables:{OeY1eStl0:\"apputvikling\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"d6rrvEUmi\"}},webPageId:\"MJ5EfMApc\"}},F7HHEDImP:{href:{pathVariables:{OeY1eStl0:\"animasjon\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"GVduNiFZ6\"}},webPageId:\"MJ5EfMApc\"}},JZLqvC7YZ:{href:{pathVariables:{OeY1eStl0:\"interaktive-opplevelser\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"ixvLKBdMF\"}},webPageId:\"MJ5EfMApc\"}},KLo6mwfaW:{href:{pathVariables:{OeY1eStl0:\"animasjon\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"GVduNiFZ6\"}},webPageId:\"MJ5EfMApc\"}},kv_xvOQ3a:{href:{pathVariables:{OeY1eStl0:\"interaktive-opplevelser\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"ixvLKBdMF\"}},webPageId:\"MJ5EfMApc\"}},L1FESdJAd:{href:{pathVariables:{OeY1eStl0:\"interaktive-opplevelser\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"ixvLKBdMF\"}},webPageId:\"MJ5EfMApc\"}},mMsaBC8Xk:{href:{pathVariables:{OeY1eStl0:\"holdningskampanje\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"Cgn1raCs5\"}},webPageId:\"MJ5EfMApc\"}},nR4zItetJ:{href:{pathVariables:{OeY1eStl0:\"vr-og-360-video\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"EBDkJR8xa\"}},webPageId:\"MJ5EfMApc\"}},O4h1XUiUx:{href:{pathVariables:{OeY1eStl0:\"apputvikling\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"d6rrvEUmi\"}},webPageId:\"MJ5EfMApc\"}},PdjRg6kUf:{href:{webPageId:\"vMxFbh72Z\"}},rYtaRWk3l:{href:{pathVariables:{OeY1eStl0:\"interaktive-opplevelser\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"ixvLKBdMF\"}},webPageId:\"MJ5EfMApc\"}},vtMMFTHkg:{href:{webPageId:\"VqCChjfhW\"}},XXGrEi3Tx:{href:{webPageId:\"VqCChjfhW\"}},z_SSfgY4D:{href:{pathVariables:{OeY1eStl0:\"holdningskampanje\"},unresolvedPathSlugs:{OeY1eStl0:{collectionId:\"p5wp1NJhb\",collectionItemId:\"Cgn1raCs5\"}},webPageId:\"MJ5EfMApc\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(ImageWithLazyImage1aap5s9,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"Ai generert filmrull\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1024,pixelWidth:1024,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2R76WPoQLZWlEt8CP2VvPgK5g.png\",srcSet:\"https://framerusercontent.com/images/2R76WPoQLZWlEt8CP2VvPgK5g.png?scale-down-to=512 512w,https://framerusercontent.com/images/2R76WPoQLZWlEt8CP2VvPgK5g.png 1024w\"},className:`${cx(scopingClassNames,\"framer-1aap5s9\",className,classNames)} framer-1ahkadr`,\"data-framer-name\":\"Filmproduksjon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TA0E0Yrjg\",onMouseEnter:onMouseEnterbq6s5l,ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"cejlCZSi1-hover\":{\"data-framer-name\":undefined},\"HCM6XtHBB-hover\":{\"data-framer-name\":undefined},\"JZLqvC7YZ-hover\":{\"data-framer-name\":undefined},\"KLo6mwfaW-hover\":{\"data-framer-name\":undefined},\"L1FESdJAd-hover\":{\"data-framer-name\":undefined},\"nR4zItetJ-hover\":{\"data-framer-name\":undefined},\"PdjRg6kUf-hover\":{\"data-framer-name\":undefined},\"TA0E0Yrjg-hover\":{\"data-framer-name\":undefined},\"XXGrEi3Tx-hover\":{\"data-framer-name\":undefined},\"z_SSfgY4D-hover\":{\"data-framer-name\":undefined},a0JaqDSSt:{\"data-framer-name\":\"MOBIL VR & AR\",background:{alt:\"Ai generert Vr-briller p\\xe5 person\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:701,pixelWidth:697,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QQ6KgF744xeapv2UtNFe3yRJA.png\",srcSet:\"https://framerusercontent.com/images/QQ6KgF744xeapv2UtNFe3yRJA.png 697w\"}},B0Z67_TgM:{\"data-framer-name\":\"MOBIL Kode\",background:{alt:\"Ai generert knapper\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1024,pixelWidth:1024,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/854CkAyQoKUZ5fe3itiLWXAvlso.png\",srcSet:\"https://framerusercontent.com/images/854CkAyQoKUZ5fe3itiLWXAvlso.png?scale-down-to=512 512w,https://framerusercontent.com/images/854CkAyQoKUZ5fe3itiLWXAvlso.png 1024w\"}},cejlCZSi1:{\"data-framer-name\":\"Apputvikling\",background:{alt:\"Ai generert mobil i sl\\xf8r\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:2048,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Urp4ILQxiViVWWZK9TgbtRVCg.png\",srcSet:\"https://framerusercontent.com/images/Urp4ILQxiViVWWZK9TgbtRVCg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Urp4ILQxiViVWWZK9TgbtRVCg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Urp4ILQxiViVWWZK9TgbtRVCg.png 2048w\"}},F7HHEDImP:{\"data-framer-name\":\"MOBIL Animasjon\",background:{alt:\"Ai generert animasjonsfigur\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1024,pixelWidth:1024,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ROtX0uSNbMW6AF5Br75ewsF2lTo.png\",srcSet:\"https://framerusercontent.com/images/ROtX0uSNbMW6AF5Br75ewsF2lTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ROtX0uSNbMW6AF5Br75ewsF2lTo.png 1024w\"}},HAEtu5BYc:{\"data-framer-name\":\"MOBIL Reklame\",background:{alt:\"Ai generert kameralinse\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1024,pixelWidth:1024,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/iMT88m8CNFmbS3JJtdSR66oSbw.png\",srcSet:\"https://framerusercontent.com/images/iMT88m8CNFmbS3JJtdSR66oSbw.png?scale-down-to=512 512w,https://framerusercontent.com/images/iMT88m8CNFmbS3JJtdSR66oSbw.png 1024w\"}},HCM6XtHBB:{\"data-framer-name\":\"Reklame\",background:{alt:\"Ai generert kameralinse\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1024,pixelWidth:1024,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/iMT88m8CNFmbS3JJtdSR66oSbw.png\",srcSet:\"https://framerusercontent.com/images/iMT88m8CNFmbS3JJtdSR66oSbw.png?scale-down-to=512 512w,https://framerusercontent.com/images/iMT88m8CNFmbS3JJtdSR66oSbw.png 1024w\"}},JZLqvC7YZ:{\"data-framer-name\":\"Gamification\",background:{alt:\"Ai generert spillkontroller\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:2048,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/euOwxuxdrmGpTuFDOVQBXBpT20s.png\",srcSet:\"https://framerusercontent.com/images/euOwxuxdrmGpTuFDOVQBXBpT20s.png?scale-down-to=512 512w,https://framerusercontent.com/images/euOwxuxdrmGpTuFDOVQBXBpT20s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/euOwxuxdrmGpTuFDOVQBXBpT20s.png 2048w\"}},KLo6mwfaW:{\"data-framer-name\":\"Animasjon\",background:{alt:\"Ai generert animasjonsfigur\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1024,pixelWidth:1024,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ROtX0uSNbMW6AF5Br75ewsF2lTo.png\",srcSet:\"https://framerusercontent.com/images/ROtX0uSNbMW6AF5Br75ewsF2lTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ROtX0uSNbMW6AF5Br75ewsF2lTo.png 1024w\"}},kv_xvOQ3a:{\"data-framer-name\":\"MOBIL Digitale installasjoner\",background:{alt:\"Ai generert stor skjerm i rom med mennesker\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:2048,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/1UYQKNENqvDlduZSRrZQsMO6pM.png\",srcSet:\"https://framerusercontent.com/images/1UYQKNENqvDlduZSRrZQsMO6pM.png?scale-down-to=512 512w,https://framerusercontent.com/images/1UYQKNENqvDlduZSRrZQsMO6pM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1UYQKNENqvDlduZSRrZQsMO6pM.png 2048w\"}},L1FESdJAd:{\"data-framer-name\":\"Digitale installasjoner\",background:{alt:\"Ai generert stor skjerm i rom med mennesker\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:2048,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/1UYQKNENqvDlduZSRrZQsMO6pM.png\",srcSet:\"https://framerusercontent.com/images/1UYQKNENqvDlduZSRrZQsMO6pM.png?scale-down-to=512 512w,https://framerusercontent.com/images/1UYQKNENqvDlduZSRrZQsMO6pM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1UYQKNENqvDlduZSRrZQsMO6pM.png 2048w\"}},mMsaBC8Xk:{\"data-framer-name\":\"MOBIL Holdningskampanje\",background:{alt:\"Ai generert filmrull\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:2048,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/dZ9RVPZprDdp2YOrWc6qLWzruzE.png\",srcSet:\"https://framerusercontent.com/images/dZ9RVPZprDdp2YOrWc6qLWzruzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/dZ9RVPZprDdp2YOrWc6qLWzruzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dZ9RVPZprDdp2YOrWc6qLWzruzE.png 2048w\"}},nR4zItetJ:{\"data-framer-name\":\"VR & AR\",background:{alt:\"Ai generert Vr-briller p\\xe5 person\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:701,pixelWidth:697,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QQ6KgF744xeapv2UtNFe3yRJA.png\",srcSet:\"https://framerusercontent.com/images/QQ6KgF744xeapv2UtNFe3yRJA.png 697w\"}},O4h1XUiUx:{\"data-framer-name\":\"MOBIL Apputvikling\",background:{alt:\"Ai generert mobil i sl\\xf8r\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:2048,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Urp4ILQxiViVWWZK9TgbtRVCg.png\",srcSet:\"https://framerusercontent.com/images/Urp4ILQxiViVWWZK9TgbtRVCg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Urp4ILQxiViVWWZK9TgbtRVCg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Urp4ILQxiViVWWZK9TgbtRVCg.png 2048w\"}},PdjRg6kUf:{\"data-framer-name\":\"Kode\",background:{alt:\"Ai generert knapper\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1024,pixelWidth:1024,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/854CkAyQoKUZ5fe3itiLWXAvlso.png\",srcSet:\"https://framerusercontent.com/images/854CkAyQoKUZ5fe3itiLWXAvlso.png?scale-down-to=512 512w,https://framerusercontent.com/images/854CkAyQoKUZ5fe3itiLWXAvlso.png 1024w\"}},rYtaRWk3l:{\"data-framer-name\":\"MOBIL Gamification\",background:{alt:\"Ai generert spillkontroller\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:2048,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/euOwxuxdrmGpTuFDOVQBXBpT20s.png\",srcSet:\"https://framerusercontent.com/images/euOwxuxdrmGpTuFDOVQBXBpT20s.png?scale-down-to=512 512w,https://framerusercontent.com/images/euOwxuxdrmGpTuFDOVQBXBpT20s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/euOwxuxdrmGpTuFDOVQBXBpT20s.png 2048w\"}},vtMMFTHkg:{\"data-framer-name\":\"MOBIL AI\",background:{alt:\"Ai generert blob\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1024,pixelWidth:1024,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/K6rBXeXVbmERzy5h5Dg9xiDQxY.png\",srcSet:\"https://framerusercontent.com/images/K6rBXeXVbmERzy5h5Dg9xiDQxY.png?scale-down-to=512 512w,https://framerusercontent.com/images/K6rBXeXVbmERzy5h5Dg9xiDQxY.png 1024w\"}},VycH60hDw:{\"data-framer-name\":\"MOBIL Filmproduksjon\"},XXGrEi3Tx:{\"data-framer-name\":\"AI\",background:{alt:\"Ai generert blob\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1024,pixelWidth:1024,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/K6rBXeXVbmERzy5h5Dg9xiDQxY.png\",srcSet:\"https://framerusercontent.com/images/K6rBXeXVbmERzy5h5Dg9xiDQxY.png?scale-down-to=512 512w,https://framerusercontent.com/images/K6rBXeXVbmERzy5h5Dg9xiDQxY.png 1024w\"}},z_SSfgY4D:{\"data-framer-name\":\"Holdningskampanje\",background:{alt:\"Ai generert filmrull\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:2048,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/dZ9RVPZprDdp2YOrWc6qLWzruzE.png\",srcSet:\"https://framerusercontent.com/images/dZ9RVPZprDdp2YOrWc6qLWzruzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/dZ9RVPZprDdp2YOrWc6qLWzruzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dZ9RVPZprDdp2YOrWc6qLWzruzE.png 2048w\"}}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tak6u2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Od5IsOUIH-container\",nodeId:\"Od5IsOUIH\",rendersWithMotion:true,scopeId:\"EDMpwXhD4\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Od5IsOUIH\",isMixedBorderRadius:false,layoutId:\"Od5IsOUIH\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/36RFU4k1XBp6OsPNoao6VbtVck.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%\",...addPropertyOverrides({\"cejlCZSi1-hover\":{srcFile:\"https://framerusercontent.com/assets/6FuMnQbduzonLBJBdYESaiPnuY.mp4\"},\"HCM6XtHBB-hover\":{srcFile:\"https://framerusercontent.com/assets/Pek5BRHOaHaLfRqZvM49PZPCG0.mp4\"},\"JZLqvC7YZ-hover\":{srcFile:\"https://framerusercontent.com/assets/z4QdEZY2fzcFcGkeS6LR3YAGFeU.mp4\"},\"KLo6mwfaW-hover\":{srcFile:\"https://framerusercontent.com/assets/SEOU5uQqHtXDWA6rCFA15Jxv6c.mp4\"},\"L1FESdJAd-hover\":{srcFile:\"https://framerusercontent.com/assets/30JGEkZP6eqU92RgxwTgcwW01Bg.mp4\"},\"nR4zItetJ-hover\":{srcFile:\"https://framerusercontent.com/assets/WIUeK9c0ahXlWcMd5xlkPoeh4.mp4\"},\"PdjRg6kUf-hover\":{srcFile:\"https://framerusercontent.com/assets/jnypPWsNWt74RCHX1tGYBhTiiew.mp4\"},\"XXGrEi3Tx-hover\":{srcFile:\"https://framerusercontent.com/assets/dvB4EqodoLUYTYGujDGJpFKwnzA.mp4\"},\"z_SSfgY4D-hover\":{srcFile:\"https://framerusercontent.com/assets/McgwftH5uRMG505zHimmIrboIM.mp4\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-23dhoo\",layoutDependency:layoutDependency,layoutId:\"zxWA5xrDh\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.28) 100%)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ji84jv\",layoutDependency:layoutDependency,layoutId:\"GQXaBxbLO\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nbgdzi\",layoutDependency:layoutDependency,layoutId:\"Cz4fJ7JY7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Tjenester\"})}),className:\"framer-1bfzt3n\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zu1K1FmFb\",style:{\"--extracted-r6o4lv\":\"var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m9te8m\",layoutDependency:layoutDependency,layoutId:\"VudC0sDQ8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aiorpn\",layoutDependency:layoutDependency,layoutId:\"CLMZLwHnV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Filmproduksjon\"})}),className:\"framer-bdf9et\",\"data-framer-name\":\"Podcast\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wKz58ArSk\",style:{\"--extracted-a0htzi\":\"var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a0JaqDSSt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"VR & AR\"})})},B0Z67_TgM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Kode\"})})},cejlCZSi1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Apputvikling\"})})},F7HHEDImP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Animasjon\"})})},HAEtu5BYc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Reklame\"})})},HCM6XtHBB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Reklamefilm\"})})},JZLqvC7YZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Gamification\"})})},KLo6mwfaW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Animasjon\"})})},kv_xvOQ3a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Digitale installasjoner\"})})},L1FESdJAd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Digitale installasjoner\"})})},mMsaBC8Xk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Holdningskampanje\"})})},nR4zItetJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"VR & AR\"})})},O4h1XUiUx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Apputvikling\"})})},PdjRg6kUf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Kode\"})})},rYtaRWk3l:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Gamification\"})})},vtMMFTHkg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"AI-reklame\"})})},XXGrEi3Tx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"AI-reklame\"})})},z_SSfgY4D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1wo8yb8\",\"data-styles-preset\":\"su7_kZRFp\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Holdningskampanje\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11t020v\",layoutDependency:layoutDependency,layoutId:\"TkHmPefVZ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Film som treffer m\\xe5lgruppen.\"})}),className:\"framer-12lhh5x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l3en6P_Su\",style:{\"--extracted-r6o4lv\":\"var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a0JaqDSSt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"V\\xe6r der det skjer, ikke bare se p\\xe5.\"})})},B0Z67_TgM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Digitale opplevelser som engasjerer.\"})})},cejlCZSi1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Smarte l\\xf8sninger som fungerer.\"})})},F7HHEDImP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Kreative ideer som f\\xe5r liv.\"})})},HAEtu5BYc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Skiller seg ut og treffer publikum.\"})})},HCM6XtHBB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Skreddersydd film for m\\xe5lgruppen.\"})})},JZLqvC7YZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Kreative opplevelser.\"})})},KLo6mwfaW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Visuell formidling av budskapet.\"})})},kv_xvOQ3a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"N\\xe5r teknologi og kreativitet m\\xf8tes.\"})})},L1FESdJAd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"N\\xe5r teknologi og kreativitet m\\xf8tes.\"})})},mMsaBC8Xk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Budskap som skaper endring. \"})})},nR4zItetJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Interaktivt innhold som engasjerer.\"})})},O4h1XUiUx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Smarte l\\xf8sninger som fungerer.\"})})},PdjRg6kUf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Digitale opplevelser som engasjerer.\"})})},rYtaRWk3l:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Kreative opplevelser.\"})})},vtMMFTHkg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Kunstig intelligens i reklame\"})})},XXGrEi3Tx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Kunstig intelligens i reklame\"})})},z_SSfgY4D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cgvpt\",\"data-styles-preset\":\"Im3Zi1eYT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc4f85e8-a7a7-4425-96f4-847633c55203, rgb(245, 245, 245)))\"},children:\"Effektiv kommunikasjon.\"})})}},baseVariant,gestureVariant)})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g1OSR.framer-1ahkadr, .framer-g1OSR .framer-1ahkadr { display: block; }\",\".framer-g1OSR.framer-1aap5s9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 269px; will-change: var(--framer-will-change-override, transform); }\",\".framer-g1OSR .framer-1tak6u2-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-g1OSR .framer-23dhoo { bottom: 0px; flex: none; height: 235px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-g1OSR .framer-1ji84jv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 1px; z-index: 1; }\",\".framer-g1OSR .framer-1nbgdzi, .framer-g1OSR .framer-11t020v { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-g1OSR .framer-1bfzt3n, .framer-g1OSR .framer-12lhh5x { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-g1OSR .framer-m9te8m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1OSR .framer-1aiorpn { 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: flex-end; padding: 0px; position: relative; width: 100%; }\",\".framer-g1OSR .framer-bdf9et { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1OSR.framer-v-1veuf28.framer-1aap5s9, .framer-g1OSR.framer-v-4scg48.framer-1aap5s9, .framer-g1OSR.framer-v-p9wyrm.framer-1aap5s9, .framer-g1OSR.framer-v-f47qa9.framer-1aap5s9, .framer-g1OSR.framer-v-1murbx8.framer-1aap5s9, .framer-g1OSR.framer-v-1x1edhk.framer-1aap5s9, .framer-g1OSR.framer-v-vl9hpv.framer-1aap5s9, .framer-g1OSR.framer-v-1lf66ol.framer-1aap5s9, .framer-g1OSR.framer-v-iz8tov.framer-1aap5s9, .framer-g1OSR.framer-v-13qsxcc.framer-1aap5s9 { cursor: unset; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 269\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"VycH60hDw\":{\"layout\":[\"fixed\",\"fixed\"]},\"XXGrEi3Tx\":{\"layout\":[\"fixed\",\"fixed\"]},\"vtMMFTHkg\":{\"layout\":[\"fixed\",\"fixed\"]},\"PdjRg6kUf\":{\"layout\":[\"fixed\",\"fixed\"]},\"B0Z67_TgM\":{\"layout\":[\"fixed\",\"fixed\"]},\"KLo6mwfaW\":{\"layout\":[\"fixed\",\"fixed\"]},\"F7HHEDImP\":{\"layout\":[\"fixed\",\"fixed\"]},\"nR4zItetJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"a0JaqDSSt\":{\"layout\":[\"fixed\",\"fixed\"]},\"z_SSfgY4D\":{\"layout\":[\"fixed\",\"fixed\"]},\"mMsaBC8Xk\":{\"layout\":[\"fixed\",\"fixed\"]},\"cejlCZSi1\":{\"layout\":[\"fixed\",\"fixed\"]},\"O4h1XUiUx\":{\"layout\":[\"fixed\",\"fixed\"]},\"JZLqvC7YZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"rYtaRWk3l\":{\"layout\":[\"fixed\",\"fixed\"]},\"L1FESdJAd\":{\"layout\":[\"fixed\",\"fixed\"]},\"kv_xvOQ3a\":{\"layout\":[\"fixed\",\"fixed\"]},\"HCM6XtHBB\":{\"layout\":[\"fixed\",\"fixed\"]},\"HAEtu5BYc\":{\"layout\":[\"fixed\",\"fixed\"]},\"JVETh4Vz3\":{\"layout\":[\"fixed\",\"fixed\"]},\"DVC5dTk3P\":{\"layout\":[\"fixed\",\"fixed\"]},\"cMWkp96O_\":{\"layout\":[\"fixed\",\"fixed\"]},\"MiNpXVq55\":{\"layout\":[\"fixed\",\"fixed\"]},\"pZGO6HkDG\":{\"layout\":[\"fixed\",\"fixed\"]},\"wgeKCD8Ol\":{\"layout\":[\"fixed\",\"fixed\"]},\"upNMM5JhF\":{\"layout\":[\"fixed\",\"fixed\"]},\"h9bg12AQb\":{\"layout\":[\"fixed\",\"fixed\"]},\"N7WBO0RpO\":{\"layout\":[\"fixed\",\"fixed\"]},\"NJ138SfFT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"qnPrZFlBf\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEDMpwXhD4=withCSS(Component,css,\"framer-g1OSR\");export default FramerEDMpwXhD4;FramerEDMpwXhD4.displayName=\"Service-preview\";FramerEDMpwXhD4.defaultProps={height:400,width:269};addPropertyControls(FramerEDMpwXhD4,{variant:{options:[\"TA0E0Yrjg\",\"VycH60hDw\",\"XXGrEi3Tx\",\"vtMMFTHkg\",\"PdjRg6kUf\",\"B0Z67_TgM\",\"KLo6mwfaW\",\"F7HHEDImP\",\"nR4zItetJ\",\"a0JaqDSSt\",\"z_SSfgY4D\",\"mMsaBC8Xk\",\"cejlCZSi1\",\"O4h1XUiUx\",\"JZLqvC7YZ\",\"rYtaRWk3l\",\"L1FESdJAd\",\"kv_xvOQ3a\",\"HCM6XtHBB\",\"HAEtu5BYc\"],optionTitles:[\"Filmproduksjon\",\"MOBIL Filmproduksjon\",\"AI\",\"MOBIL AI\",\"Kode\",\"MOBIL Kode\",\"Animasjon\",\"MOBIL Animasjon\",\"VR & AR\",\"MOBIL VR & AR\",\"Holdningskampanje\",\"MOBIL Holdningskampanje\",\"Apputvikling\",\"MOBIL Apputvikling\",\"Gamification\",\"MOBIL Gamification\",\"Digitale installasjoner\",\"MOBIL Digitale installasjoner\",\"Reklame\",\"MOBIL Reklame\"],title:\"Variant\",type:ControlType.Enum},qnPrZFlBf:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerEDMpwXhD4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEDMpwXhD4\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"qnPrZFlBf\\\":\\\"hover\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VycH60hDw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XXGrEi3Tx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vtMMFTHkg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PdjRg6kUf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B0Z67_TgM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KLo6mwfaW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F7HHEDImP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nR4zItetJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a0JaqDSSt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z_SSfgY4D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mMsaBC8Xk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cejlCZSi1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O4h1XUiUx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JZLqvC7YZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rYtaRWk3l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"L1FESdJAd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kv_xvOQ3a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HCM6XtHBB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HAEtu5BYc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JVETh4Vz3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DVC5dTk3P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cMWkp96O_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MiNpXVq55\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pZGO6HkDG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wgeKCD8Ol\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"upNMM5JhF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h9bg12AQb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"N7WBO0RpO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NJ138SfFT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"400\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"269\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EDMpwXhD4.map","// Generated by Framer (a64543f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/mNKpOpVRUlidVUxYt7kK/7qEdJ3XTQmTrKpZx5HRU/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZQPb5KOqyzudzKYaThsw/YJOyiwPJzfalkz52ZGt8/fWCKuTuXj.js\";import ServicePreview from\"https://framerusercontent.com/modules/Uz18tRcKuyXB0kOFWTqd/Ml6oZNdOgrEZVuiUk3ui/EDMpwXhD4.js\";const ServicePreviewFonts=getFonts(ServicePreview);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"RrdW9psbi\",\"Jv6wH85cx\",\"ATwsFUD4V\"];const serializationHash=\"framer-NQWld\";const variantClassNames={ATwsFUD4V:\"framer-v-80w5a6\",Jv6wH85cx:\"framer-v-8cicsr\",RrdW9psbi:\"framer-v-ijw6p4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"l_KPgLLSz\":return true;default:return false;}};const toBoolean=value=>{return Boolean(value);};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"Mm0PXilnA\":return true;default:return false;}};const convertFromEnum2=(value,activeLocale)=>{switch(value){case\"jD4LAto1R\":return true;default:return false;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableEnumMap={Default:\"l_KPgLLSz\",Film:\"Mm0PXilnA\",Technology:\"jD4LAto1R\"};const humanReadableVariantMap={Desktop:\"RrdW9psbi\",Mobile:\"ATwsFUD4V\",Tablet:\"Jv6wH85cx\"};const getProps=({height,id,type,width,...props})=>{return{...props,nr3U77D8U:humanReadableEnumMap[type]??type??props.nr3U77D8U??\"l_KPgLLSz\",variant:humanReadableVariantMap[props.variant]??props.variant??\"RrdW9psbi\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,nr3U77D8U,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RrdW9psbi\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ATwsFUD4V\")return true;return false;};const visible=toBoolean(convertFromEnum(nr3U77D8U,activeLocale));const isDisplayed1=value=>{if(baseVariant===\"ATwsFUD4V\")return false;return value;};const visible1=toBoolean(convertFromEnum1(nr3U77D8U,activeLocale));const visible2=toBoolean(convertFromEnum2(nr3U77D8U,activeLocale));return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ijw6p4\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RrdW9psbi\",ref:refBinding,style:{...style},...addPropertyOverrides({ATwsFUD4V:{\"data-framer-name\":\"Mobile\"},Jv6wH85cx:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-114e05k\",\"data-styles-preset\":\"fWCKuTuXj\",style:{\"--framer-text-alignment\":\"left\"},children:\"Hva vi gj\\xf8r\"})}),className:\"framer-z5o5hl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ifN4yT1EG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-82p1a\",layoutDependency:layoutDependency,layoutId:\"aL4khuhCV\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-68swfk-container\",\"data-framer-name\":\"Carousel - default\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"iLeix0y9u-container\",name:\"Carousel - default\",nodeId:\"iLeix0y9u\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(Carousel,{backgroundColor:\"rgba(0, 153, 255, 0)\",device:\"mobile\",gap:16,height:\"100%\",id:\"iLeix0y9u\",instances:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-175znva-container\",\"data-framer-name\":\"Film mobil\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"q4BiHPUgn-container\",name:\"Film mobil\",nodeId:\"q4BiHPUgn\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"q4BiHPUgn\",layoutId:\"q4BiHPUgn\",name:\"Film mobil\",style:{height:\"100%\",width:\"100%\"},variant:\"VycH60hDw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d3mcp-container\",\"data-framer-name\":\"Ai mobil\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pO2uYEzrg-container\",name:\"Ai mobil\",nodeId:\"pO2uYEzrg\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"pO2uYEzrg\",layoutId:\"pO2uYEzrg\",name:\"Ai mobil\",style:{height:\"100%\",width:\"100%\"},variant:\"vtMMFTHkg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pa7m71-container\",\"data-framer-name\":\"Kode mobil\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"nLaG2HtxX-container\",name:\"Kode mobil\",nodeId:\"nLaG2HtxX\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"nLaG2HtxX\",layoutId:\"nLaG2HtxX\",name:\"Kode mobil\",style:{height:\"100%\",width:\"100%\"},variant:\"B0Z67_TgM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ghz76g-container\",\"data-framer-name\":\"Animasjon mobil\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"dcnP0xapn-container\",name:\"Animasjon mobil\",nodeId:\"dcnP0xapn\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"dcnP0xapn\",layoutId:\"dcnP0xapn\",name:\"Animasjon mobil\",style:{height:\"100%\",width:\"100%\"},variant:\"F7HHEDImP\",width:\"100%\"})})})],instanceWidth:300,layoutId:\"iLeix0y9u\",name:\"Carousel - default\",navigationSize:48,nextButtonImage:\"https://framerusercontent.com/images/L5SOJ2UNba6Bo4SI7BwX6rRcTaA.png\",prevButtonImage:\"https://framerusercontent.com/images/q23qw4WXEV4WcY1OXBNlwO7b5eA.png\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1(visible)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3wb9es-container\",\"data-framer-name\":\"Carousel - default\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"LoqLKYAui-container\",name:\"Carousel - default\",nodeId:\"LoqLKYAui\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(Carousel,{backgroundColor:\"rgba(0, 153, 255, 0)\",device:\"desktop\",gap:16,height:\"100%\",id:\"LoqLKYAui\",instances:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ukotdb-container\",\"data-framer-name\":\"Film\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"eurjiAOF5-container\",name:\"Film\",nodeId:\"eurjiAOF5\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"eurjiAOF5\",layoutId:\"eurjiAOF5\",name:\"Film\",style:{height:\"100%\",width:\"100%\"},variant:\"TA0E0Yrjg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lgbn4h-container\",\"data-framer-name\":\"Ai\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fqoHf9Dsp-container\",name:\"Ai\",nodeId:\"fqoHf9Dsp\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"fqoHf9Dsp\",layoutId:\"fqoHf9Dsp\",name:\"Ai\",style:{height:\"100%\",width:\"100%\"},variant:\"XXGrEi3Tx\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2tp3i8-container\",\"data-framer-name\":\"Kode \",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FG7dmw60w-container\",name:\"Kode \",nodeId:\"FG7dmw60w\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"FG7dmw60w\",layoutId:\"FG7dmw60w\",name:\"Kode \",style:{height:\"100%\",width:\"100%\"},variant:\"PdjRg6kUf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y7od3q-container\",\"data-framer-name\":\"Animasjon\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"k7FZzv8WU-container\",name:\"Animasjon\",nodeId:\"k7FZzv8WU\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"k7FZzv8WU\",layoutId:\"k7FZzv8WU\",name:\"Animasjon\",style:{height:\"100%\",width:\"100%\"},variant:\"KLo6mwfaW\",width:\"100%\"})})})],instanceWidth:300,layoutId:\"LoqLKYAui\",name:\"Carousel - default\",navigationSize:48,nextButtonImage:\"https://framerusercontent.com/images/L5SOJ2UNba6Bo4SI7BwX6rRcTaA.png\",prevButtonImage:\"https://framerusercontent.com/images/q23qw4WXEV4WcY1OXBNlwO7b5eA.png\",width:\"100%\",...addPropertyOverrides({Jv6wH85cx:{device:\"tablet\",style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n98xz8-container\",\"data-framer-name\":\"Carousel - Film\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"SqJ7kUNMh-container\",name:\"Carousel - Film\",nodeId:\"SqJ7kUNMh\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(Carousel,{backgroundColor:\"rgba(0, 153, 255, 0)\",device:\"desktop\",gap:16,height:\"100%\",id:\"SqJ7kUNMh\",instances:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m6qqlr-container\",\"data-framer-name\":\"Reklame\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rYqFYp2pt-container\",name:\"Reklame\",nodeId:\"rYqFYp2pt\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"rYqFYp2pt\",layoutId:\"rYqFYp2pt\",name:\"Reklame\",style:{height:\"100%\",width:\"100%\"},variant:\"HCM6XtHBB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y7od3q-container\",\"data-framer-name\":\"Animasjon\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"k7FZzv8WU-container\",name:\"Animasjon\",nodeId:\"k7FZzv8WU\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"k7FZzv8WU\",layoutId:\"k7FZzv8WU\",name:\"Animasjon\",style:{height:\"100%\",width:\"100%\"},variant:\"KLo6mwfaW\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1anlt3n-container\",\"data-framer-name\":\"Vr ar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZsyReVPTj-container\",name:\"Vr ar\",nodeId:\"ZsyReVPTj\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"ZsyReVPTj\",layoutId:\"ZsyReVPTj\",name:\"Vr ar\",style:{height:\"100%\",width:\"100%\"},variant:\"nR4zItetJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1urfe9t-container\",\"data-framer-name\":\"Holdningskampanje\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"T8aK57v6X-container\",name:\"Holdningskampanje\",nodeId:\"T8aK57v6X\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"T8aK57v6X\",layoutId:\"T8aK57v6X\",name:\"Holdningskampanje\",style:{height:\"100%\",width:\"100%\"},variant:\"z_SSfgY4D\",width:\"100%\"})})})],instanceWidth:300,layoutId:\"SqJ7kUNMh\",name:\"Carousel - Film\",navigationSize:48,nextButtonImage:\"https://framerusercontent.com/images/L5SOJ2UNba6Bo4SI7BwX6rRcTaA.png\",prevButtonImage:\"https://framerusercontent.com/images/q23qw4WXEV4WcY1OXBNlwO7b5eA.png\",width:\"100%\",...addPropertyOverrides({ATwsFUD4V:{device:\"mobile\",style:{width:\"100%\"}},Jv6wH85cx:{device:\"tablet\",style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o2qx1b-container\",\"data-framer-name\":\"Carousel - Tech\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Y17tsrtPN-container\",name:\"Carousel - Tech\",nodeId:\"Y17tsrtPN\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(Carousel,{backgroundColor:\"rgba(0, 153, 255, 0)\",device:\"desktop\",gap:16,height:\"100%\",id:\"Y17tsrtPN\",instances:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lgbn4h-container\",\"data-framer-name\":\"Ai\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fqoHf9Dsp-container\",name:\"Ai\",nodeId:\"fqoHf9Dsp\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"fqoHf9Dsp\",layoutId:\"fqoHf9Dsp\",name:\"Ai\",style:{height:\"100%\",width:\"100%\"},variant:\"XXGrEi3Tx\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2tp3i8-container\",\"data-framer-name\":\"Kode \",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FG7dmw60w-container\",name:\"Kode \",nodeId:\"FG7dmw60w\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"FG7dmw60w\",layoutId:\"FG7dmw60w\",name:\"Kode \",style:{height:\"100%\",width:\"100%\"},variant:\"PdjRg6kUf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"300px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1anlt3n-container\",\"data-framer-name\":\"Vr ar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZsyReVPTj-container\",name:\"Vr ar\",nodeId:\"ZsyReVPTj\",rendersWithMotion:true,scopeId:\"cUSRdtEE1\",children:/*#__PURE__*/_jsx(ServicePreview,{height:\"100%\",id:\"ZsyReVPTj\",layoutId:\"ZsyReVPTj\",name:\"Vr ar\",style:{height:\"100%\",width:\"100%\"},variant:\"nR4zItetJ\",width:\"100%\"})})})],instanceWidth:300,layoutId:\"Y17tsrtPN\",name:\"Carousel - Tech\",navigationSize:48,nextButtonImage:\"https://framerusercontent.com/images/L5SOJ2UNba6Bo4SI7BwX6rRcTaA.png\",prevButtonImage:\"https://framerusercontent.com/images/q23qw4WXEV4WcY1OXBNlwO7b5eA.png\",width:\"100%\",...addPropertyOverrides({ATwsFUD4V:{device:\"mobile\",style:{width:\"100%\"}},Jv6wH85cx:{device:\"tablet\",style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NQWld.framer-1nx6c4k, .framer-NQWld .framer-1nx6c4k { display: block; }\",\".framer-NQWld.framer-ijw6p4 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 529px; justify-content: center; padding: 0px; position: relative; width: 1200px; }\",\".framer-NQWld .framer-z5o5hl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NQWld .framer-82p1a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 28px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NQWld .framer-68swfk-container { flex: none; height: auto; position: relative; width: 350px; }\",\".framer-NQWld .framer-175znva-container, .framer-NQWld .framer-1d3mcp-container, .framer-NQWld .framer-pa7m71-container, .framer-NQWld .framer-ghz76g-container, .framer-NQWld .framer-ukotdb-container, .framer-NQWld .framer-1lgbn4h-container, .framer-NQWld .framer-2tp3i8-container, .framer-NQWld .framer-y7od3q-container, .framer-NQWld .framer-1m6qqlr-container, .framer-NQWld .framer-1anlt3n-container, .framer-NQWld .framer-1urfe9t-container { height: 400px; position: relative; width: 300px; }\",\".framer-NQWld .framer-3wb9es-container, .framer-NQWld .framer-1n98xz8-container, .framer-NQWld .framer-o2qx1b-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NQWld.framer-v-8cicsr.framer-ijw6p4 { padding: 20px 0px 0px 0px; width: 810px; }\",\".framer-NQWld.framer-v-8cicsr .framer-3wb9es-container, .framer-NQWld.framer-v-8cicsr .framer-1n98xz8-container, .framer-NQWld.framer-v-8cicsr .framer-o2qx1b-container, .framer-NQWld.framer-v-80w5a6 .framer-1n98xz8-container, .framer-NQWld.framer-v-80w5a6 .framer-o2qx1b-container { flex: 1 0 0px; width: 1px; }\",\".framer-NQWld.framer-v-80w5a6.framer-ijw6p4 { width: 350px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 529\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Jv6wH85cx\":{\"layout\":[\"fixed\",\"fixed\"]},\"ATwsFUD4V\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"nr3U77D8U\":\"type\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercUSRdtEE1=withCSS(Component,css,\"framer-NQWld\");export default FramercUSRdtEE1;FramercUSRdtEE1.displayName=\"Service-carousel\";FramercUSRdtEE1.defaultProps={height:529,width:1200};addPropertyControls(FramercUSRdtEE1,{variant:{options:[\"RrdW9psbi\",\"Jv6wH85cx\",\"ATwsFUD4V\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},nr3U77D8U:{defaultValue:\"l_KPgLLSz\",options:[\"Mm0PXilnA\",\"jD4LAto1R\",\"l_KPgLLSz\"],optionTitles:[\"Film\",\"Technology\",\"Default\"],title:\"Type\",type:ControlType.Enum}});addFonts(FramercUSRdtEE1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ServicePreviewFonts,...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercUSRdtEE1\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Jv6wH85cx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ATwsFUD4V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"nr3U77D8U\\\":\\\"type\\\"}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"529\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ServiceCarousel from\"https://framerusercontent.com/modules/QgiEQ8Te1M7shzBbdHn7/UiG0vsVoZNY0qLxq0mJi/cUSRdtEE1.js\";const ServiceCarouselFonts=getFonts(ServiceCarousel);const ServiceCarouselControls=getPropertyControls(ServiceCarousel);const cycleOrder=[\"SruQ4FQpV\",\"SsK5jTJ3m\",\"GQHGYQHxZ\"];const serializationHash=\"framer-CbbxD\";const variantClassNames={GQHGYQHxZ:\"framer-v-1qt3158\",SruQ4FQpV:\"framer-v-1dijo4f\",SsK5jTJ3m:\"framer-v-hl5k4u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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 humanReadableEnumMap={Default:\"l_KPgLLSz\",Film:\"Mm0PXilnA\",Technology:\"jD4LAto1R\"};const humanReadableVariantMap={Desktop:\"SruQ4FQpV\",Phone:\"GQHGYQHxZ\",Tablet:\"SsK5jTJ3m\"};const getProps=({height,id,type,width,...props})=>{return{...props,LI8FKvX2T:humanReadableEnumMap[type]??type??props.LI8FKvX2T??\"l_KPgLLSz\",variant:humanReadableVariantMap[props.variant]??props.variant??\"SruQ4FQpV\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,LI8FKvX2T,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SruQ4FQpV\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"SsK5jTJ3m\",\"GQHGYQHxZ\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-1dijo4f\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"SruQ4FQpV\",ref:refBinding,style:{...style},...addPropertyOverrides({GQHGYQHxZ:{\"data-framer-name\":\"Phone\"},SsK5jTJ3m:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rvpncm\",layoutDependency:layoutDependency,layoutId:\"rXjawl1RJ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m2m8as\",layoutDependency:layoutDependency,layoutId:\"eyRmyjlOI\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vibsxb\",layoutDependency:layoutDependency,layoutId:\"qt3NuV8KA\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:529,width:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 10px) * 0.75, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||529)-0-529)/2)+0+0+0,...addPropertyOverrides({GQHGYQHxZ:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1px) * 1, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-529)/2)+0+0+0},SsK5jTJ3m:{width:`max(${componentViewport?.width||\"100vw\"} * 1, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||529)-0-529)/2+0+0)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x0e8m7-container\",layoutDependency:layoutDependency,layoutId:\"p5nICm0bB-container\",nodeId:\"p5nICm0bB\",rendersWithMotion:true,scopeId:\"qMAKQbQ5d\",children:/*#__PURE__*/_jsx(ServiceCarousel,{height:\"100%\",id:\"p5nICm0bB\",layoutId:\"p5nICm0bB\",nr3U77D8U:LI8FKvX2T,style:{width:\"100%\"},variant:\"RrdW9psbi\",width:\"100%\",zSiAvOt3o:\"oPs8kifBq\",...addPropertyOverrides({GQHGYQHxZ:{variant:\"ATwsFUD4V\"},SsK5jTJ3m:{variant:\"Jv6wH85cx\"}},baseVariant,gestureVariant)})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CbbxD.framer-1h589aq, .framer-CbbxD .framer-1h589aq { display: block; }\",\".framer-CbbxD.framer-1dijo4f { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1260px; }\",\".framer-CbbxD .framer-1rvpncm { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-CbbxD .framer-m2m8as { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CbbxD .framer-1vibsxb { flex: 1 0 0px; height: 206px; overflow: hidden; position: relative; width: 1px; }\",\".framer-CbbxD .framer-1x0e8m7-container { flex: 3 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-CbbxD.framer-v-hl5k4u.framer-1dijo4f { flex-direction: column; width: 1000px; }\",\".framer-CbbxD.framer-v-hl5k4u .framer-1rvpncm { flex: none; width: 100%; }\",\".framer-CbbxD.framer-v-hl5k4u .framer-m2m8as { overflow: hidden; }\",\".framer-CbbxD.framer-v-1qt3158.framer-1dijo4f { width: 350px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 529\n * @framerIntrinsicWidth 1260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SsK5jTJ3m\":{\"layout\":[\"fixed\",\"auto\"]},\"GQHGYQHxZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"LI8FKvX2T\":\"type\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerqMAKQbQ5d=withCSS(Component,css,\"framer-CbbxD\");export default FramerqMAKQbQ5d;FramerqMAKQbQ5d.displayName=\"Services-carousel-section\";FramerqMAKQbQ5d.defaultProps={height:529,width:1260};addPropertyControls(FramerqMAKQbQ5d,{variant:{options:[\"SruQ4FQpV\",\"SsK5jTJ3m\",\"GQHGYQHxZ\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},LI8FKvX2T:ServiceCarouselControls?.[\"nr3U77D8U\"]&&{...ServiceCarouselControls[\"nr3U77D8U\"],defaultValue:\"l_KPgLLSz\",description:undefined,hidden:undefined,title:\"Type\"}});addFonts(FramerqMAKQbQ5d,[{explicitInter:true,fonts:[]},...ServiceCarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqMAKQbQ5d\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1260\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"529\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SsK5jTJ3m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GQHGYQHxZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"LI8FKvX2T\\\":\\\"type\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}