{"version":3,"file":"NwsqX2rgT.DIXF2Yn2.mjs","names":["useState","startTransition","useState","startTransition","useState","startTransition","addPropertyOverrides","HoverLinkFonts","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","useRef","React.useId","React.useContext","React.useMemo","React.Fragment","useRef","React.useId"],"sources":["https:/framerusercontent.com/modules/y5c7PUxeOKev4HpltMb6/8I4sa2UcL3ppokHA2c0Q/Twice_button.js","https:/framerusercontent.com/modules/Fm71Kdl49az3Wf8jgcld/TIoJ5twnQPKi01NDvq4N/AnimatedLink.js","https:/framerusercontent.com/modules/43OR90U5IQwCWUpftyq2/3DR5SwoiifEgyDGyN3f3/HoverLink.js","https:/framerusercontent.com/modules/LB8xBDGZfPiqoy3e8awI/qPiwu279QYF0oRmgmt80/eIeIx2l_W.js","https:/framerusercontent.com/modules/WNlf4jS1ICno5lM7gsWT/fpkEkn6VpgeEUfWR663I/NwsqX2rgT.js"],"sourcesContent":["// Simplified Contact Button Component with shape animation and text hover effects\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,startTransition,useEffect}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function ContactButton(props){const{text=\"CONTACT US\",font,colors={shapeBackgroundColor:\"#000000\",textBackgroundColor:\"#FFFFFF\",shapeColor:\"#FFFFFF\",textColor:\"#000000\",borderColor:\"#000000\"},layout={symbolPositionX:0,symbolPositionY:0,buttonPadding:20,containerHeight:0,borderRadius:8,borderWidth:2,shapeSize:20},animationSpeed=.3,animationType=\"easeInOut\",disableHoverOnMobile=false}=props;// Extract values from nested objects\nconst{shapeBackgroundColor,textBackgroundColor,shapeColor,textColor,borderColor}=colors;const{symbolPositionX,symbolPositionY,buttonPadding,containerHeight,borderRadius,borderWidth,shapeSize}=layout;const[isHovered,setIsHovered]=useState(false);const[isMobileDevice,setIsMobileDevice]=useState(false);const[currentShape,setCurrentShape]=useState(0)// 0: circle, 1: triangle, 2: rectangle\n;useEffect(()=>{if(typeof window!==\"undefined\"){const checkMobileDevice=()=>{const isTouchDevice=\"ontouchstart\"in window||navigator.maxTouchPoints>0;const isSmallScreen=window.innerWidth<=768;setIsMobileDevice(isTouchDevice||isSmallScreen);};checkMobileDevice();window.addEventListener(\"resize\",checkMobileDevice);return()=>window.removeEventListener(\"resize\",checkMobileDevice);}},[]);// Calculate font size in pixels (handle rem values)\nconst getFontSizeInPx=()=>{if(!font?.size)return 16;if(typeof font.size===\"string\"&&font.size.includes(\"rem\")){return parseFloat(font.size)*16;}if(typeof font.size===\"string\"&&font.size.includes(\"px\")){return parseFloat(font.size);}return parseFloat(font.size)||16;};const fontSizePx=getFontSizeInPx();// Shape cycling logic\nuseEffect(()=>{let interval=null;if(isHovered&&!shouldDisableHover){interval=setInterval(()=>{setCurrentShape(prev=>(prev+1)%3);},animationSpeed*1e3);}else{setCurrentShape(0)// Reset to circle when not hovered\n;}return()=>{if(interval)clearInterval(interval);};},[isHovered,animationSpeed]);const shouldDisableHover=disableHoverOnMobile&&isMobileDevice;const getTransition=()=>{const duration=animationSpeed;switch(animationType){case\"spring\":return{type:\"spring\",stiffness:300,damping:30,duration};case\"easeInOut\":return{duration,ease:\"easeInOut\"};case\"linear\":return{duration,ease:\"linear\"};default:return{duration,ease:\"easeInOut\"};}};const renderShape=()=>{const color=shapeColor;const size=Math.max(shapeSize,fontSizePx*1.2)// Proportional zur Schriftgröße\n;switch(currentShape){case 0:return /*#__PURE__*/_jsx(\"div\",{style:{width:size,height:size,position:\"relative\"},children:/*#__PURE__*/_jsx(\"svg\",{width:size,height:size,viewBox:`0 0 ${size} ${size}`,style:{position:\"absolute\",top:0,left:0},children:/*#__PURE__*/_jsx(\"circle\",{cx:size/2,cy:size/2,r:(size-borderWidth*2)/2,fill:\"transparent\",stroke:color,strokeWidth:borderWidth})})});case 1:return /*#__PURE__*/_jsx(\"div\",{style:{width:size,height:size,position:\"relative\"},children:/*#__PURE__*/_jsx(\"svg\",{width:size,height:size,viewBox:`0 0 ${size} ${size}`,style:{position:\"absolute\",top:0,left:0},children:/*#__PURE__*/_jsx(\"polygon\",{points:`${size/2},${borderWidth} ${size-borderWidth},${size-borderWidth} ${borderWidth},${size-borderWidth}`,fill:\"transparent\",stroke:color,strokeWidth:borderWidth,strokeLinejoin:\"round\"})})});case 2:return /*#__PURE__*/_jsx(\"div\",{style:{width:size,height:size,position:\"relative\"},children:/*#__PURE__*/_jsx(\"svg\",{width:size,height:size,viewBox:`0 0 ${size} ${size}`,style:{position:\"absolute\",top:0,left:0},children:/*#__PURE__*/_jsx(\"rect\",{x:borderWidth/2,y:borderWidth/2,width:size-borderWidth,height:size-borderWidth,fill:\"transparent\",stroke:color,strokeWidth:borderWidth})})});}};const textStyle={...font,color:textColor,margin:0,padding:0,whiteSpace:\"nowrap\",userSelect:\"none\"};return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",alignItems:\"stretch\",cursor:\"pointer\",width:\"fit-content\",height:containerHeight>0?`${containerHeight}px`:\"auto\",border:`${borderWidth}px solid ${borderColor}`,borderRadius:`${borderRadius}px`,overflow:\"hidden\",...props.style},onMouseEnter:()=>!shouldDisableHover&&startTransition(()=>setIsHovered(true)),onMouseLeave:()=>!shouldDisableHover&&startTransition(()=>setIsHovered(false)),children:[/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",width:containerHeight>0?containerHeight:Math.max(shapeSize,fontSizePx*2.5),height:\"100%\",backgroundColor:shapeBackgroundColor,flexShrink:0,position:\"relative\"},children:/*#__PURE__*/_jsx(\"div\",{style:{position:\"relative\",transform:`translate(${symbolPositionX}px, ${symbolPositionY}px)`},children:renderShape()})}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",alignItems:\"center\",paddingLeft:`${buttonPadding}px`,paddingRight:`${buttonPadding}px`,paddingTop:containerHeight>0?0:`${fontSizePx*.8}px`,paddingBottom:containerHeight>0?0:`${fontSizePx*.8}px`,backgroundColor:textBackgroundColor,flex:1,height:\"100%\"},children:/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",overflow:\"hidden\",height:`${fontSizePx*1.5}px`,width:\"fit-content\",display:\"flex\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",top:0,left:0},animate:{y:isHovered?-(fontSizePx*1.5+52):0,rotate:isHovered?-30:0},transition:getTransition(),children:/*#__PURE__*/_jsx(\"span\",{style:textStyle,children:text})}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",top:fontSizePx*1.5+52,left:0},animate:{y:isHovered&&!shouldDisableHover?-(fontSizePx*1.5+52):0,rotate:isHovered&&!shouldDisableHover?0:30},transition:getTransition(),children:/*#__PURE__*/_jsx(\"span\",{style:{...font,color:textColor,margin:0,padding:0,whiteSpace:\"nowrap\",userSelect:\"none\"},children:text})}),/*#__PURE__*/_jsx(\"span\",{style:{...font,visibility:\"hidden\",margin:0,padding:0,whiteSpace:\"nowrap\"},children:text})]})})]});}addPropertyControls(ContactButton,{text:{type:ControlType.String,title:\"Button Text\",defaultValue:\"CONTACT US\"},font:{type:ControlType.Font,title:\"Font\",defaultValue:{variant:\"Bold\",size:\"1rem\",letterSpacing:\"0.1em\",lineHeight:\"1.2em\"},controls:\"extended\",defaultFontType:\"sans-serif\"},// Gruppierte Farben\ncolors:{type:ControlType.Object,title:\"Colors\",controls:{shapeBackgroundColor:{type:ControlType.Color,title:\"Symbol Background\",defaultValue:\"#000000\"},textBackgroundColor:{type:ControlType.Color,title:\"Text Background\",defaultValue:\"#FFFFFF\"},shapeColor:{type:ControlType.Color,title:\"Symbol Color\",defaultValue:\"#FFFFFF\"},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000000\"},borderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#000000\"}},defaultValue:{shapeBackgroundColor:\"#000000\",textBackgroundColor:\"#FFFFFF\",shapeColor:\"#FFFFFF\",textColor:\"#000000\",borderColor:\"#000000\"}},// Gruppiertes Layout\nlayout:{type:ControlType.Object,title:\"Layout & Position\",controls:{symbolPositionX:{type:ControlType.Number,title:\"Symbol Position X\",defaultValue:0,min:-20,max:20,step:1,unit:\"px\"},symbolPositionY:{type:ControlType.Number,title:\"Symbol Position Y\",defaultValue:0,min:-20,max:20,step:1,unit:\"px\"},buttonPadding:{type:ControlType.Number,title:\"Text Padding (Left/Right)\",defaultValue:20,min:5,max:50,step:1,unit:\"px\"},containerHeight:{type:ControlType.Number,title:\"Container Height\",defaultValue:0,min:0,max:200,step:1,unit:\"px\",description:\"0 = Auto (proportional to font size)\"},borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:8,min:0,max:50,step:1,unit:\"px\"},borderWidth:{type:ControlType.Number,title:\"Border Width\",defaultValue:2,min:0,max:10,step:1,unit:\"px\"},shapeSize:{type:ControlType.Number,title:\"Min Shape Size\",defaultValue:20,min:10,max:50,step:1,unit:\"px\"}},defaultValue:{symbolPositionX:0,symbolPositionY:0,buttonPadding:20,containerHeight:0,borderRadius:8,borderWidth:2,shapeSize:20}},// Animation\nanimationSpeed:{type:ControlType.Number,title:\"Animation Speed\",defaultValue:.3,min:.1,max:2,step:.1,unit:\"s\"},animationType:{type:ControlType.Enum,title:\"Animation Type\",options:[\"spring\",\"easeInOut\",\"linear\"],optionTitles:[\"Spring\",\"Ease In Out\",\"Linear\"],defaultValue:\"easeInOut\",displaySegmentedControl:true},disableHoverOnMobile:{type:ControlType.Boolean,title:\"Disable Hover on Mobile\",defaultValue:false,enabledTitle:\"Disabled\",disabledTitle:\"Enabled\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ContactButton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Twice_button.map","// Animated Link Component with improved SVG color handling\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,startTransition,useEffect}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function AnimatedLink(props){const{svgIcon={src:\"https://framerusercontent.com/images/GfGkADagM4KEibNcIiRUWlfrR0.jpg\",alt:\"Icon\"},iconSize=24,standardColor=\"#000000\",hoverColor=\"#0066FF\",animationSpeed=.3,animationType=\"easeInOut\",disableHoverOnMobile=false}=props;const[isHovered,setIsHovered]=useState(false);const[isMobileDevice,setIsMobileDevice]=useState(false);useEffect(()=>{if(typeof window!==\"undefined\"){const checkMobileDevice=()=>{const isTouchDevice=\"ontouchstart\"in window||navigator.maxTouchPoints>0;const isSmallScreen=window.innerWidth<=768;setIsMobileDevice(isTouchDevice||isSmallScreen);};checkMobileDevice();window.addEventListener(\"resize\",checkMobileDevice);return()=>window.removeEventListener(\"resize\",checkMobileDevice);}},[]);const shouldDisableHover=disableHoverOnMobile&&isMobileDevice;const getTransition=()=>{const duration=animationSpeed;switch(animationType){case\"spring\":return{type:\"spring\",stiffness:300,damping:30,duration};case\"easeInOut\":return{duration,ease:\"easeInOut\"};case\"linear\":return{duration,ease:\"linear\"};default:return{duration,ease:\"easeInOut\"};}};const getCurrentColor=()=>{return isHovered&&!shouldDisableHover?hoverColor:standardColor;};const renderIcon=key=>{return /*#__PURE__*/_jsx(\"div\",{style:{width:`${iconSize}px`,height:`${iconSize}px`,maskImage:`url(${svgIcon.src})`,maskRepeat:\"no-repeat\",maskPosition:\"center\",maskSize:\"contain\",backgroundColor:getCurrentColor(),userSelect:\"none\",display:\"block\"}},key);};return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",display:\"inline-block\",textDecoration:\"none\",cursor:\"pointer\",width:\"fit-content\",height:\"auto\",...props.style},onMouseEnter:()=>!shouldDisableHover&&startTransition(()=>setIsHovered(true)),onMouseLeave:()=>!shouldDisableHover&&startTransition(()=>setIsHovered(false)),children:[/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",overflow:\"hidden\",height:`${iconSize}px`,width:`${iconSize}px`,display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},children:[/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",top:0,left:0,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\",height:\"100%\"},animate:{y:isHovered?-(iconSize+52):0,rotate:isHovered?-30:0},transition:getTransition(),children:renderIcon(\"icon1\")}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",top:iconSize+52,left:0,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\",height:\"100%\"},animate:{y:isHovered&&!shouldDisableHover?-(iconSize+52):0,rotate:isHovered&&!shouldDisableHover?0:30},transition:getTransition(),children:renderIcon(\"icon2\")})]}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",bottom:-2,left:0,height:\"1px\",width:\"100%\",backgroundColor:getCurrentColor(),transformOrigin:\"left\"},initial:{scaleX:0},animate:{scaleX:isHovered&&!shouldDisableHover?1:0,transformOrigin:isHovered&&!shouldDisableHover?\"left\":\"right\"},transition:getTransition()})]});}addPropertyControls(AnimatedLink,{svgIcon:{type:ControlType.ResponsiveImage,title:\"SVG Icon\"},iconSize:{type:ControlType.Number,title:\"Icon Size\",defaultValue:24,min:12,max:128,step:1,unit:\"px\"},standardColor:{type:ControlType.Color,title:\"Standard Color\",defaultValue:\"#000000\"},hoverColor:{type:ControlType.Color,title:\"Hover Color\",defaultValue:\"#0066FF\"},animationSpeed:{type:ControlType.Number,title:\"Animation Speed\",defaultValue:.3,min:.1,max:2,step:.1,unit:\"s\"},animationType:{type:ControlType.Enum,title:\"Animation Type\",options:[\"spring\",\"easeInOut\",\"linear\"],optionTitles:[\"Spring\",\"Ease In Out\",\"Linear\"],defaultValue:\"easeInOut\",displaySegmentedControl:true},disableHoverOnMobile:{type:ControlType.Boolean,title:\"Disable Hover on Mobile\",defaultValue:false,enabledTitle:\"Disabled\",disabledTitle:\"Enabled\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedLink\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimatedLink.map","// Animated Link Component with hover effects and line animation\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,startTransition,useEffect}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function HoverLink(props){const{text=\"Link Text\",font,fontSize=16,isActive=false,inactiveColors={textColor:\"#000000\",lineColor:\"#0066FF\"},inactiveHoverColors={hoverTextColor:\"#0066FF\",hoverLineColor:\"#0066FF\"},activeColors={activeTextColor:\"#0066FF\",activeLineColor:\"#0066FF\"},activeHoverColors={activeHoverTextColor:\"#003399\",activeHoverLineColor:\"#003399\"},animationSpeed=.3,animationType=\"easeInOut\",disableHoverOnMobile=false}=props;const[isHovered,setIsHovered]=useState(false);const[isMobileDevice,setIsMobileDevice]=useState(false);useEffect(()=>{if(typeof window!==\"undefined\"){const checkMobileDevice=()=>{const isTouchDevice=\"ontouchstart\"in window||navigator.maxTouchPoints>0;const isSmallScreen=window.innerWidth<=768// More accurate mobile/tablet breakpoint\n;setIsMobileDevice(isTouchDevice||isSmallScreen);};checkMobileDevice();window.addEventListener(\"resize\",checkMobileDevice);return()=>window.removeEventListener(\"resize\",checkMobileDevice);}},[]);const shouldDisableHover=disableHoverOnMobile&&isMobileDevice;const getTransition=()=>{const duration=animationSpeed;switch(animationType){case\"spring\":return{type:\"spring\",stiffness:300,damping:30,duration};case\"easeInOut\":return{duration,ease:\"easeInOut\"};case\"linear\":return{duration,ease:\"linear\"};default:return{duration,ease:\"easeInOut\"};}};const getCurrentTextColor=()=>{if(isHovered){if(isActive&&activeHoverColors?.activeHoverTextColor){return activeHoverColors.activeHoverTextColor;}if(!isActive&&inactiveHoverColors?.hoverTextColor){return inactiveHoverColors.hoverTextColor;}}if(isActive)return activeColors.activeTextColor;return inactiveColors.textColor;};const getHoverTextColor=()=>{if(isActive&&activeHoverColors?.activeHoverTextColor){return activeHoverColors.activeHoverTextColor;}if(inactiveHoverColors?.hoverTextColor)return inactiveHoverColors.hoverTextColor;return inactiveColors.textColor;};const getLineColor=()=>{if(isHovered){if(isActive&&activeHoverColors?.activeHoverLineColor){return activeHoverColors.activeHoverLineColor;}if(!isActive&&inactiveHoverColors?.hoverLineColor){return inactiveHoverColors.hoverLineColor;}}if(isActive)return activeColors.activeLineColor;return inactiveColors.lineColor;};const textStyle={...font,fontSize:`${fontSize}px`,color:getCurrentTextColor(),margin:0,padding:0,lineHeight:1.2,whiteSpace:\"nowrap\",userSelect:\"none\"};return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",display:\"inline-block\",textDecoration:\"none\",cursor:\"pointer\",width:\"fit-content\",height:\"auto\",...props.style},onMouseEnter:()=>!shouldDisableHover&&startTransition(()=>setIsHovered(true)),onMouseLeave:()=>!shouldDisableHover&&startTransition(()=>setIsHovered(false)),children:[/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",overflow:\"hidden\",height:`${fontSize}px`,width:\"fit-content\",display:\"flex\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",top:0,left:0},animate:{y:isHovered?-(fontSize+52):0,rotate:isHovered?-30:0},transition:getTransition(),children:/*#__PURE__*/_jsx(\"span\",{style:textStyle,children:text})}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",top:fontSize+52,left:0},animate:{y:isHovered&&!shouldDisableHover?-(fontSize+52):0,rotate:isHovered&&!shouldDisableHover?0:30},transition:getTransition(),children:/*#__PURE__*/_jsx(\"span\",{style:{...font,fontSize:`${fontSize}px`,color:getHoverTextColor(),margin:0,padding:0,lineHeight:1.2,whiteSpace:\"nowrap\",userSelect:\"none\"},children:text})}),/*#__PURE__*/_jsx(\"span\",{style:{...font,fontSize:`${fontSize}px`,visibility:\"hidden\",margin:0,padding:0,lineHeight:1.2,whiteSpace:\"nowrap\"},children:text})]}),/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",bottom:-2,left:0,height:\"1px\",width:\"100%\",backgroundColor:getLineColor(),transformOrigin:\"left\"},initial:{scaleX:isActive?1:0},animate:{scaleX:isHovered&&!shouldDisableHover||isActive?1:0,transformOrigin:isHovered&&!shouldDisableHover||isActive?\"left\":\"right\"},transition:getTransition()})]});}addPropertyControls(HoverLink,{text:{type:ControlType.String,title:\"Link Text\",defaultValue:\"Link Text\"},font:{type:ControlType.Font,title:\"Font\",defaultValue:{variant:\"Medium\",letterSpacing:\"-0.01em\",lineHeight:\"1em\"},controls:\"extended\",defaultFontType:\"sans-serif\"},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:16,min:8,max:72,step:1,unit:\"px\"},isActive:{type:ControlType.Boolean,title:\"Active State\",defaultValue:false,enabledTitle:\"Active\",disabledTitle:\"Inactive\"},inactiveColors:{type:ControlType.Object,title:\"Inactive Link Colors\",controls:{textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000000\"},lineColor:{type:ControlType.Color,title:\"Line Color\",defaultValue:\"#0066FF\"}},defaultValue:{textColor:\"#000000\",lineColor:\"#0066FF\"}},inactiveHoverColors:{type:ControlType.Object,title:\"Inactive Hover Colors\",controls:{hoverTextColor:{type:ControlType.Color,title:\"Hover Text Color\",defaultValue:\"#0066FF\"},hoverLineColor:{type:ControlType.Color,title:\"Hover Line Color\",defaultValue:\"#0066FF\"}},defaultValue:{hoverTextColor:\"#0066FF\",hoverLineColor:\"#0066FF\"}},activeColors:{type:ControlType.Object,title:\"Active Link Colors\",controls:{activeTextColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#0066FF\"},activeLineColor:{type:ControlType.Color,title:\"Line Color\",defaultValue:\"#0066FF\"}},defaultValue:{activeTextColor:\"#0066FF\",activeLineColor:\"#0066FF\"}},activeHoverColors:{type:ControlType.Object,title:\"Active Hover Colors\",controls:{activeHoverTextColor:{type:ControlType.Color,title:\"Hover Text Color\",defaultValue:\"#003399\"},activeHoverLineColor:{type:ControlType.Color,title:\"Hover Line Color\",defaultValue:\"#003399\"}},defaultValue:{activeHoverTextColor:\"#003399\",activeHoverLineColor:\"#003399\"}},animationSpeed:{type:ControlType.Number,title:\"Animation Speed\",defaultValue:.3,min:.1,max:2,step:.1,unit:\"s\"},animationType:{type:ControlType.Enum,title:\"Animation Type\",options:[\"spring\",\"easeInOut\",\"linear\"],optionTitles:[\"Spring\",\"Ease In Out\",\"Linear\"],defaultValue:\"easeInOut\",displaySegmentedControl:true},disableHoverOnMobile:{type:ControlType.Boolean,title:\"Disable Hover on Mobile\",defaultValue:false,enabledTitle:\"Disabled\",disabledTitle:\"Enabled\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"HoverLink\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HoverLink.map","// Generated by Framer (571faa6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ContactButton from\"https://framerusercontent.com/modules/y5c7PUxeOKev4HpltMb6/8I4sa2UcL3ppokHA2c0Q/Twice_button.js\";import AnimatedLink from\"https://framerusercontent.com/modules/Fm71Kdl49az3Wf8jgcld/TIoJ5twnQPKi01NDvq4N/AnimatedLink.js\";import HoverLink from\"https://framerusercontent.com/modules/43OR90U5IQwCWUpftyq2/3DR5SwoiifEgyDGyN3f3/HoverLink.js\";const ContactButtonFonts=getFonts(ContactButton);const HoverLinkFonts=getFonts(HoverLink);const AnimatedLinkFonts=getFonts(AnimatedLink);const cycleOrder=[\"zh2dNkaSf\",\"v6buDZWn1\",\"pwVtACACX\"];const serializationHash=\"framer-tOyh2\";const variantClassNames={pwVtACACX:\"framer-v-mkdsao\",v6buDZWn1:\"framer-v-trda9x\",zh2dNkaSf:\"framer-v-18vcb2v\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={Desktop:\"zh2dNkaSf\",Phone:\"pwVtACACX\",Tablet:\"v6buDZWn1\"};const getProps=({aboutActive,border,buttonText,contactActive,contentText,height,id,link,serviceActive,width,workActive,...props})=>{return{...props,BEfnYsrXd:link??props.BEfnYsrXd,f7wqGWOnh:buttonText??props.f7wqGWOnh??\"CONTACT US\",FQlp3f0sf:serviceActive??props.FQlp3f0sf,p5YjZonzT:workActive??props.p5YjZonzT,tYstZgxMP:contentText??props.tYstZgxMP??\"Established in 2005, we've dedicated ourselves to crafting impactful and outstanding retail solutions defined by creativity, innovation, speed and anunwavering commitment to excellence in production.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"zh2dNkaSf\",w6YfzNa1e:border??props.w6YfzNa1e??{borderBottomWidth:1,borderColor:\"rgb(38, 58, 56)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},whMQct4Rx:aboutActive??props.whMQct4Rx,Z_QKIGMAn:contactActive??props.Z_QKIGMAn};};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,w6YfzNa1e,p5YjZonzT,FQlp3f0sf,whMQct4Rx,Z_QKIGMAn,f7wqGWOnh,tYstZgxMP,BEfnYsrXd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zh2dNkaSf\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-18vcb2v\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"zh2dNkaSf\",ref:refBinding,style:{backgroundColor:\"rgb(0, 0, 0)\",...style},...addPropertyOverrides({pwVtACACX:{\"data-framer-name\":\"Phone\"},v6buDZWn1:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jc1f8x\",layoutDependency:layoutDependency,layoutId:\"V5JJ1JpxV\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-e7mzdb\",\"data-border\":true,\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"BBBVpxARL\",style:{\"--border-bottom-width\":(w6YfzNa1e.borderBottomWidth??w6YfzNa1e.borderWidth)+\"px\",\"--border-color\":w6YfzNa1e.borderColor,\"--border-left-width\":(w6YfzNa1e.borderLeftWidth??w6YfzNa1e.borderWidth)+\"px\",\"--border-right-width\":(w6YfzNa1e.borderRightWidth??w6YfzNa1e.borderWidth)+\"px\",\"--border-style\":w6YfzNa1e.borderStyle,\"--border-top-width\":(w6YfzNa1e.borderTopWidth??w6YfzNa1e.borderWidth)+\"px\"},variants:{pwVtACACX:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 58, 56)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n6yp21\",layoutDependency:layoutDependency,layoutId:\"OfHG3ca_e\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hrzc3i\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"HTbk_mkso\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yep9ld\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"XsAShWj36\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 3.85)\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 202, 201))\"},children:\"You only live once, so think\"})}),className:\"framer-6vl829\",fonts:[\"CUSTOM;Haas Grot Disp Trial 45 Light\"],layoutDependency:layoutDependency,layoutId:\"CTxs169U0\",style:{\"--extracted-r6o4lv\":\"rgb(192, 202, 201)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.68)\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 202, 201))\"},children:\"You only live once, so think\"})})},v6buDZWn1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.65)\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 202, 201))\"},children:\"You only live once, so think\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-108tvsx\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"NSvhAHKwi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 640.116 131.991\" overflow=\"visible\"><g><path d=\"M 307.685 3.491 L 275.689 3.491 C 274.861 3.492 274.16 4.1 274.049 4.914 L 258.385 121.387 L 258.274 121.387 L 244.33 4.937 C 244.231 4.114 243.526 3.494 242.689 3.495 L 185.53 3.495 C 184.699 3.512 184.003 4.122 183.884 4.937 C 183.884 4.937 169.969 121.157 169.871 121.152 L 154.189 4.914 C 154.079 4.102 153.38 3.495 152.553 3.495 L 120.543 3.495 C 120.064 3.495 119.609 3.7 119.295 4.058 C 118.981 4.416 118.839 4.891 118.907 5.361 L 137.048 130.581 C 137.163 131.388 137.861 131.987 138.684 131.986 L 199.478 131.986 C 200.322 131.988 201.03 131.357 201.119 130.526 L 212.841 23.338 C 213.003 21.837 215.202 21.827 215.369 23.338 C 218.651 53.047 227.082 130.512 227.082 130.512 C 227.175 131.341 227.881 131.972 228.722 131.972 L 289.517 131.972 C 290.339 131.972 291.041 131.373 291.158 130.572 L 309.317 5.37 C 309.384 4.901 309.243 4.426 308.93 4.067 C 308.618 3.709 308.164 3.502 307.685 3.5 Z M 110.29 3.491 L 1.655 3.491 C 0.741 3.491 0 4.225 0 5.13 L 0 32.279 C 0 33.181 0.744 33.918 1.655 33.918 L 35.445 33.918 C 36.226 33.918 36.858 34.54 36.858 35.314 L 36.858 130.351 C 36.858 131.258 37.597 131.991 38.508 131.991 L 73.32 131.991 C 74.231 131.991 74.97 131.254 74.97 130.351 L 74.97 35.295 C 74.97 34.522 75.602 33.9 76.383 33.9 L 110.29 33.9 C 111.201 33.9 111.944 33.163 111.944 32.26 L 111.944 5.13 C 111.942 4.227 111.202 3.495 110.29 3.495 Z M 402.591 38.58 C 406.123 33.886 410.738 30.653 416.534 29.386 C 423.85 27.797 430.878 28.525 437.324 32.592 C 441.749 35.388 444.728 39.39 446.797 44.102 C 447.215 45.056 447.731 46.497 448.154 47.713 C 448.331 48.222 448.815 48.563 449.358 48.561 C 461.145 48.552 474.228 48.561 486.09 48.552 C 486.922 48.552 487.531 47.769 487.317 46.972 C 486.999 45.727 486.653 44.489 486.28 43.259 C 483.975 35.779 480.726 28.755 475.79 22.578 C 468.107 12.965 458.268 6.586 446.411 3.154 C 438.063 0.736 429.539 -0.157 420.866 0.022 C 413.085 0.184 405.468 1.298 398.133 3.878 C 377.548 11.109 364.39 25.245 358.659 46.069 C 356.86 52.61 356.167 59.27 356.214 65.995 C 356.167 72.715 356.865 79.38 358.659 85.916 C 364.39 106.745 377.552 120.881 398.133 128.112 C 405.477 130.692 413.085 131.806 420.866 131.967 C 429.534 132.143 438.063 131.254 446.411 128.835 C 458.263 125.404 468.107 119.024 475.79 109.407 C 480.726 103.235 483.975 96.211 486.28 88.726 C 486.657 87.524 486.987 86.271 487.317 85.018 C 487.418 84.64 487.336 84.238 487.096 83.929 C 486.856 83.619 486.484 83.438 486.09 83.438 C 474.228 83.438 461.145 83.438 449.358 83.424 C 448.815 83.422 448.331 83.763 448.154 84.272 C 447.735 85.492 447.219 86.939 446.797 87.887 C 444.728 92.59 441.749 96.602 437.324 99.398 C 430.878 103.465 423.845 104.188 416.534 102.604 C 410.734 101.342 406.123 98.104 402.591 93.41 C 397.799 87.045 395.898 79.675 395.224 71.914 C 394.878 67.972 394.878 64.008 395.224 60.067 C 395.888 52.306 397.789 44.931 402.591 38.566 Z M 351.757 3.491 L 317.056 3.491 C 316.144 3.493 315.406 4.227 315.406 5.13 L 315.406 130.351 C 315.406 131.258 316.145 131.991 317.056 131.991 L 351.757 131.991 C 352.668 131.991 353.411 131.254 353.411 130.351 L 353.411 5.13 C 353.409 4.227 352.669 3.495 351.757 3.495 Z M 585.369 3.491 L 492.462 3.491 C 491.548 3.491 490.807 4.225 490.807 5.13 L 490.807 130.351 C 490.807 131.258 491.546 131.991 492.462 131.991 L 585.364 131.991 C 586.275 131.991 587.019 131.254 587.019 130.351 L 587.019 103.166 C 587.019 102.26 586.278 101.526 585.364 101.526 L 530.249 101.526 C 529.471 101.526 528.839 100.902 528.836 100.13 L 528.836 83.18 C 528.836 82.406 529.468 81.78 530.249 81.78 L 582.938 81.78 C 583.849 81.78 584.588 81.048 584.588 80.145 L 584.588 52.946 C 584.589 52.511 584.416 52.094 584.106 51.787 C 583.796 51.479 583.376 51.306 582.938 51.306 L 530.254 51.306 C 529.88 51.307 529.52 51.161 529.255 50.899 C 528.99 50.637 528.841 50.281 528.841 49.911 L 528.841 35.295 C 528.841 34.522 529.473 33.9 530.254 33.9 L 585.364 33.9 C 586.275 33.9 587.019 33.163 587.019 32.26 L 587.019 5.13 C 587.016 4.227 586.276 3.495 585.364 3.495 L 585.369 3.495 Z M 624.774 3.491 C 616.307 3.508 609.449 10.305 609.431 18.695 C 609.431 27.046 616.305 33.895 624.774 33.895 C 633.238 33.878 640.096 27.083 640.116 18.695 C 640.116 10.344 633.2 3.495 624.774 3.495 Z M 624.773 30.56 C 618.167 30.545 612.816 25.242 612.8 18.695 C 612.813 12.141 618.159 6.824 624.773 6.789 C 631.401 6.806 636.77 12.127 636.788 18.695 C 636.77 25.257 631.395 30.566 624.773 30.56 Z\" fill=\"rgb(192, 202, 201)\"></path><path d=\"M 626.855 24.758 C 623.788 24.758 621.933 22.183 621.933 18.374 C 621.933 14.564 623.709 12.036 626.642 12.036 C 629.017 12.036 630.62 13.362 631.094 16.061 L 634.636 16.061 C 634.032 11.907 630.792 9.212 626.558 9.212 C 621.585 9.212 618.169 13.279 618.169 18.378 C 618.169 23.472 621.627 27.544 626.642 27.544 C 630.922 27.544 634.115 24.882 634.771 20.773 L 631.229 20.773 C 630.792 23.302 629.151 24.758 626.865 24.758 Z\" fill=\"rgb(192, 202, 201)\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 280.029 57.824\" overflow=\"visible\"><g><path d=\"M 134.718 1.527 L 120.7 1.527 C 120.337 1.528 120.03 1.794 119.982 2.15 L 113.119 53.178 L 113.071 53.178 L 106.962 2.161 C 106.918 1.8 106.61 1.528 106.243 1.529 L 81.201 1.529 C 80.837 1.536 80.532 1.803 80.48 2.161 C 80.48 2.161 74.384 53.077 74.341 53.075 L 67.471 2.15 C 67.423 1.795 67.117 1.529 66.754 1.529 L 52.731 1.529 C 52.521 1.529 52.321 1.619 52.184 1.775 C 52.046 1.932 51.984 2.14 52.014 2.346 L 59.961 57.205 C 60.012 57.559 60.318 57.821 60.678 57.821 L 87.312 57.821 C 87.682 57.822 87.992 57.545 88.031 57.181 L 93.166 10.222 C 93.238 9.564 94.201 9.56 94.274 10.222 C 95.712 23.238 99.405 57.175 99.405 57.175 C 99.446 57.538 99.756 57.815 100.124 57.815 L 126.758 57.815 C 127.119 57.815 127.426 57.552 127.477 57.201 L 135.433 2.35 C 135.462 2.145 135.4 1.937 135.263 1.78 C 135.126 1.622 134.927 1.532 134.718 1.531 Z M 48.318 1.527 L 0.725 1.527 C 0.325 1.527 0 1.849 0 2.245 L 0 14.139 C 0 14.534 0.326 14.857 0.725 14.857 L 15.528 14.857 C 15.87 14.857 16.147 15.13 16.147 15.469 L 16.147 57.104 C 16.147 57.502 16.471 57.823 16.87 57.823 L 32.122 57.823 C 32.521 57.823 32.845 57.5 32.845 57.104 L 32.845 15.461 C 32.845 15.122 33.121 14.849 33.464 14.849 L 48.318 14.849 C 48.717 14.849 49.043 14.526 49.043 14.131 L 49.043 2.245 C 49.042 1.849 48.718 1.529 48.318 1.529 Z M 176.138 16.902 C 177.685 14.845 179.707 13.429 182.246 12.874 C 185.451 12.178 188.53 12.497 191.354 14.278 C 193.293 15.503 194.598 17.257 195.504 19.321 C 195.688 19.739 195.914 20.371 196.099 20.903 C 196.176 21.126 196.388 21.275 196.626 21.275 C 201.79 21.271 207.522 21.275 212.719 21.271 C 213.083 21.271 213.35 20.927 213.256 20.578 C 213.117 20.033 212.966 19.491 212.802 18.952 C 211.792 15.675 210.369 12.598 208.206 9.892 C 204.84 5.68 200.53 2.885 195.335 1.382 C 191.678 0.323 187.944 -0.069 184.144 0.01 C 180.735 0.08 177.398 0.569 174.185 1.699 C 165.166 4.867 159.402 11.06 156.891 20.183 C 156.103 23.048 155.8 25.966 155.82 28.912 C 155.8 31.857 156.105 34.776 156.891 37.64 C 159.402 46.765 165.168 52.958 174.185 56.126 C 177.402 57.256 180.735 57.744 184.144 57.815 C 187.942 57.892 191.678 57.502 195.335 56.443 C 200.528 54.939 204.84 52.145 208.206 47.931 C 210.369 45.227 211.792 42.15 212.802 38.871 C 212.967 38.344 213.112 37.795 213.256 37.246 C 213.301 37.081 213.265 36.905 213.159 36.769 C 213.054 36.634 212.891 36.554 212.719 36.554 C 207.522 36.554 201.79 36.554 196.626 36.548 C 196.388 36.547 196.176 36.697 196.099 36.919 C 195.916 37.454 195.69 38.088 195.504 38.504 C 194.598 40.564 193.293 42.321 191.354 43.546 C 188.53 45.328 185.449 45.645 182.246 44.951 C 179.705 44.398 177.685 42.979 176.138 40.923 C 174.038 38.134 173.205 34.906 172.91 31.505 C 172.759 29.779 172.759 28.042 172.91 26.315 C 173.201 22.915 174.034 19.684 176.138 16.896 Z M 153.894 1.527 L 138.692 1.527 C 138.292 1.528 137.969 1.849 137.969 2.245 L 137.969 57.104 C 137.969 57.502 138.293 57.823 138.692 57.823 L 153.894 57.823 C 154.293 57.823 154.619 57.5 154.619 57.104 L 154.619 2.245 C 154.618 1.849 154.294 1.529 153.894 1.529 Z M 256.123 1.527 L 215.42 1.527 C 215.02 1.527 214.696 1.849 214.696 2.245 L 214.696 57.104 C 214.696 57.502 215.019 57.823 215.42 57.823 L 256.121 57.823 C 256.52 57.823 256.846 57.5 256.846 57.104 L 256.846 45.195 C 256.846 44.798 256.521 44.476 256.121 44.476 L 231.975 44.476 C 231.634 44.476 231.357 44.203 231.356 43.865 L 231.356 36.439 C 231.356 36.1 231.633 35.825 231.975 35.825 L 255.058 35.825 C 255.457 35.825 255.781 35.505 255.781 35.109 L 255.781 23.193 C 255.781 23.003 255.705 22.82 255.57 22.685 C 255.434 22.551 255.25 22.475 255.058 22.475 L 231.977 22.475 C 231.813 22.475 231.656 22.411 231.54 22.297 C 231.423 22.182 231.358 22.026 231.358 21.864 L 231.358 15.461 C 231.358 15.122 231.635 14.849 231.977 14.849 L 256.121 14.849 C 256.52 14.849 256.846 14.526 256.846 14.131 L 256.846 2.245 C 256.845 1.849 256.52 1.529 256.121 1.529 L 256.123 1.529 Z M 273.307 1.527 C 269.598 1.535 266.593 4.512 266.585 8.188 C 266.585 11.847 269.597 14.847 273.307 14.847 C 277.015 14.839 280.02 11.863 280.029 8.188 C 280.029 4.53 276.999 1.529 273.307 1.529 Z M 273.305 13.384 C 270.411 13.377 268.066 11.054 268.059 8.186 C 268.065 5.314 270.407 2.985 273.305 2.97 C 276.209 2.977 278.561 5.308 278.569 8.186 C 278.561 11.061 276.206 13.386 273.305 13.384 Z\" fill=\"rgb(192, 202, 201)\"></path><path d=\"M 274.213 10.84 C 272.869 10.84 272.057 9.712 272.057 8.043 C 272.057 6.375 272.835 5.267 274.12 5.267 C 275.16 5.267 275.863 5.848 276.07 7.03 L 277.622 7.03 C 277.357 5.21 275.938 4.03 274.083 4.03 C 271.904 4.03 270.408 5.812 270.408 8.045 C 270.408 10.277 271.923 12.061 274.12 12.061 C 275.995 12.061 277.394 10.895 277.681 9.095 L 276.129 9.095 C 275.938 10.202 275.219 10.84 274.217 10.84 Z\" fill=\"rgb(192, 202, 201)\"></path></g></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 440.163 90.727\" overflow=\"visible\"><g><path d=\"M 211.574 2.399 L 189.572 2.399 C 189.002 2.401 188.521 2.818 188.444 3.378 L 177.673 83.439 L 177.597 83.439 L 168.009 3.394 C 167.941 2.828 167.456 2.402 166.88 2.403 L 127.576 2.403 C 127.004 2.414 126.526 2.833 126.444 3.394 C 126.444 3.394 116.875 83.281 116.808 83.277 L 106.025 3.378 C 105.95 2.819 105.469 2.402 104.9 2.403 L 82.889 2.403 C 82.56 2.402 82.247 2.543 82.031 2.789 C 81.815 3.035 81.718 3.362 81.764 3.685 L 94.238 89.758 C 94.318 90.313 94.797 90.725 95.363 90.724 L 137.167 90.724 C 137.747 90.726 138.235 90.292 138.295 89.72 L 146.356 16.042 C 146.467 15.01 147.979 15.004 148.094 16.042 C 150.351 36.463 156.148 89.711 156.148 89.711 C 156.212 90.281 156.698 90.715 157.276 90.715 L 199.08 90.715 C 199.646 90.715 200.129 90.303 200.209 89.752 L 212.695 3.691 C 212.742 3.369 212.645 3.042 212.43 2.796 C 212.215 2.549 211.902 2.407 211.574 2.406 Z M 75.838 2.399 L 1.138 2.399 C 0.509 2.399 0 2.904 0 3.527 L 0 22.188 C 0 22.808 0.511 23.315 1.138 23.315 L 24.373 23.315 C 24.91 23.315 25.344 23.742 25.344 24.274 L 25.344 89.6 C 25.344 90.224 25.853 90.727 26.479 90.727 L 50.417 90.727 C 51.044 90.727 51.552 90.221 51.552 89.6 L 51.552 24.261 C 51.552 23.729 51.987 23.302 52.523 23.302 L 75.838 23.302 C 76.465 23.302 76.976 22.795 76.976 22.175 L 76.976 3.527 C 76.974 2.905 76.466 2.403 75.838 2.403 Z M 276.833 26.519 C 279.262 23.292 282.436 21.07 286.421 20.199 C 291.452 19.107 296.284 19.607 300.717 22.403 C 303.76 24.325 305.808 27.076 307.231 30.315 C 307.518 30.97 307.873 31.961 308.164 32.797 C 308.286 33.147 308.618 33.381 308.992 33.38 C 317.097 33.373 326.094 33.38 334.25 33.373 C 334.822 33.373 335.241 32.835 335.094 32.287 C 334.875 31.432 334.637 30.581 334.381 29.735 C 332.796 24.594 330.562 19.765 327.167 15.52 C 321.884 8.912 315.118 4.527 306.965 2.168 C 301.225 0.506 295.364 -0.108 289.4 0.015 C 284.05 0.126 278.812 0.892 273.768 2.665 C 259.613 7.636 250.565 17.353 246.624 31.667 C 245.388 36.163 244.911 40.741 244.943 45.363 C 244.911 49.983 245.391 54.564 246.624 59.057 C 250.565 73.374 259.616 83.091 273.768 88.061 C 278.818 89.834 284.05 90.601 289.4 90.711 C 295.361 90.832 301.225 90.221 306.965 88.558 C 315.115 86.2 321.884 81.815 327.167 75.204 C 330.562 70.961 332.796 66.133 334.381 60.988 C 334.64 60.162 334.867 59.3 335.094 58.439 C 335.163 58.18 335.107 57.903 334.942 57.69 C 334.776 57.478 334.521 57.353 334.25 57.353 C 326.094 57.353 317.097 57.353 308.992 57.344 C 308.618 57.343 308.286 57.577 308.164 57.926 C 307.876 58.765 307.522 59.76 307.231 60.412 C 305.808 63.644 303.76 66.402 300.717 68.324 C 296.284 71.12 291.449 71.617 286.421 70.527 C 282.433 69.66 279.262 67.434 276.833 64.208 C 273.538 59.832 272.231 54.767 271.768 49.432 C 271.53 46.722 271.53 43.998 271.768 41.289 C 272.225 35.954 273.532 30.885 276.833 26.509 Z M 241.878 2.399 L 218.017 2.399 C 217.39 2.401 216.882 2.905 216.882 3.527 L 216.882 89.6 C 216.882 90.224 217.39 90.727 218.017 90.727 L 241.878 90.727 C 242.505 90.727 243.016 90.221 243.016 89.6 L 243.016 3.527 C 243.014 2.905 242.506 2.403 241.878 2.403 Z M 402.517 2.399 L 338.632 2.399 C 338.003 2.399 337.494 2.904 337.494 3.527 L 337.494 89.6 C 337.494 90.224 338.002 90.727 338.632 90.727 L 402.514 90.727 C 403.14 90.727 403.651 90.221 403.651 89.6 L 403.651 70.914 C 403.651 70.291 403.142 69.787 402.514 69.787 L 364.615 69.787 C 364.08 69.787 363.645 69.358 363.644 68.827 L 363.644 57.176 C 363.644 56.644 364.078 56.214 364.615 56.214 L 400.845 56.214 C 401.472 56.214 401.98 55.71 401.98 55.09 L 401.98 36.394 C 401.981 36.095 401.862 35.808 401.649 35.597 C 401.436 35.385 401.147 35.267 400.845 35.267 L 364.618 35.267 C 364.361 35.267 364.114 35.167 363.932 34.987 C 363.749 34.807 363.647 34.562 363.647 34.307 L 363.647 24.261 C 363.647 23.729 364.082 23.302 364.618 23.302 L 402.514 23.302 C 403.14 23.302 403.651 22.795 403.651 22.175 L 403.651 3.527 C 403.65 2.905 403.141 2.403 402.514 2.403 L 402.517 2.403 Z M 429.613 2.399 C 423.791 2.412 419.075 7.084 419.063 12.851 C 419.063 18.591 423.79 23.299 429.613 23.299 C 435.433 23.287 440.149 18.616 440.163 12.851 C 440.163 7.111 435.407 2.403 429.613 2.403 Z M 429.613 21.007 C 425.07 20.996 421.39 17.351 421.38 12.851 C 421.389 8.345 425.065 4.691 429.613 4.666 C 434.171 4.678 437.862 8.336 437.875 12.851 C 437.862 17.361 434.166 21.01 429.613 21.007 Z\" fill=\"rgb(192, 202, 201)\"></path><path d=\"M 431.045 17.018 C 428.935 17.018 427.66 15.248 427.66 12.63 C 427.66 10.011 428.881 8.273 430.898 8.273 C 432.531 8.273 433.633 9.185 433.959 11.04 L 436.395 11.04 C 435.979 8.184 433.752 6.332 430.84 6.332 C 427.42 6.332 425.071 9.128 425.071 12.633 C 425.071 16.134 427.449 18.933 430.898 18.933 C 433.841 18.933 436.037 17.103 436.488 14.279 L 434.052 14.279 C 433.752 16.017 432.624 17.018 431.051 17.018 Z\" fill=\"rgb(192, 202, 201)\"></path></g></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-3urtps\",layoutDependency:layoutDependency,layoutId:\"AazVK1vTv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 640.116 131.991\" overflow=\"visible\"><path d=\"M 307.685 3.491 L 275.689 3.491 C 274.861 3.492 274.16 4.1 274.049 4.914 L 258.385 121.387 L 258.274 121.387 L 244.33 4.937 C 244.231 4.114 243.526 3.494 242.689 3.495 L 185.53 3.495 C 184.699 3.512 184.003 4.122 183.884 4.937 C 183.884 4.937 169.969 121.157 169.871 121.152 L 154.189 4.914 C 154.079 4.102 153.38 3.495 152.553 3.495 L 120.543 3.495 C 120.064 3.495 119.609 3.7 119.295 4.058 C 118.981 4.416 118.839 4.891 118.907 5.361 L 137.048 130.581 C 137.163 131.388 137.861 131.987 138.684 131.986 L 199.478 131.986 C 200.322 131.988 201.03 131.357 201.119 130.526 L 212.841 23.338 C 213.003 21.837 215.202 21.827 215.369 23.338 C 218.651 53.047 227.082 130.512 227.082 130.512 C 227.175 131.341 227.881 131.972 228.722 131.972 L 289.517 131.972 C 290.339 131.972 291.041 131.373 291.158 130.572 L 309.317 5.37 C 309.384 4.901 309.243 4.426 308.93 4.067 C 308.618 3.709 308.164 3.502 307.685 3.5 Z M 110.29 3.491 L 1.655 3.491 C 0.741 3.491 0 4.225 0 5.13 L 0 32.279 C 0 33.181 0.744 33.918 1.655 33.918 L 35.445 33.918 C 36.226 33.918 36.858 34.54 36.858 35.314 L 36.858 130.351 C 36.858 131.258 37.597 131.991 38.508 131.991 L 73.32 131.991 C 74.231 131.991 74.97 131.254 74.97 130.351 L 74.97 35.295 C 74.97 34.522 75.602 33.9 76.383 33.9 L 110.29 33.9 C 111.201 33.9 111.944 33.163 111.944 32.26 L 111.944 5.13 C 111.942 4.227 111.202 3.495 110.29 3.495 Z M 402.591 38.58 C 406.123 33.886 410.738 30.653 416.534 29.386 C 423.85 27.797 430.878 28.525 437.324 32.592 C 441.749 35.388 444.728 39.39 446.797 44.102 C 447.215 45.056 447.731 46.497 448.154 47.713 C 448.331 48.222 448.815 48.563 449.358 48.561 C 461.145 48.552 474.228 48.561 486.09 48.552 C 486.922 48.552 487.531 47.769 487.317 46.972 C 486.999 45.727 486.653 44.489 486.28 43.259 C 483.975 35.779 480.726 28.755 475.79 22.578 C 468.107 12.965 458.268 6.586 446.411 3.154 C 438.063 0.736 429.539 -0.157 420.866 0.022 C 413.085 0.184 405.468 1.298 398.133 3.878 C 377.548 11.109 364.39 25.245 358.659 46.069 C 356.86 52.61 356.167 59.27 356.214 65.995 C 356.167 72.715 356.865 79.38 358.659 85.916 C 364.39 106.745 377.552 120.881 398.133 128.112 C 405.477 130.692 413.085 131.806 420.866 131.967 C 429.534 132.143 438.063 131.254 446.411 128.835 C 458.263 125.404 468.107 119.024 475.79 109.407 C 480.726 103.235 483.975 96.211 486.28 88.726 C 486.657 87.524 486.987 86.271 487.317 85.018 C 487.418 84.64 487.336 84.238 487.096 83.929 C 486.856 83.619 486.484 83.438 486.09 83.438 C 474.228 83.438 461.145 83.438 449.358 83.424 C 448.815 83.422 448.331 83.763 448.154 84.272 C 447.735 85.492 447.219 86.939 446.797 87.887 C 444.728 92.59 441.749 96.602 437.324 99.398 C 430.878 103.465 423.845 104.188 416.534 102.604 C 410.734 101.342 406.123 98.104 402.591 93.41 C 397.799 87.045 395.898 79.675 395.224 71.914 C 394.878 67.972 394.878 64.008 395.224 60.067 C 395.888 52.306 397.789 44.931 402.591 38.566 Z M 351.757 3.491 L 317.056 3.491 C 316.144 3.493 315.406 4.227 315.406 5.13 L 315.406 130.351 C 315.406 131.258 316.145 131.991 317.056 131.991 L 351.757 131.991 C 352.668 131.991 353.411 131.254 353.411 130.351 L 353.411 5.13 C 353.409 4.227 352.669 3.495 351.757 3.495 Z M 585.369 3.491 L 492.462 3.491 C 491.548 3.491 490.807 4.225 490.807 5.13 L 490.807 130.351 C 490.807 131.258 491.546 131.991 492.462 131.991 L 585.364 131.991 C 586.275 131.991 587.019 131.254 587.019 130.351 L 587.019 103.166 C 587.019 102.26 586.278 101.526 585.364 101.526 L 530.249 101.526 C 529.471 101.526 528.839 100.902 528.836 100.13 L 528.836 83.18 C 528.836 82.406 529.468 81.78 530.249 81.78 L 582.938 81.78 C 583.849 81.78 584.588 81.048 584.588 80.145 L 584.588 52.946 C 584.589 52.511 584.416 52.094 584.106 51.787 C 583.796 51.479 583.376 51.306 582.938 51.306 L 530.254 51.306 C 529.88 51.307 529.52 51.161 529.255 50.899 C 528.99 50.637 528.841 50.281 528.841 49.911 L 528.841 35.295 C 528.841 34.522 529.473 33.9 530.254 33.9 L 585.364 33.9 C 586.275 33.9 587.019 33.163 587.019 32.26 L 587.019 5.13 C 587.016 4.227 586.276 3.495 585.364 3.495 L 585.369 3.495 Z M 624.774 3.491 C 616.307 3.508 609.449 10.305 609.431 18.695 C 609.431 27.046 616.305 33.895 624.774 33.895 C 633.238 33.878 640.096 27.083 640.116 18.695 C 640.116 10.344 633.2 3.495 624.774 3.495 Z M 624.773 30.56 C 618.167 30.545 612.816 25.242 612.8 18.695 C 612.813 12.141 618.159 6.824 624.773 6.789 C 631.401 6.806 636.77 12.127 636.788 18.695 C 636.77 25.257 631.395 30.566 624.773 30.56 Z\" fill=\"rgb(192, 202, 201)\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 280.029 57.824\" overflow=\"visible\"><path d=\"M 134.718 1.527 L 120.7 1.527 C 120.337 1.528 120.03 1.794 119.982 2.15 L 113.119 53.178 L 113.071 53.178 L 106.962 2.161 C 106.918 1.8 106.61 1.528 106.243 1.529 L 81.201 1.529 C 80.837 1.536 80.532 1.803 80.48 2.161 C 80.48 2.161 74.384 53.077 74.341 53.075 L 67.471 2.15 C 67.423 1.795 67.117 1.529 66.754 1.529 L 52.731 1.529 C 52.521 1.529 52.321 1.619 52.184 1.775 C 52.046 1.932 51.984 2.14 52.014 2.346 L 59.961 57.205 C 60.012 57.559 60.318 57.821 60.678 57.821 L 87.312 57.821 C 87.682 57.822 87.992 57.545 88.031 57.181 L 93.166 10.222 C 93.238 9.564 94.201 9.56 94.274 10.222 C 95.712 23.238 99.405 57.175 99.405 57.175 C 99.446 57.538 99.756 57.815 100.124 57.815 L 126.758 57.815 C 127.119 57.815 127.426 57.552 127.477 57.201 L 135.433 2.35 C 135.462 2.145 135.4 1.937 135.263 1.78 C 135.126 1.622 134.927 1.532 134.718 1.531 Z M 48.318 1.527 L 0.725 1.527 C 0.325 1.527 0 1.849 0 2.245 L 0 14.139 C 0 14.534 0.326 14.857 0.725 14.857 L 15.528 14.857 C 15.87 14.857 16.147 15.13 16.147 15.469 L 16.147 57.104 C 16.147 57.502 16.471 57.823 16.87 57.823 L 32.122 57.823 C 32.521 57.823 32.845 57.5 32.845 57.104 L 32.845 15.461 C 32.845 15.122 33.121 14.849 33.464 14.849 L 48.318 14.849 C 48.717 14.849 49.043 14.526 49.043 14.131 L 49.043 2.245 C 49.042 1.849 48.718 1.529 48.318 1.529 Z M 176.138 16.902 C 177.685 14.845 179.707 13.429 182.246 12.874 C 185.451 12.178 188.53 12.497 191.354 14.278 C 193.293 15.503 194.598 17.257 195.504 19.321 C 195.688 19.739 195.914 20.371 196.099 20.903 C 196.176 21.126 196.388 21.275 196.626 21.275 C 201.79 21.271 207.522 21.275 212.719 21.271 C 213.083 21.271 213.35 20.927 213.256 20.578 C 213.117 20.033 212.966 19.491 212.802 18.952 C 211.792 15.675 210.369 12.598 208.206 9.892 C 204.84 5.68 200.53 2.885 195.335 1.382 C 191.678 0.323 187.944 -0.069 184.144 0.01 C 180.735 0.08 177.398 0.569 174.185 1.699 C 165.166 4.867 159.402 11.06 156.891 20.183 C 156.103 23.048 155.8 25.966 155.82 28.912 C 155.8 31.857 156.105 34.776 156.891 37.64 C 159.402 46.765 165.168 52.958 174.185 56.126 C 177.402 57.256 180.735 57.744 184.144 57.815 C 187.942 57.892 191.678 57.502 195.335 56.443 C 200.528 54.939 204.84 52.145 208.206 47.931 C 210.369 45.227 211.792 42.15 212.802 38.871 C 212.967 38.344 213.112 37.795 213.256 37.246 C 213.301 37.081 213.265 36.905 213.159 36.769 C 213.054 36.634 212.891 36.554 212.719 36.554 C 207.522 36.554 201.79 36.554 196.626 36.548 C 196.388 36.547 196.176 36.697 196.099 36.919 C 195.916 37.454 195.69 38.088 195.504 38.504 C 194.598 40.564 193.293 42.321 191.354 43.546 C 188.53 45.328 185.449 45.645 182.246 44.951 C 179.705 44.398 177.685 42.979 176.138 40.923 C 174.038 38.134 173.205 34.906 172.91 31.505 C 172.759 29.779 172.759 28.042 172.91 26.315 C 173.201 22.915 174.034 19.684 176.138 16.896 Z M 153.894 1.527 L 138.692 1.527 C 138.292 1.528 137.969 1.849 137.969 2.245 L 137.969 57.104 C 137.969 57.502 138.293 57.823 138.692 57.823 L 153.894 57.823 C 154.293 57.823 154.619 57.5 154.619 57.104 L 154.619 2.245 C 154.618 1.849 154.294 1.529 153.894 1.529 Z M 256.123 1.527 L 215.42 1.527 C 215.02 1.527 214.696 1.849 214.696 2.245 L 214.696 57.104 C 214.696 57.502 215.019 57.823 215.42 57.823 L 256.121 57.823 C 256.52 57.823 256.846 57.5 256.846 57.104 L 256.846 45.195 C 256.846 44.798 256.521 44.476 256.121 44.476 L 231.975 44.476 C 231.634 44.476 231.357 44.203 231.356 43.865 L 231.356 36.439 C 231.356 36.1 231.633 35.825 231.975 35.825 L 255.058 35.825 C 255.457 35.825 255.781 35.505 255.781 35.109 L 255.781 23.193 C 255.781 23.003 255.705 22.82 255.57 22.685 C 255.434 22.551 255.25 22.475 255.058 22.475 L 231.977 22.475 C 231.813 22.475 231.656 22.411 231.54 22.297 C 231.423 22.182 231.358 22.026 231.358 21.864 L 231.358 15.461 C 231.358 15.122 231.635 14.849 231.977 14.849 L 256.121 14.849 C 256.52 14.849 256.846 14.526 256.846 14.131 L 256.846 2.245 C 256.845 1.849 256.52 1.529 256.121 1.529 L 256.123 1.529 Z M 273.307 1.527 C 269.598 1.535 266.593 4.512 266.585 8.188 C 266.585 11.847 269.597 14.847 273.307 14.847 C 277.015 14.839 280.02 11.863 280.029 8.188 C 280.029 4.53 276.999 1.529 273.307 1.529 Z M 273.305 13.384 C 270.411 13.377 268.066 11.054 268.059 8.186 C 268.065 5.314 270.407 2.985 273.305 2.97 C 276.209 2.977 278.561 5.308 278.569 8.186 C 278.561 11.061 276.206 13.386 273.305 13.384 Z\" fill=\"rgb(192, 202, 201)\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 440.163 90.727\" overflow=\"visible\"><path d=\"M 211.574 2.399 L 189.572 2.399 C 189.002 2.401 188.521 2.818 188.444 3.378 L 177.673 83.439 L 177.597 83.439 L 168.009 3.394 C 167.941 2.828 167.456 2.402 166.88 2.403 L 127.576 2.403 C 127.004 2.414 126.526 2.833 126.444 3.394 C 126.444 3.394 116.875 83.281 116.808 83.277 L 106.025 3.378 C 105.95 2.819 105.469 2.402 104.9 2.403 L 82.889 2.403 C 82.56 2.402 82.247 2.543 82.031 2.789 C 81.815 3.035 81.718 3.362 81.764 3.685 L 94.238 89.758 C 94.318 90.313 94.797 90.725 95.363 90.724 L 137.167 90.724 C 137.747 90.726 138.235 90.292 138.295 89.72 L 146.356 16.042 C 146.467 15.01 147.979 15.004 148.094 16.042 C 150.351 36.463 156.148 89.711 156.148 89.711 C 156.212 90.281 156.698 90.715 157.276 90.715 L 199.08 90.715 C 199.646 90.715 200.129 90.303 200.209 89.752 L 212.695 3.691 C 212.742 3.369 212.645 3.042 212.43 2.796 C 212.215 2.549 211.902 2.407 211.574 2.406 Z M 75.838 2.399 L 1.138 2.399 C 0.509 2.399 0 2.904 0 3.527 L 0 22.188 C 0 22.808 0.511 23.315 1.138 23.315 L 24.373 23.315 C 24.91 23.315 25.344 23.742 25.344 24.274 L 25.344 89.6 C 25.344 90.224 25.853 90.727 26.479 90.727 L 50.417 90.727 C 51.044 90.727 51.552 90.221 51.552 89.6 L 51.552 24.261 C 51.552 23.729 51.987 23.302 52.523 23.302 L 75.838 23.302 C 76.465 23.302 76.976 22.795 76.976 22.175 L 76.976 3.527 C 76.974 2.905 76.466 2.403 75.838 2.403 Z M 276.833 26.519 C 279.262 23.292 282.436 21.07 286.421 20.199 C 291.452 19.107 296.284 19.607 300.717 22.403 C 303.76 24.325 305.808 27.076 307.231 30.315 C 307.518 30.97 307.873 31.961 308.164 32.797 C 308.286 33.147 308.618 33.381 308.992 33.38 C 317.097 33.373 326.094 33.38 334.25 33.373 C 334.822 33.373 335.241 32.835 335.094 32.287 C 334.875 31.432 334.637 30.581 334.381 29.735 C 332.796 24.594 330.562 19.765 327.167 15.52 C 321.884 8.912 315.118 4.527 306.965 2.168 C 301.225 0.506 295.364 -0.108 289.4 0.015 C 284.05 0.126 278.812 0.892 273.768 2.665 C 259.613 7.636 250.565 17.353 246.624 31.667 C 245.388 36.163 244.911 40.741 244.943 45.363 C 244.911 49.983 245.391 54.564 246.624 59.057 C 250.565 73.374 259.616 83.091 273.768 88.061 C 278.818 89.834 284.05 90.601 289.4 90.711 C 295.361 90.832 301.225 90.221 306.965 88.558 C 315.115 86.2 321.884 81.815 327.167 75.204 C 330.562 70.961 332.796 66.133 334.381 60.988 C 334.64 60.162 334.867 59.3 335.094 58.439 C 335.163 58.18 335.107 57.903 334.942 57.69 C 334.776 57.478 334.521 57.353 334.25 57.353 C 326.094 57.353 317.097 57.353 308.992 57.344 C 308.618 57.343 308.286 57.577 308.164 57.926 C 307.876 58.765 307.522 59.76 307.231 60.412 C 305.808 63.644 303.76 66.402 300.717 68.324 C 296.284 71.12 291.449 71.617 286.421 70.527 C 282.433 69.66 279.262 67.434 276.833 64.208 C 273.538 59.832 272.231 54.767 271.768 49.432 C 271.53 46.722 271.53 43.998 271.768 41.289 C 272.225 35.954 273.532 30.885 276.833 26.509 Z M 241.878 2.399 L 218.017 2.399 C 217.39 2.401 216.882 2.905 216.882 3.527 L 216.882 89.6 C 216.882 90.224 217.39 90.727 218.017 90.727 L 241.878 90.727 C 242.505 90.727 243.016 90.221 243.016 89.6 L 243.016 3.527 C 243.014 2.905 242.506 2.403 241.878 2.403 Z M 402.517 2.399 L 338.632 2.399 C 338.003 2.399 337.494 2.904 337.494 3.527 L 337.494 89.6 C 337.494 90.224 338.002 90.727 338.632 90.727 L 402.514 90.727 C 403.14 90.727 403.651 90.221 403.651 89.6 L 403.651 70.914 C 403.651 70.291 403.142 69.787 402.514 69.787 L 364.615 69.787 C 364.08 69.787 363.645 69.358 363.644 68.827 L 363.644 57.176 C 363.644 56.644 364.078 56.214 364.615 56.214 L 400.845 56.214 C 401.472 56.214 401.98 55.71 401.98 55.09 L 401.98 36.394 C 401.981 36.095 401.862 35.808 401.649 35.597 C 401.436 35.385 401.147 35.267 400.845 35.267 L 364.618 35.267 C 364.361 35.267 364.114 35.167 363.932 34.987 C 363.749 34.807 363.647 34.562 363.647 34.307 L 363.647 24.261 C 363.647 23.729 364.082 23.302 364.618 23.302 L 402.514 23.302 C 403.14 23.302 403.651 22.795 403.651 22.175 L 403.651 3.527 C 403.65 2.905 403.141 2.403 402.514 2.403 L 402.517 2.403 Z M 429.613 2.399 C 423.791 2.412 419.075 7.084 419.063 12.851 C 419.063 18.591 423.79 23.299 429.613 23.299 C 435.433 23.287 440.149 18.616 440.163 12.851 C 440.163 7.111 435.407 2.403 429.613 2.403 Z M 429.613 21.007 C 425.07 20.996 421.39 17.351 421.38 12.851 C 421.389 8.345 425.065 4.691 429.613 4.666 C 434.171 4.678 437.862 8.336 437.875 12.851 C 437.862 17.361 434.166 21.01 429.613 21.007 Z\" fill=\"rgb(192, 202, 201)\"></path></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1x57yy8\",layoutDependency:layoutDependency,layoutId:\"Y0csVGy4P\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 190.443 128.495\" overflow=\"visible\"><path d=\"M 188.795 0 L 156.799 0 C 155.97 0.002 155.27 0.609 155.158 1.423 L 139.495 117.897 L 139.383 117.897 L 125.44 1.446 C 125.341 0.623 124.636 0.003 123.799 0.005 L 66.639 0.005 C 65.809 0.021 65.112 0.631 64.994 1.446 C 64.994 1.446 51.078 117.666 50.981 117.662 L 35.299 1.423 C 35.189 0.611 34.49 0.004 33.662 0.005 L 1.653 0.005 C 1.174 0.004 0.719 0.209 0.405 0.567 C 0.091 0.925 -0.051 1.401 0.016 1.87 L 18.157 127.09 C 18.273 127.897 18.971 128.496 19.793 128.495 L 80.588 128.495 C 81.431 128.497 82.14 127.867 82.228 127.035 L 93.95 19.848 C 94.113 18.346 96.311 18.337 96.479 19.848 C 99.76 49.557 108.191 127.021 108.191 127.021 C 108.284 127.85 108.991 128.481 109.832 128.481 L 170.626 128.481 C 171.449 128.481 172.151 127.883 172.267 127.081 L 190.426 1.879 C 190.494 1.41 190.353 0.935 190.04 0.577 C 189.727 0.218 189.273 0.011 188.795 0.009 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83.433 56.294\" overflow=\"visible\"><path d=\"M 82.711 0 L 68.694 0 C 68.331 0.001 68.024 0.267 67.975 0.624 L 61.113 51.651 L 61.064 51.651 L 54.955 0.634 C 54.912 0.273 54.603 0.002 54.236 0.002 L 29.195 0.002 C 28.831 0.009 28.526 0.277 28.474 0.634 C 28.474 0.634 22.377 51.55 22.335 51.548 L 15.464 0.624 C 15.416 0.268 15.11 0.002 14.748 0.002 L 0.724 0.002 C 0.514 0.002 0.315 0.092 0.177 0.248 C 0.04 0.405 -0.022 0.614 0.007 0.819 L 7.955 55.678 C 8.005 56.032 8.311 56.294 8.671 56.294 L 35.305 56.294 C 35.675 56.295 35.986 56.018 36.024 55.654 L 41.16 8.695 C 41.231 8.037 42.194 8.033 42.267 8.695 C 43.705 21.711 47.399 55.648 47.399 55.648 C 47.439 56.011 47.749 56.288 48.117 56.288 L 74.752 56.288 C 75.112 56.288 75.419 56.025 75.47 55.674 L 83.426 0.823 C 83.455 0.618 83.394 0.41 83.257 0.253 C 83.12 0.096 82.921 0.005 82.711 0.004 Z\" fill=\"transparent\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 130.954 88.325\" overflow=\"visible\"><path d=\"M 129.821 0 L 107.82 0 C 107.25 0.001 106.768 0.419 106.691 0.978 L 95.921 81.039 L 95.844 81.039 L 86.256 0.994 C 86.188 0.428 85.703 0.002 85.128 0.003 L 45.823 0.003 C 45.252 0.014 44.773 0.434 44.692 0.994 C 44.692 0.994 35.123 80.881 35.056 80.878 L 24.272 0.978 C 24.197 0.42 23.716 0.003 23.147 0.003 L 1.136 0.003 C 0.807 0.003 0.494 0.144 0.278 0.39 C 0.062 0.636 -0.035 0.963 0.011 1.285 L 12.485 87.359 C 12.565 87.914 13.045 88.325 13.61 88.325 L 55.414 88.325 C 55.995 88.326 56.482 87.893 56.543 87.321 L 64.603 13.643 C 64.715 12.611 66.227 12.604 66.342 13.643 C 68.598 34.064 74.396 87.311 74.396 87.311 C 74.46 87.881 74.945 88.315 75.524 88.315 L 117.328 88.315 C 117.893 88.315 118.376 87.904 118.456 87.353 L 130.943 1.292 C 130.989 0.969 130.892 0.643 130.677 0.396 C 130.462 0.15 130.15 0.008 129.821 0.006 Z\" fill=\"transparent\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-113qlbh\",layoutDependency:layoutDependency,layoutId:\"JXWKWeGul\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 111.944 128.5\" overflow=\"visible\"><path d=\"M 110.29 0 L 1.655 0 C 0.741 0 0 0.734 0 1.64 L 0 28.788 C 0 29.691 0.744 30.428 1.655 30.428 L 35.445 30.428 C 36.226 30.428 36.858 31.049 36.858 31.823 L 36.858 126.86 C 36.858 127.767 37.597 128.5 38.508 128.5 L 73.32 128.5 C 74.231 128.5 74.97 127.763 74.97 126.86 L 74.97 31.805 C 74.97 31.031 75.602 30.409 76.383 30.409 L 110.29 30.409 C 111.201 30.409 111.944 29.672 111.944 28.769 L 111.944 1.64 C 111.942 0.736 111.202 0.005 110.29 0.005 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49.043 56.296\" overflow=\"visible\"><path d=\"M 48.318 0 L 0.725 0 C 0.325 0 0 0.322 0 0.718 L 0 12.612 C 0 13.007 0.326 13.33 0.725 13.33 L 15.528 13.33 C 15.87 13.33 16.147 13.603 16.147 13.942 L 16.147 55.577 C 16.147 55.975 16.471 56.296 16.87 56.296 L 32.122 56.296 C 32.521 56.296 32.845 55.973 32.845 55.577 L 32.845 13.934 C 32.845 13.595 33.121 13.322 33.464 13.322 L 48.318 13.322 C 48.717 13.322 49.043 12.999 49.043 12.604 L 49.043 0.718 C 49.042 0.322 48.718 0.002 48.318 0.002 Z\" fill=\"transparent\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 76.976 88.328\" overflow=\"visible\"><path d=\"M 75.838 0 L 1.138 0 C 0.509 0 0 0.505 0 1.127 L 0 19.788 C 0 20.409 0.511 20.915 1.138 20.915 L 24.373 20.915 C 24.91 20.915 25.344 21.343 25.344 21.875 L 25.344 87.201 C 25.344 87.824 25.853 88.328 26.479 88.328 L 50.417 88.328 C 51.044 88.328 51.552 87.821 51.552 87.201 L 51.552 21.862 C 51.552 21.33 51.987 20.903 52.523 20.903 L 75.838 20.903 C 76.465 20.903 76.976 20.396 76.976 19.775 L 76.976 1.127 C 76.974 0.506 76.466 0.003 75.838 0.003 Z\" fill=\"transparent\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8numtb\",layoutDependency:layoutDependency,layoutId:\"jmburX89u\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 131.148 131.989\" overflow=\"visible\"><path d=\"M 46.379 38.58 C 49.911 33.886 54.527 30.653 60.322 29.386 C 67.638 27.797 74.666 28.525 81.112 32.592 C 85.537 35.388 88.517 39.39 90.585 44.102 C 91.003 45.056 91.519 46.497 91.942 47.713 C 92.119 48.222 92.603 48.563 93.146 48.561 C 104.933 48.552 118.017 48.561 129.878 48.552 C 130.71 48.552 131.319 47.769 131.105 46.972 C 130.787 45.727 130.442 44.489 130.069 43.259 C 127.763 35.779 124.514 28.755 119.578 22.578 C 111.895 12.965 102.056 6.586 90.199 3.154 C 81.851 0.736 73.327 -0.157 64.654 0.022 C 56.874 0.184 49.256 1.298 41.921 3.878 C 21.336 11.109 8.178 25.245 2.447 46.069 C 0.648 52.61 -0.044 59.27 0.002 65.995 C -0.044 72.715 0.653 79.38 2.447 85.916 C 8.178 106.745 21.341 120.881 41.921 128.112 C 49.265 130.692 56.874 131.806 64.654 131.967 C 73.323 132.143 81.851 131.254 90.199 128.835 C 102.051 125.404 111.895 119.024 119.578 109.407 C 124.514 103.235 127.763 96.211 130.069 88.726 C 130.445 87.524 130.775 86.271 131.105 85.018 C 131.206 84.64 131.124 84.238 130.884 83.929 C 130.644 83.619 130.272 83.438 129.878 83.438 C 118.017 83.438 104.933 83.438 93.146 83.424 C 92.603 83.422 92.119 83.763 91.942 84.272 C 91.524 85.492 91.008 86.939 90.585 87.887 C 88.517 92.59 85.537 96.602 81.112 99.398 C 74.666 103.465 67.634 104.188 60.322 102.604 C 54.522 101.342 49.911 98.104 46.379 93.41 C 41.587 87.045 39.686 79.675 39.012 71.914 C 38.666 67.972 38.666 64.008 39.012 60.067 C 39.677 52.306 41.578 44.931 46.379 38.566 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57.456 57.824\" overflow=\"visible\"><path d=\"M 20.319 16.902 C 21.866 14.845 23.888 13.429 26.427 12.874 C 29.632 12.178 32.711 12.497 35.535 14.278 C 37.474 15.503 38.779 17.257 39.685 19.321 C 39.869 19.739 40.095 20.371 40.28 20.903 C 40.357 21.126 40.569 21.275 40.807 21.275 C 45.971 21.271 51.703 21.275 56.9 21.271 C 57.264 21.271 57.531 20.927 57.437 20.578 C 57.298 20.033 57.147 19.491 56.983 18.952 C 55.973 15.675 54.55 12.598 52.387 9.892 C 49.021 5.68 44.711 2.885 39.516 1.382 C 35.859 0.323 32.125 -0.069 28.325 0.01 C 24.916 0.08 21.579 0.569 18.366 1.699 C 9.347 4.867 3.583 11.06 1.072 20.183 C 0.284 23.048 -0.019 25.966 0.001 28.912 C -0.019 31.857 0.286 34.776 1.072 37.64 C 3.583 46.765 9.349 52.958 18.366 56.126 C 21.583 57.256 24.916 57.744 28.325 57.815 C 32.123 57.892 35.859 57.502 39.516 56.443 C 44.709 54.939 49.021 52.145 52.387 47.931 C 54.55 45.227 55.973 42.15 56.983 38.871 C 57.148 38.344 57.293 37.795 57.437 37.246 C 57.481 37.081 57.446 36.905 57.34 36.769 C 57.235 36.634 57.072 36.554 56.9 36.554 C 51.703 36.554 45.971 36.554 40.807 36.548 C 40.569 36.547 40.357 36.697 40.28 36.919 C 40.097 37.454 39.871 38.088 39.685 38.504 C 38.779 40.564 37.474 42.321 35.535 43.546 C 32.711 45.328 29.63 45.645 26.427 44.951 C 23.886 44.398 21.866 42.979 20.319 40.923 C 18.219 38.134 17.386 34.906 17.091 31.505 C 16.94 29.779 16.94 28.042 17.091 26.315 C 17.382 22.915 18.215 19.684 20.319 16.896 Z\" fill=\"transparent\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 90.181 90.726\" overflow=\"visible\"><path d=\"M 31.891 26.519 C 34.32 23.292 37.494 21.07 41.48 20.199 C 46.51 19.107 51.342 19.607 55.775 22.403 C 58.818 24.325 60.867 27.076 62.289 30.315 C 62.576 30.97 62.931 31.961 63.222 32.797 C 63.344 33.147 63.677 33.381 64.05 33.38 C 72.155 33.373 81.152 33.38 89.308 33.373 C 89.88 33.373 90.299 32.835 90.152 32.287 C 89.933 31.432 89.696 30.581 89.439 29.735 C 87.854 24.594 85.62 19.765 82.226 15.52 C 76.943 8.912 70.177 4.527 62.024 2.168 C 56.283 0.506 50.422 -0.108 44.458 0.015 C 39.108 0.126 33.87 0.892 28.826 2.665 C 14.671 7.636 5.623 17.353 1.683 31.667 C 0.446 36.163 -0.03 40.741 0.001 45.363 C -0.03 49.983 0.449 54.564 1.683 59.057 C 5.623 73.374 14.674 83.091 28.826 88.061 C 33.876 89.834 39.108 90.601 44.458 90.711 C 50.419 90.832 56.283 90.221 62.024 88.558 C 70.173 86.2 76.943 81.815 82.226 75.204 C 85.62 70.961 87.854 66.133 89.439 60.988 C 89.698 60.162 89.925 59.3 90.152 58.439 C 90.221 58.18 90.165 57.903 90 57.69 C 89.835 57.478 89.579 57.353 89.308 57.353 C 81.152 57.353 72.155 57.353 64.05 57.344 C 63.677 57.343 63.344 57.577 63.222 57.926 C 62.934 58.765 62.58 59.76 62.289 60.412 C 60.867 63.644 58.818 66.402 55.775 68.324 C 51.342 71.12 46.507 71.617 41.48 70.527 C 37.491 69.66 34.32 67.434 31.891 64.208 C 28.596 59.832 27.289 54.767 26.826 49.432 C 26.588 46.722 26.588 43.998 26.826 41.289 C 27.283 35.954 28.59 30.885 31.891 26.509 Z\" fill=\"transparent\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kv1jxl\",layoutDependency:layoutDependency,layoutId:\"hg27AAG8w\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38.006 128.5\" overflow=\"visible\"><path d=\"M 36.351 0 L 1.65 0 C 0.738 0.003 0 0.736 0 1.64 L 0 126.86 C 0 127.767 0.739 128.5 1.65 128.5 L 36.351 128.5 C 37.262 128.5 38.006 127.763 38.006 126.86 L 38.006 1.64 C 38.003 0.736 37.263 0.005 36.351 0.005 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.65 56.296\" overflow=\"visible\"><path d=\"M 15.925 0 L 0.723 0 C 0.323 0.001 0 0.322 0 0.718 L 0 55.577 C 0 55.975 0.324 56.296 0.723 56.296 L 15.925 56.296 C 16.325 56.296 16.65 55.973 16.65 55.577 L 16.65 0.718 C 16.649 0.322 16.325 0.002 15.925 0.002 Z\" fill=\"transparent\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26.134 88.328\" overflow=\"visible\"><path d=\"M 24.996 0 L 1.135 0 C 0.507 0.002 0 0.506 0 1.127 L 0 87.201 C 0 87.824 0.508 88.328 1.135 88.328 L 24.996 88.328 C 25.623 88.328 26.134 87.821 26.134 87.201 L 26.134 1.127 C 26.132 0.506 25.623 0.003 24.996 0.003 Z\" fill=\"transparent\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1psbnrz\",layoutDependency:layoutDependency,layoutId:\"vnbn8Um_x\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 96.211 128.5\" overflow=\"visible\"><path d=\"M 94.561 0 L 1.655 0 C 0.741 0 0 0.734 0 1.64 L 0 126.86 C 0 127.767 0.739 128.5 1.655 128.5 L 94.557 128.5 C 95.468 128.5 96.211 127.763 96.211 126.86 L 96.211 99.675 C 96.211 98.77 95.47 98.035 94.557 98.035 L 39.442 98.035 C 38.663 98.035 38.032 97.411 38.029 96.64 L 38.029 79.689 C 38.029 78.916 38.661 78.289 39.442 78.289 L 92.13 78.289 C 93.042 78.289 93.78 77.557 93.78 76.654 L 93.78 49.455 C 93.782 49.021 93.608 48.604 93.299 48.296 C 92.989 47.988 92.569 47.816 92.13 47.816 L 39.447 47.816 C 39.072 47.817 38.713 47.67 38.448 47.408 C 38.183 47.146 38.034 46.791 38.034 46.42 L 38.034 31.805 C 38.034 31.031 38.666 30.409 39.447 30.409 L 94.557 30.409 C 95.468 30.409 96.211 29.672 96.211 28.769 L 96.211 1.64 C 96.209 0.736 95.469 0.005 94.557 0.005 L 94.561 0.005 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 42.15 56.296\" overflow=\"visible\"><path d=\"M 41.427 0 L 0.725 0 C 0.325 0 0 0.322 0 0.718 L 0 55.577 C 0 55.975 0.324 56.296 0.725 56.296 L 41.425 56.296 C 41.824 56.296 42.15 55.973 42.15 55.577 L 42.15 43.668 C 42.15 43.271 41.826 42.949 41.425 42.949 L 17.28 42.949 C 16.938 42.949 16.662 42.676 16.661 42.338 L 16.661 34.912 C 16.661 34.573 16.937 34.299 17.28 34.299 L 40.362 34.299 C 40.762 34.299 41.085 33.978 41.085 33.582 L 41.085 21.666 C 41.086 21.476 41.01 21.293 40.874 21.159 C 40.739 21.024 40.554 20.948 40.362 20.948 L 17.282 20.948 C 17.118 20.949 16.96 20.884 16.844 20.77 C 16.728 20.655 16.663 20.499 16.663 20.337 L 16.663 13.934 C 16.663 13.595 16.939 13.322 17.282 13.322 L 41.425 13.322 C 41.824 13.322 42.15 12.999 42.15 12.604 L 42.15 0.718 C 42.149 0.322 41.825 0.002 41.425 0.002 L 41.427 0.002 Z\" fill=\"transparent\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66.158 88.328\" overflow=\"visible\"><path d=\"M 65.023 0 L 1.138 0 C 0.509 0 0 0.505 0 1.127 L 0 87.201 C 0 87.824 0.508 88.328 1.138 88.328 L 65.02 88.328 C 65.646 88.328 66.158 87.821 66.158 87.201 L 66.158 68.514 C 66.158 67.892 65.648 67.387 65.02 67.387 L 27.121 67.387 C 26.586 67.387 26.152 66.958 26.15 66.428 L 26.15 54.777 C 26.15 54.245 26.585 53.814 27.121 53.814 L 63.352 53.814 C 63.978 53.814 64.486 53.311 64.486 52.69 L 64.486 33.994 C 64.487 33.696 64.368 33.409 64.155 33.198 C 63.942 32.986 63.653 32.867 63.352 32.867 L 27.125 32.867 C 26.867 32.868 26.62 32.767 26.438 32.587 C 26.256 32.407 26.153 32.163 26.153 31.908 L 26.153 21.862 C 26.153 21.33 26.588 20.903 27.125 20.903 L 65.02 20.903 C 65.646 20.903 66.158 20.396 66.158 19.775 L 66.158 1.127 C 66.156 0.506 65.647 0.003 65.02 0.003 L 65.023 0.003 Z\" fill=\"transparent\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2i01yu\",layoutDependency:layoutDependency,layoutId:\"uBIcFNVIW\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30.685 30.405\" overflow=\"visible\"><path d=\"M 15.343 0 C 6.877 0.018 0.018 6.815 0 15.205 C 0 23.555 6.874 30.405 15.343 30.405 C 23.807 30.387 30.665 23.593 30.685 15.205 C 30.685 6.854 23.769 0.005 15.343 0.005 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.443 13.32\" overflow=\"visible\"><path d=\"M 6.722 0 C 3.013 0.008 0.008 2.986 0 6.661 C 0 10.32 3.012 13.32 6.722 13.32 C 10.43 13.313 13.434 10.336 13.443 6.661 C 13.443 3.003 10.413 0.002 6.722 0.002 Z\" fill=\"transparent\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.1 20.899\" overflow=\"visible\"><path d=\"M 10.55 0 C 4.729 0.012 0.012 4.684 0 10.451 C 0 16.191 4.727 20.899 10.55 20.899 C 16.37 20.887 21.086 16.217 21.1 10.451 C 21.1 4.711 16.344 0.003 10.55 0.003 Z\" fill=\"transparent\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lcz2od\",layoutDependency:layoutDependency,layoutId:\"VPQXHz8C3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.988 23.772\" overflow=\"visible\"><path d=\"M 11.973 23.772 C 5.367 23.757 0.015 18.453 0 11.907 C 0.013 5.352 5.359 0.035 11.973 0 C 18.601 0.018 23.97 5.338 23.988 11.907 C 23.97 18.468 18.594 23.777 11.973 23.772 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.509 10.414\" overflow=\"visible\"><path d=\"M 5.245 10.414 C 2.351 10.408 0.007 8.084 0 5.216 C 0.006 2.345 2.348 0.016 5.245 0 C 8.149 0.008 10.501 2.339 10.509 5.216 C 10.501 8.091 8.146 10.417 5.245 10.414 Z\" fill=\"transparent\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.495 16.34\" overflow=\"visible\"><path d=\"M 8.233 16.34 C 3.69 16.33 0.011 12.684 0 8.184 C 0.009 3.679 3.685 0.024 8.233 0 C 12.791 0.012 16.482 3.669 16.495 8.184 C 16.482 12.695 12.786 16.344 8.233 16.34 Z\" fill=\"transparent\"></path></svg>'}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-115zrrz\",layoutDependency:layoutDependency,layoutId:\"k374eGB6_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.602 18.332\" overflow=\"visible\"><path d=\"M 8.687 15.545 C 5.619 15.545 3.765 12.971 3.765 9.161 C 3.765 5.352 5.54 2.824 8.473 2.824 C 10.848 2.824 12.452 4.15 12.926 6.849 L 16.467 6.849 C 15.863 2.695 12.624 0 8.389 0 C 3.416 0 0 4.067 0 9.166 C 0 14.26 3.458 18.332 8.473 18.332 C 12.754 18.332 15.947 15.67 16.602 11.561 L 13.061 11.561 C 12.624 14.09 10.983 15.545 8.696 15.545 Z\" fill=\"rgb(192, 202, 201)\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.273 8.031\" overflow=\"visible\"><path d=\"M 3.806 6.81 C 2.462 6.81 1.649 5.682 1.649 4.014 C 1.649 2.345 2.427 1.237 3.712 1.237 C 4.753 1.237 5.455 1.818 5.663 3.001 L 7.214 3.001 C 6.95 1.18 5.53 0 3.675 0 C 1.497 0 0 1.782 0 4.016 C 0 6.247 1.515 8.031 3.712 8.031 C 5.587 8.031 6.986 6.865 7.273 5.065 L 5.722 5.065 C 5.53 6.173 4.812 6.81 3.81 6.81 Z\" fill=\"rgb(192, 202, 201)\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.416 12.601\" overflow=\"visible\"><path d=\"M 5.973 10.686 C 3.864 10.686 2.589 8.916 2.589 6.297 C 2.589 3.679 3.81 1.941 5.826 1.941 C 7.46 1.941 8.562 2.853 8.888 4.708 L 11.324 4.708 C 10.908 1.852 8.68 0 5.769 0 C 2.349 0 0 2.796 0 6.301 C 0 9.802 2.378 12.601 5.826 12.601 C 8.77 12.601 10.966 10.771 11.416 7.947 L 8.981 7.947 C 8.68 9.685 7.552 10.686 5.98 10.686 Z\" fill=\"rgb(192, 202, 201)\"></path></svg>'}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cp0k5c\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"kgQXhg4PG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yxis8k\",layoutDependency:layoutDependency,layoutId:\"VhwrMTH6Z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.9)\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 202, 201))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\"},children:\"Established in 2005, we've dedicated ourselves to crafting \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\"},children:\"impactful and outstanding retail solutions \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\"},children:\"defined by creativity, innovation, speed and an\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\"},children:\"unwavering commitment to excellence in production.\"})]})}),className:\"framer-1vag9qh\",fonts:[\"CUSTOM;Haas Grot Disp Trial 45 Light\"],layoutDependency:layoutDependency,layoutId:\"k737JH77O\",style:{\"--extracted-r6o4lv\":\"rgb(192, 202, 201)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:tYstZgxMP,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.9)\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 202, 201))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.93)\"},children:\"Established in 2005, we've dedicated ourselves to crafting \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.93)\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.93)\"},children:\"impactful and outstanding retail solutions \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.93)\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.93)\"},children:\"defined by creativity, innovation, speed and an\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.93)\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.93)\"},children:\"unwavering commitment to excellence in production.\"})]})})},v6buDZWn1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.75)\",\"--framer-line-height\":\"1.15em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 202, 201))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.8)\"},children:\"Established in 2005, we've dedicated ourselves to crafting \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.8)\"},children:\"impactful and outstanding retail solutions \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.8)\"},children:\"defined by creativity, innovation, speed and an\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.8)\"},children:\"unwavering commitment to excellence in production.\"})]})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:BEfnYsrXd,motionChild:true,nodeId:\"dZOKHSCfZ\",openInNewTab:false,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qy3cbh framer-1kcrt2i\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"dZOKHSCfZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t96wc8-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"FnAZ3rbcF-container\",nodeId:\"FnAZ3rbcF\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(ContactButton,{animationSpeed:.2,animationType:\"spring\",colors:{borderColor:\"rgb(255, 255, 255)\",shapeBackgroundColor:\"rgb(0, 0, 0)\",shapeColor:\"rgb(255, 255, 255)\",textBackgroundColor:\"rgb(255, 255, 255)\",textColor:\"rgb(0, 0, 0)\"},disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.2)\",letterSpacing:\"0.03em\",lineHeight:\"1.5em\"},height:\"100%\",id:\"FnAZ3rbcF\",layout:{borderRadius:1,borderWidth:1,buttonPadding:5,containerHeight:42,shapeSize:10,symbolPositionX:0,symbolPositionY:0},layoutId:\"FnAZ3rbcF\",text:f7wqGWOnh,width:\"100%\",...addPropertyOverrides({pwVtACACX:{font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.1)\",letterSpacing:\"0.03em\",lineHeight:\"1.6em\"},layout:{borderRadius:1,borderWidth:1,buttonPadding:6,containerHeight:40,shapeSize:10,symbolPositionX:0,symbolPositionY:0}},v6buDZWn1:{font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1)\",letterSpacing:\"0.03em\",lineHeight:\"1.7em\"},layout:{borderRadius:1,borderWidth:1,buttonPadding:7,containerHeight:38,shapeSize:10,symbolPositionX:0,symbolPositionY:0}}},baseVariant,gestureVariant)})})})})})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aqv08m\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"sshswFXov\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c4aqb9\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"nDG62sihY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jsmlo6\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"NWv4mQIGE\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9ed6cg\",layoutDependency:layoutDependency,layoutId:\"vH9E5J_xh\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{pwVtACACX:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 58, 56)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({pwVtACACX:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ALf7_LAm5\"},motionChild:true,nodeId:\"GfWZ1Ahhc\",openInNewTab:false,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1b0n7dw framer-1kcrt2i\",\"data-framer-name\":\"Work\",layoutDependency:layoutDependency,layoutId:\"GfWZ1Ahhc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4ie4ls-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"KjVS_AAET-container\",nodeId:\"KjVS_AAET\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:24,height:\"100%\",id:\"KjVS_AAET\",inactiveColors:{lineColor:\"rgb(255, 255, 255)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:p5YjZonzT,layoutId:\"KjVS_AAET\",text:\"WORK\",width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true,fontSize:20},v6buDZWn1:{fontSize:20}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Yknn1XAII\"},motionChild:true,nodeId:\"DBeaBf9jC\",openInNewTab:false,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8vprlf framer-1kcrt2i\",\"data-framer-name\":\"Services\",layoutDependency:layoutDependency,layoutId:\"DBeaBf9jC\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k7bqp6-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"mNdOkTO2c-container\",nodeId:\"mNdOkTO2c\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:24,height:\"100%\",id:\"mNdOkTO2c\",inactiveColors:{lineColor:\"rgb(192, 201, 201)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:FQlp3f0sf,layoutId:\"mNdOkTO2c\",text:\"SERVICES\",width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true,fontSize:20},v6buDZWn1:{fontSize:20}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YqXN0qAeK\"},motionChild:true,nodeId:\"IWsY6w4j7\",openInNewTab:false,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-itiizt framer-1kcrt2i\",\"data-framer-name\":\"About\",layoutDependency:layoutDependency,layoutId:\"IWsY6w4j7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6anuo9-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"eMf6L047Y-container\",nodeId:\"eMf6L047Y\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:24,height:\"100%\",id:\"eMf6L047Y\",inactiveColors:{lineColor:\"rgb(192, 201, 201)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:whMQct4Rx,layoutId:\"eMf6L047Y\",text:\"ABOUT\",width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true,fontSize:20},v6buDZWn1:{fontSize:20}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bnocYeWs4\"},motionChild:true,nodeId:\"uKVZqoCJY\",openInNewTab:false,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vl6qlk framer-1kcrt2i\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"uKVZqoCJY\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-894oyk-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"jYg53RjGq-container\",nodeId:\"jYg53RjGq\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:24,height:\"100%\",id:\"jYg53RjGq\",inactiveColors:{lineColor:\"rgb(192, 201, 201)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:Z_QKIGMAn,layoutId:\"jYg53RjGq\",text:\"CONTACT\",width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true,fontSize:20},v6buDZWn1:{fontSize:20}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rxVrSDxNE\"},motionChild:true,nodeId:\"rJJKV337l\",openInNewTab:false,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-yxu8zc framer-1kcrt2i\",\"data-framer-name\":\"2%\",layoutDependency:layoutDependency,layoutId:\"rJJKV337l\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qigq0j-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"x8gMlJFbP-container\",nodeId:\"x8gMlJFbP\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:24,height:\"100%\",id:\"x8gMlJFbP\",inactiveColors:{lineColor:\"rgb(192, 201, 201)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:Z_QKIGMAn,layoutId:\"x8gMlJFbP\",text:\"2%\",width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true,fontSize:20},v6buDZWn1:{fontSize:20}},baseVariant,gestureVariant)})})})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17vr8wh\",\"data-framer-name\":\"SocialMedia\",layoutDependency:layoutDependency,layoutId:\"uvmL7tdzU\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/fgmeierofficial/\",motionChild:true,nodeId:\"Hk70PwQaf\",openInNewTab:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-a1r5d framer-1kcrt2i\",layoutDependency:layoutDependency,layoutId:\"Hk70PwQaf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hkh3wg-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"t2mizr8j8-container\",nodeId:\"t2mizr8j8\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(AnimatedLink,{animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,height:\"100%\",hoverColor:\"rgb(255, 255, 255)\",iconSize:24,id:\"t2mizr8j8\",layoutId:\"t2mizr8j8\",standardColor:\"rgb(192, 202, 201)\",svgIcon:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/4AnVxhPv7T0JTh7I2fE5wwrZKQ.svg?width=24&height=24\"},\"\"),width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true},v6buDZWn1:{disableHoverOnMobile:true,iconSize:20}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://vimeo.com/user131432227\",motionChild:true,nodeId:\"sI6K4MlRl\",openInNewTab:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18hdp28 framer-1kcrt2i\",layoutDependency:layoutDependency,layoutId:\"sI6K4MlRl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7n623m-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"sL0tuU1cF-container\",nodeId:\"sL0tuU1cF\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(AnimatedLink,{animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,height:\"100%\",hoverColor:\"rgb(255, 255, 255)\",iconSize:24,id:\"sL0tuU1cF\",layoutId:\"sL0tuU1cF\",standardColor:\"rgb(192, 202, 201)\",svgIcon:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/ucflXVY3X6xuGOx9badocNfC2o.svg?width=24&height=24\"},\"\"),width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true},v6buDZWn1:{disableHoverOnMobile:true,iconSize:20}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/fgmeier/mycompany/\",motionChild:true,nodeId:\"AWeDMLrF0\",openInNewTab:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10elzmf framer-1kcrt2i\",layoutDependency:layoutDependency,layoutId:\"AWeDMLrF0\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15d3bub-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"nVgR18Phl-container\",nodeId:\"nVgR18Phl\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(AnimatedLink,{animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,height:\"100%\",hoverColor:\"rgb(255, 255, 255)\",iconSize:24,id:\"nVgR18Phl\",layoutId:\"nVgR18Phl\",standardColor:\"rgb(192, 202, 201)\",svgIcon:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/pbVQklS9pxQoEohqhG54wLDPD4.svg?width=24&height=24\"},\"\"),width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true},v6buDZWn1:{disableHoverOnMobile:true,iconSize:20}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y9ryj2\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"EomjrekJi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xh7qy6\",\"data-border\":true,\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"WPc4jAldR\",style:{\"--border-bottom-width\":\"0.8px\",\"--border-color\":\"rgb(192, 202, 201)\",\"--border-left-width\":\"0.8px\",\"--border-right-width\":\"0.8px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8px\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g46mj9\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"vVuAdqkoY\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(192, 201, 201)\",\"--border-left-width\":\"0.8px\",\"--border-right-width\":\"0.8px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1cejlsd\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"khgH6agml\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 59.977 23.9\" overflow=\"visible\"><g><path d=\"M 0 13.548 C 0 7.833 4.633 3.2 10.348 3.2 C 16.063 3.2 20.695 7.833 20.695 13.548 C 20.695 19.263 16.063 23.895 10.348 23.895 C 4.633 23.895 0 19.263 0 13.548 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 10.4 23.9 L 37.719 23.9\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 21.7 23.872 L 28.859 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 20.5 12.009 L 28.827 0 L 37.554 13.349\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"1.81\" stroke-dasharray=\"\"></path><path d=\"M 37.6 5.8 L 59.977 5.8 L 59.977 23.893 L 37.6 23.893 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 44.1 5.8 L 44.1 23.823\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 70 27.894\" overflow=\"visible\"><g><path d=\"M 0 15.812 C 0 9.142 5.407 3.735 12.077 3.735 C 18.747 3.735 24.154 9.142 24.154 15.812 C 24.154 22.482 18.747 27.889 12.077 27.889 C 5.407 27.889 0 22.482 0 15.812 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 12.138 27.894 L 44.022 27.894\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 25.326 27.861 L 33.682 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 23.926 14.016 L 33.645 0 L 43.829 15.58\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"1.81\" stroke-dasharray=\"\"></path><path d=\"M 43.884 6.769 L 70 6.769 L 70 27.886 L 43.884 27.886 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 51.47 6.769 L 51.47 27.804\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 47.995 19.125\" overflow=\"visible\"><g><path d=\"M 0 10.841 C 0 6.268 3.707 2.561 8.281 2.561 C 12.854 2.561 16.561 6.268 16.561 10.841 C 16.561 15.414 12.854 19.122 8.281 19.122 C 3.707 19.122 0 15.414 0 10.841 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 8.322 19.125 L 30.184 19.125\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 17.365 19.103 L 23.094 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 16.405 9.61 L 23.068 0 L 30.051 10.683\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"1.81\" stroke-dasharray=\"\"></path><path d=\"M 30.089 4.641 L 47.995 4.641 L 47.995 19.12 L 30.089 19.12 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 35.29 4.641 L 35.29 19.064\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-t8dr8f\",layoutDependency:layoutDependency,layoutId:\"I_VBNroft\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.695 20.695\" overflow=\"visible\"><path d=\"M 0 10.348 C 0 4.633 4.633 0 10.348 0 C 16.063 0 20.695 4.633 20.695 10.348 C 20.695 16.063 16.063 20.695 10.348 20.695 C 4.633 20.695 0 16.063 0 10.348 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24.154 24.154\" overflow=\"visible\"><path d=\"M 0 12.077 C 0 5.407 5.407 0 12.077 0 C 18.747 0 24.154 5.407 24.154 12.077 C 24.154 18.747 18.747 24.154 12.077 24.154 C 5.407 24.154 0 18.747 0 12.077 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.561 16.561\" overflow=\"visible\"><path d=\"M 0 8.281 C 0 3.707 3.707 0 8.281 0 C 12.854 0 16.561 3.707 16.561 8.281 C 16.561 12.854 12.854 16.561 8.281 16.561 C 3.707 16.561 0 12.854 0 8.281 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12dy4zt\",layoutDependency:layoutDependency,layoutId:\"dekEv93Pb\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27.319 1\" overflow=\"visible\"><path d=\"M 0 0 L 27.319 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.884 1\" overflow=\"visible\"><path d=\"M 0 0 L 31.884 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.861 1\" overflow=\"visible\"><path d=\"M 0 0 L 21.861 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-116sgxm\",layoutDependency:layoutDependency,layoutId:\"jAAIy0RQ7\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.159 23.872\" overflow=\"visible\"><path d=\"M 0 23.872 L 7.159 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.356 27.861\" overflow=\"visible\"><path d=\"M 0 27.861 L 8.356 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.729 19.103\" overflow=\"visible\"><path d=\"M 0 19.103 L 5.729 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yaso6d\",layoutDependency:layoutDependency,layoutId:\"Ib_7EHyVp\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.054 13.349\" overflow=\"visible\"><path d=\"M 0 12.009 L 8.327 0 L 17.054 13.349\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"1.81\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.903 15.58\" overflow=\"visible\"><path d=\"M 0 14.016 L 9.719 0 L 19.903 15.58\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"1.81\" stroke-dasharray=\"\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.647 10.683\" overflow=\"visible\"><path d=\"M 0 9.61 L 6.664 0 L 13.647 10.683\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"1.81\" stroke-dasharray=\"\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qk0of1\",layoutDependency:layoutDependency,layoutId:\"LfUC0KTcK\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.377 18.093\" overflow=\"visible\"><path d=\"M 0 0 L 22.377 0 L 22.377 18.093 L 0 18.093 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26.116 21.117\" overflow=\"visible\"><path d=\"M 0 0 L 26.116 0 L 26.116 21.117 L 0 21.117 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.907 14.479\" overflow=\"visible\"><path d=\"M 0 0 L 17.907 0 L 17.907 14.479 L 0 14.479 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11qkz5t\",layoutDependency:layoutDependency,layoutId:\"velnZP7c3\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 18.023\" overflow=\"visible\"><path d=\"M 0 0 L 0 18.023\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 21.035\" overflow=\"visible\"><path d=\"M 0 0 L 0 21.035\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>'},v6buDZWn1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 14.422\" overflow=\"visible\"><path d=\"M 0 0 L 0 14.422\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>'}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v8fnov\",\"data-framer-name\":\"Rights\",layoutDependency:layoutDependency,layoutId:\"NeeMbRD3u\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cjvjm0\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"DcLWPR3St\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bfngb6\",layoutDependency:layoutDependency,layoutId:\"PzS7ZFBMn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 202, 201))\",\"--framer-text-transform\":\"uppercase\"},children:\"2025 \\xa9 All rights reserved\"})}),className:\"framer-1nwmf2v\",fonts:[\"CUSTOM;Formula Condensed Bold\"],layoutDependency:layoutDependency,layoutId:\"u3BbaHT1l\",style:{\"--extracted-r6o4lv\":\"rgb(192, 202, 201)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",viewBox:\"0 0 187.24 21\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ebdz9q\",\"data-border\":true,\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"kYX2_PMfV\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(192, 201, 201)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.8px\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n8br3q\",layoutDependency:layoutDependency,layoutId:\"CEcbMA0Kk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", sans-serif',\"--framer-font-size\":\"10.65266658274363px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 202, 201))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"11.122961756870625px\"},children:\"We're the storytellers, visionaries, & creative professionals\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"11.122961756870625px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"11.122961756870625px\"},children:\"who turn your ideas into touchable emotions & adventures.\"})]})}),className:\"framer-15cxgtx\",fonts:[\"CUSTOM;Haas Grot Disp Trial 45 Light\"],layoutDependency:layoutDependency,layoutId:\"qHeQBdAQJ\",style:{\"--extracted-r6o4lv\":\"rgb(192, 202, 201)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",viewBox:\"0 0 272.5 27\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oqo0so\",layoutDependency:layoutDependency,layoutId:\"MCdHQlwOP\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j5j54a\",layoutDependency:layoutDependency,layoutId:\"axUbJL9R1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sa5dol\",\"data-framer-name\":\"Company\",layoutDependency:layoutDependency,layoutId:\"ZJ0BNuBkm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ysq6gs\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"XneADRMS1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(96, 113, 111))\"},children:\"COMPANY\"})}),className:\"framer-4exxf7\",fonts:[\"CUSTOM;Formula Condensed Bold\"],layoutDependency:layoutDependency,layoutId:\"NawuHuDYh\",style:{\"--extracted-r6o4lv\":\"rgb(96, 113, 111)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.74)\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(96, 113, 111))\"},children:\"COMPANY\"})})},v6buDZWn1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1)\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(96, 113, 111))\"},children:\"COMPANY\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qdcxy8\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"HLB7H7Nh3\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"k6Dly5pEf\"},motionChild:true,nodeId:\"CVl_ufhSi\",openInNewTab:false,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vmwc4b framer-1kcrt2i\",\"data-framer-name\":\"PRIVACY POLICY\",layoutDependency:layoutDependency,layoutId:\"CVl_ufhSi\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q4b7i5-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"lHEdo_kJ9-container\",nodeId:\"lHEdo_kJ9\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:18,height:\"100%\",id:\"lHEdo_kJ9\",inactiveColors:{lineColor:\"rgb(192, 201, 201)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:false,layoutId:\"lHEdo_kJ9\",text:\"PRIVACY POLICY\",width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},fontSize:15},v6buDZWn1:{disableHoverOnMobile:true,fontSize:16}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"S7RGfdRqy\"},motionChild:true,nodeId:\"tSzQpvPr5\",openInNewTab:false,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fy6d1p framer-1kcrt2i\",\"data-framer-name\":\"IMPRINT\",layoutDependency:layoutDependency,layoutId:\"tSzQpvPr5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bxoh38-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"miiDoeoNz-container\",nodeId:\"miiDoeoNz\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:18,height:\"100%\",id:\"miiDoeoNz\",inactiveColors:{lineColor:\"rgb(255, 255, 255)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:false,layoutId:\"miiDoeoNz\",text:\"IMPRINT\",width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true,fontSize:15},v6buDZWn1:{disableHoverOnMobile:true,fontSize:16}},baseVariant,gestureVariant)})})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hcques\",\"data-framer-name\":\"TERMS\",layoutDependency:layoutDependency,layoutId:\"m2aZAzbg7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u960bm\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"EpGgakDHF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(96, 113, 111))\"},children:\"TERMS & CONDITIONS\"})}),className:\"framer-1hnv6lq\",fonts:[\"CUSTOM;Formula Condensed Bold\"],layoutDependency:layoutDependency,layoutId:\"osquQxbSf\",style:{\"--extracted-r6o4lv\":\"rgb(96, 113, 111)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pwVtACACX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.74)\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(96, 113, 111))\"},children:\"TERMS & CONDITIONS\"})})},v6buDZWn1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1)\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(96, 113, 111))\"},children:\"TERMS & CONDITIONS\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lvwv4n\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"YfSS7nfwl\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qywPQUw8t\"},motionChild:true,nodeId:\"scPVX8hHo\",openInNewTab:false,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r7affp framer-1kcrt2i\",\"data-framer-name\":\"FGM\",layoutDependency:layoutDependency,layoutId:\"scPVX8hHo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-197nm9b-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Mjqw5DTcc-container\",nodeId:\"Mjqw5DTcc\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:18,height:\"100%\",id:\"Mjqw5DTcc\",inactiveColors:{lineColor:\"rgb(192, 201, 201)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:false,layoutId:\"Mjqw5DTcc\",text:\"F.G. MEIER GMBH\",width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true,fontSize:15},v6buDZWn1:{disableHoverOnMobile:true,fontSize:16}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DJLF6xsgF\"},motionChild:true,nodeId:\"pJRcuMBQf\",openInNewTab:false,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mgkgxs framer-1kcrt2i\",\"data-framer-name\":\"FGM INT\",layoutDependency:layoutDependency,layoutId:\"pJRcuMBQf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ubqu80-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"sPnb23GSV-container\",nodeId:\"sPnb23GSV\",rendersWithMotion:true,scopeId:\"eIeIx2l_W\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:18,height:\"100%\",id:\"sPnb23GSV\",inactiveColors:{lineColor:\"rgb(192, 201, 201)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:false,layoutId:\"sPnb23GSV\",text:\"F.G. MEIER INT. GMBH\",width:\"100%\",...addPropertyOverrides({pwVtACACX:{disableHoverOnMobile:true,fontSize:15},v6buDZWn1:{disableHoverOnMobile:true,fontSize:16}},baseVariant,gestureVariant)})})})})})]})]})]})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tOyh2.framer-1kcrt2i, .framer-tOyh2 .framer-1kcrt2i { display: block; }\",\".framer-tOyh2.framer-18vcb2v { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 1200px; }\",\".framer-tOyh2 .framer-1jc1f8x, .framer-tOyh2 .framer-1n8br3q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tOyh2 .framer-e7mzdb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 259px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-tOyh2 .framer-n6yp21 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-tOyh2 .framer-hrzc3i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tOyh2 .framer-1yep9ld { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-tOyh2 .framer-6vl829, .framer-tOyh2 .framer-1vag9qh, .framer-tOyh2 .framer-4exxf7, .framer-tOyh2 .framer-1hnv6lq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tOyh2 .framer-108tvsx { height: 132px; position: relative; width: 640px; }\",\".framer-tOyh2 .framer-3urtps { height: 132px; left: 0px; position: absolute; top: 0px; width: 640px; }\",\".framer-tOyh2 .framer-1x57yy8 { height: 129px; left: 119px; position: absolute; top: 4px; width: 191px; }\",\".framer-tOyh2 .framer-113qlbh { height: 129px; left: 0px; position: absolute; top: 4px; width: 112px; }\",\".framer-tOyh2 .framer-8numtb { height: 132px; left: 356px; position: absolute; top: 0px; width: 131px; }\",\".framer-tOyh2 .framer-kv1jxl { height: 129px; left: 316px; position: absolute; top: 4px; width: 38px; }\",\".framer-tOyh2 .framer-1psbnrz { height: 129px; left: 491px; position: absolute; top: 4px; width: 96px; }\",\".framer-tOyh2 .framer-2i01yu { height: 31px; left: 610px; position: absolute; top: 4px; width: 31px; }\",\".framer-tOyh2 .framer-1lcz2od { height: 24px; left: 613px; position: absolute; top: 7px; width: 24px; }\",\".framer-tOyh2 .framer-115zrrz { height: 19px; left: 618px; position: absolute; top: 9px; width: 17px; }\",\".framer-tOyh2 .framer-cp0k5c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 35%; }\",\".framer-tOyh2 .framer-1yxis8k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tOyh2 .framer-1qy3cbh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; z-index: 4; }\",\".framer-tOyh2 .framer-1t96wc8-container, .framer-tOyh2 .framer-4ie4ls-container, .framer-tOyh2 .framer-1k7bqp6-container, .framer-tOyh2 .framer-6anuo9-container, .framer-tOyh2 .framer-894oyk-container, .framer-tOyh2 .framer-qigq0j-container, .framer-tOyh2 .framer-1q4b7i5-container, .framer-tOyh2 .framer-1bxoh38-container, .framer-tOyh2 .framer-197nm9b-container, .framer-tOyh2 .framer-ubqu80-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tOyh2 .framer-aqv08m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 76px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 78px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-tOyh2 .framer-c4aqb9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tOyh2 .framer-jsmlo6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tOyh2 .framer-9ed6cg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: 29px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tOyh2 .framer-1b0n7dw, .framer-tOyh2 .framer-itiizt, .framer-tOyh2 .framer-1vl6qlk, .framer-tOyh2 .framer-yxu8zc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 27px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-tOyh2 .framer-8vprlf { 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; text-decoration: none; width: min-content; }\",\".framer-tOyh2 .framer-17vr8wh { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 4; }\",\".framer-tOyh2 .framer-a1r5d, .framer-tOyh2 .framer-18hdp28, .framer-tOyh2 .framer-10elzmf { flex: none; height: 24px; overflow: visible; position: relative; text-decoration: none; width: 25px; }\",\".framer-tOyh2 .framer-hkh3wg-container, .framer-tOyh2 .framer-7n623m-container, .framer-tOyh2 .framer-15d3bub-container { flex: none; height: auto; left: 52%; position: absolute; top: 50%; width: auto; }\",\".framer-tOyh2 .framer-1y9ryj2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tOyh2 .framer-xh7qy6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-tOyh2 .framer-1g46mj9 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 72px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 72px; }\",\".framer-tOyh2 .framer-1cejlsd { height: 24px; position: relative; width: 60px; }\",\".framer-tOyh2 .framer-t8dr8f { height: 21px; left: 0px; position: absolute; top: 3px; width: 21px; }\",\".framer-tOyh2 .framer-12dy4zt { height: 1px; left: 11px; position: absolute; top: 24px; width: 28px; }\",\".framer-tOyh2 .framer-116sgxm { height: 24px; left: 22px; position: absolute; top: 0px; width: 7px; }\",\".framer-tOyh2 .framer-1yaso6d { height: 14px; left: 21px; position: absolute; top: 0px; width: 17px; }\",\".framer-tOyh2 .framer-qk0of1 { height: 18px; left: 38px; position: absolute; top: 6px; width: 23px; }\",\".framer-tOyh2 .framer-11qkz5t { height: 18px; left: 44px; position: absolute; top: 6px; width: 1px; }\",\".framer-tOyh2 .framer-v8fnov { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tOyh2 .framer-1cjvjm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: center; overflow: hidden; padding: 4px 5px 0px 5px; position: relative; width: 192px; }\",\".framer-tOyh2 .framer-1bfngb6 { align-content: center; align-items: center; aspect-ratio: 8.738095238095237 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 21px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 182px; }\",\".framer-tOyh2 .framer-1nwmf2v { flex: none; height: auto; position: relative; white-space: pre; width: 100%; z-index: 1; }\",\".framer-tOyh2 .framer-1ebdz9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 35px; justify-content: center; overflow: hidden; padding: 0px 5px 0px 5px; position: relative; width: 192px; }\",\".framer-tOyh2 .framer-15cxgtx { flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",\".framer-tOyh2 .framer-oqo0so { flex: 1 0 0px; gap: 10px; height: 80px; overflow: visible; position: relative; width: 1px; }\",\".framer-tOyh2 .framer-j5j54a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: visible; padding: 0px; position: absolute; right: 0px; top: calc(50.00000000000002% - 80px / 2); width: 100%; }\",\".framer-tOyh2 .framer-sa5dol { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tOyh2 .framer-1ysq6gs { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-tOyh2 .framer-qdcxy8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 19px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-tOyh2 .framer-1vmwc4b, .framer-tOyh2 .framer-r7affp, .framer-tOyh2 .framer-mgkgxs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 17px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-tOyh2 .framer-1fy6d1p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 17px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-tOyh2 .framer-hcques { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tOyh2 .framer-1u960bm { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-tOyh2 .framer-1lvwv4n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: 19px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tOyh2.framer-v-trda9x.framer-18vcb2v { padding: 0px 18px 0px 18px; width: 810px; }\",\".framer-tOyh2.framer-v-trda9x .framer-e7mzdb { gap: unset; justify-content: space-between; padding: 60px 0px 60px 0px; }\",\".framer-tOyh2.framer-v-trda9x .framer-n6yp21 { flex: none; width: 100%; }\",\".framer-tOyh2.framer-v-trda9x .framer-1yep9ld, .framer-tOyh2.framer-v-trda9x .framer-1ysq6gs, .framer-tOyh2.framer-v-mkdsao .framer-1u960bm { align-self: unset; width: min-content; }\",\".framer-tOyh2.framer-v-trda9x .framer-6vl829, .framer-tOyh2.framer-v-trda9x .framer-4exxf7, .framer-tOyh2.framer-v-trda9x .framer-1hnv6lq, .framer-tOyh2.framer-v-mkdsao .framer-6vl829, .framer-tOyh2.framer-v-mkdsao .framer-4exxf7, .framer-tOyh2.framer-v-mkdsao .framer-1hnv6lq { white-space: pre; width: auto; }\",\".framer-tOyh2.framer-v-trda9x .framer-108tvsx, .framer-tOyh2.framer-v-trda9x .framer-3urtps { height: 91px; width: 440px; }\",\".framer-tOyh2.framer-v-trda9x .framer-1x57yy8 { height: 89px; left: 82px; top: 3px; width: 131px; }\",\".framer-tOyh2.framer-v-trda9x .framer-113qlbh { height: 89px; top: 3px; width: 77px; }\",\".framer-tOyh2.framer-v-trda9x .framer-8numtb { height: 91px; left: 245px; width: 90px; }\",\".framer-tOyh2.framer-v-trda9x .framer-kv1jxl { height: 89px; left: 217px; top: 3px; width: 26px; }\",\".framer-tOyh2.framer-v-trda9x .framer-1psbnrz { height: 89px; left: 338px; top: 3px; width: 66px; }\",\".framer-tOyh2.framer-v-trda9x .framer-2i01yu { height: 21px; left: 419px; top: 3px; width: 21px; }\",\".framer-tOyh2.framer-v-trda9x .framer-1lcz2od { height: 17px; left: 422px; top: 5px; width: 17px; }\",\".framer-tOyh2.framer-v-trda9x .framer-115zrrz { height: 13px; left: 425px; top: 7px; width: 12px; }\",\".framer-tOyh2.framer-v-trda9x .framer-cp0k5c { gap: 28px; height: 152px; justify-content: flex-end; width: 38%; }\",\".framer-tOyh2.framer-v-trda9x .framer-1yxis8k { align-content: flex-start; align-items: flex-start; }\",\".framer-tOyh2.framer-v-trda9x .framer-1qy3cbh { align-content: flex-end; align-items: flex-end; }\",\".framer-tOyh2.framer-v-trda9x .framer-aqv08m { gap: 44px; padding: 50px 0px 5px 0px; }\",\".framer-tOyh2.framer-v-trda9x .framer-9ed6cg { gap: 20px; }\",\".framer-tOyh2.framer-v-trda9x .framer-17vr8wh { align-self: unset; flex: 60 0 0px; height: min-content; }\",\".framer-tOyh2.framer-v-trda9x .framer-1y9ryj2 { gap: 30px; }\",\".framer-tOyh2.framer-v-trda9x .framer-1g46mj9 { height: var(--framer-aspect-ratio-supported, 56px); width: 56px; }\",\".framer-tOyh2.framer-v-trda9x .framer-1cejlsd { height: 19px; width: 48px; }\",\".framer-tOyh2.framer-v-trda9x .framer-t8dr8f { height: 17px; top: 3px; width: 17px; }\",\".framer-tOyh2.framer-v-trda9x .framer-12dy4zt { left: 9px; top: 19px; width: 22px; }\",\".framer-tOyh2.framer-v-trda9x .framer-116sgxm { height: 19px; left: 18px; width: 6px; }\",\".framer-tOyh2.framer-v-trda9x .framer-1yaso6d { height: 11px; left: 17px; width: 14px; }\",\".framer-tOyh2.framer-v-trda9x .framer-qk0of1 { height: 15px; left: 30px; top: 5px; width: 18px; }\",\".framer-tOyh2.framer-v-trda9x .framer-11qkz5t { height: 15px; left: 36px; top: 5px; }\",\".framer-tOyh2.framer-v-trda9x .framer-1cjvjm0, .framer-tOyh2.framer-v-trda9x .framer-1ebdz9q { height: 28px; width: min-content; }\",\".framer-tOyh2.framer-v-trda9x .framer-1bfngb6 { height: var(--framer-aspect-ratio-supported, 19px); width: 165px; }\",\".framer-tOyh2.framer-v-trda9x .framer-1n8br3q { aspect-ratio: 10.083333333333334 / 1; height: var(--framer-aspect-ratio-supported, 16px); width: 165px; }\",\".framer-tOyh2.framer-v-trda9x .framer-15cxgtx { width: 161px; }\",\".framer-tOyh2.framer-v-trda9x .framer-j5j54a { left: 0px; right: unset; }\",\".framer-tOyh2.framer-v-trda9x .framer-sa5dol { gap: 4px; order: 0; }\",\".framer-tOyh2.framer-v-trda9x .framer-hcques { gap: 4px; order: 1; }\",\".framer-tOyh2.framer-v-trda9x .framer-1u960bm { align-self: unset; justify-content: center; width: min-content; }\",\".framer-tOyh2.framer-v-trda9x .framer-1lvwv4n { gap: 14px; }\",\".framer-tOyh2.framer-v-mkdsao.framer-18vcb2v { padding: 0px 10px 0px 10px; width: 390px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-e7mzdb { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 45px; padding: 30px 0px 30px 0px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-n6yp21 { flex: none; flex-direction: column; gap: 23px; justify-content: flex-start; width: 100%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-hrzc3i, .framer-tOyh2.framer-v-mkdsao .framer-cp0k5c { width: 100%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1yep9ld { align-content: flex-start; align-items: flex-start; align-self: unset; width: 100%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-108tvsx, .framer-tOyh2.framer-v-mkdsao .framer-3urtps { height: 58px; width: 280px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1x57yy8 { height: 57px; left: 52px; top: 2px; width: 84px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-113qlbh { height: 57px; top: 2px; width: 49px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-8numtb { height: 58px; left: 156px; width: 58px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-kv1jxl { height: 57px; left: 138px; top: 2px; width: 17px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1psbnrz { height: 57px; left: 215px; top: 2px; width: 42px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-2i01yu { height: 14px; left: 267px; top: 2px; width: 14px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1lcz2od { height: 11px; left: 268px; top: 3px; width: 11px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-115zrrz { height: 8px; left: 271px; top: 4px; width: 8px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-aqv08m { padding: 0px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-c4aqb9 { flex-direction: column; }\",\".framer-tOyh2.framer-v-mkdsao .framer-jsmlo6, .framer-tOyh2.framer-v-mkdsao .framer-xh7qy6 { order: 0; width: 100%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-9ed6cg { gap: unset; justify-content: space-between; padding: 30px 0px 30px 0px; width: 100%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-17vr8wh { align-self: unset; flex: none; gap: 20px; height: min-content; justify-content: center; order: 1; padding: 30px 0px 0px 0px; width: 100%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1y9ryj2 { aspect-ratio: 2.0670391061452515 / 1; flex-direction: column; gap: 15px; height: var(--framer-aspect-ratio-supported, 179px); justify-content: flex-start; padding: 0px 0px 15px 0px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1g46mj9 { height: var(--framer-aspect-ratio-supported, 80px); width: 22%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1cejlsd { height: 28px; width: 70px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-t8dr8f { height: 24px; top: 4px; width: 24px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-12dy4zt { left: 12px; top: 28px; width: 32px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-116sgxm { height: 28px; left: 26px; width: 9px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1yaso6d { height: 16px; left: 24px; width: 20px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-qk0of1 { height: 21px; left: 44px; top: 7px; width: 26px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-11qkz5t { height: 21px; left: 52px; top: 7px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-v8fnov { width: 78%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1cjvjm0 { aspect-ratio: 8.923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 33px); width: 100%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1bfngb6 { aspect-ratio: unset; height: min-content; width: 80%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1ebdz9q { aspect-ratio: 5.979381443298969 / 1; height: var(--framer-aspect-ratio-supported, 49px); width: 100%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-oqo0so { align-content: center; align-items: center; aspect-ratio: 5.36231884057971 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: unset; height: var(--framer-aspect-ratio-supported, 69px); justify-content: space-between; order: 1; padding: 0px; width: 100%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-j5j54a { height: min-content; order: 0; position: relative; right: unset; top: unset; }\",\".framer-tOyh2.framer-v-mkdsao .framer-sa5dol { gap: 2px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1ysq6gs { align-self: unset; justify-content: flex-end; width: min-content; }\",\".framer-tOyh2.framer-v-mkdsao .framer-qdcxy8 { align-content: center; align-items: center; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1vmwc4b { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-tOyh2.framer-v-mkdsao .framer-hcques { flex: 1 0 0px; gap: 2px; width: 1px; }\",\".framer-tOyh2.framer-v-mkdsao .framer-1lvwv4n { gap: 10px; height: min-content; width: 100%; }\",\".framer-tOyh2.framer-v-mkdsao .framer-mgkgxs { align-content: flex-end; align-items: flex-end; flex-direction: column; }\",'.framer-tOyh2[data-border=\"true\"]::after, .framer-tOyh2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 639\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"v6buDZWn1\":{\"layout\":[\"fixed\",\"auto\"]},\"pwVtACACX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"w6YfzNa1e\":\"border\",\"p5YjZonzT\":\"workActive\",\"FQlp3f0sf\":\"serviceActive\",\"whMQct4Rx\":\"aboutActive\",\"Z_QKIGMAn\":\"contactActive\",\"f7wqGWOnh\":\"buttonText\",\"tYstZgxMP\":\"contentText\",\"BEfnYsrXd\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramereIeIx2l_W=withCSS(Component,css,\"framer-tOyh2\");export default FramereIeIx2l_W;FramereIeIx2l_W.displayName=\"twice_footer\";FramereIeIx2l_W.defaultProps={height:639,width:1200};addPropertyControls(FramereIeIx2l_W,{variant:{options:[\"zh2dNkaSf\",\"v6buDZWn1\",\"pwVtACACX\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},w6YfzNa1e:{defaultValue:{borderBottomWidth:1,borderColor:\"rgb(38, 58, 56)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},title:\"Border\",type:ControlType.Border},p5YjZonzT:{defaultValue:false,title:\"Work Active\",type:ControlType.Boolean},FQlp3f0sf:{defaultValue:false,title:\"Service Active\",type:ControlType.Boolean},whMQct4Rx:{defaultValue:false,title:\"About Active\",type:ControlType.Boolean},Z_QKIGMAn:{defaultValue:false,title:\"Contact Active\",type:ControlType.Boolean},f7wqGWOnh:{defaultValue:\"CONTACT US\",title:\"Button Text\",type:ControlType.String},tYstZgxMP:{defaultValue:\"Established in 2005, we've dedicated ourselves to crafting impactful and outstanding retail solutions defined by creativity, innovation, speed and anunwavering commitment to excellence in production.\",displayTextArea:false,title:\"Content Text\",type:ControlType.String},BEfnYsrXd:{title:\"Link\",type:ControlType.Link}});addFonts(FramereIeIx2l_W,[{explicitInter:true,fonts:[{cssFamilyName:\"Haas Grot Disp Trial 45 Light\",source:\"custom\",uiFamilyName:\"Haas Grot Disp Trial 45 Light\",url:\"https://framerusercontent.com/assets/bLA1s7zZ3baKYNAYtINcMRRCilU.woff2\"},{cssFamilyName:\"Formula Condensed Bold\",source:\"custom\",uiFamilyName:\"Formula Condensed Bold\",url:\"https://framerusercontent.com/assets/4HTo7pUwCFDIYSJspcYmauC3H8.woff2\"}]},...ContactButtonFonts,...HoverLinkFonts,...AnimatedLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereIeIx2l_W\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"639\",\"framerVariables\":\"{\\\"w6YfzNa1e\\\":\\\"border\\\",\\\"p5YjZonzT\\\":\\\"workActive\\\",\\\"FQlp3f0sf\\\":\\\"serviceActive\\\",\\\"whMQct4Rx\\\":\\\"aboutActive\\\",\\\"Z_QKIGMAn\\\":\\\"contactActive\\\",\\\"f7wqGWOnh\\\":\\\"buttonText\\\",\\\"tYstZgxMP\\\":\\\"contentText\\\",\\\"BEfnYsrXd\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v6buDZWn1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pwVtACACX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eIeIx2l_W.map","// Generated by Framer (571faa6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HoverLink from\"https://framerusercontent.com/modules/43OR90U5IQwCWUpftyq2/3DR5SwoiifEgyDGyN3f3/HoverLink.js\";const HoverLinkFonts=getFonts(HoverLink);const cycleOrder=[\"mYIUnubUa\",\"r1qgyy9M4\",\"L1BF4aHyJ\",\"LXcQ9Ngg8\",\"A1kiS4Mi3\",\"MDE2I5SdC\",\"JSxliy0r4\",\"gAyyX97om\",\"kjeFjCkSo\",\"PmRz5lBpf\",\"lPLWuWXEL\",\"CXmRhLPVq\"];const serializationHash=\"framer-uPLWM\";const variantClassNames={A1kiS4Mi3:\"framer-v-5crlb4\",CXmRhLPVq:\"framer-v-1te8owa\",gAyyX97om:\"framer-v-u2sa2f\",JSxliy0r4:\"framer-v-4ptzll\",kjeFjCkSo:\"framer-v-1ipgks\",L1BF4aHyJ:\"framer-v-1v2imx4\",lPLWuWXEL:\"framer-v-ypo9xr\",LXcQ9Ngg8:\"framer-v-a07avg\",MDE2I5SdC:\"framer-v-jqi4s2\",mYIUnubUa:\"framer-v-1nzrhtk\",PmRz5lBpf:\"framer-v-sp8bgk\",r1qgyy9M4:\"framer-v-1nztd6u\"};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 transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};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={\"Desktop Black\":\"L1BF4aHyJ\",\"Desktop Blur\":\"r1qgyy9M4\",\"Phone Black Open\":\"CXmRhLPVq\",\"Phone Black\":\"lPLWuWXEL\",\"Phone Blur Open\":\"PmRz5lBpf\",\"Phone Blur\":\"kjeFjCkSo\",\"Phone Clear Open\":\"gAyyX97om\",\"Phone Clear\":\"JSxliy0r4\",\"Tablet Black\":\"MDE2I5SdC\",\"Tablet Blur\":\"A1kiS4Mi3\",Desktop:\"mYIUnubUa\",Tablet:\"LXcQ9Ngg8\"};const getProps=({aboutActive,aboutLink,contactActive,contactLink,fontSize,height,homeLink,id,serviceActive,servicesLink,width,workActive,workLink,...props})=>{return{...props,bs6Meq43p:workLink??props.bs6Meq43p,dAdwoZToF:contactLink??props.dAdwoZToF,E_L5pmaKG:homeLink??props.E_L5pmaKG,FJaQ4e8yR:workActive??props.FJaQ4e8yR,gO_zIPVDw:contactActive??props.gO_zIPVDw,j2exvZzAf:aboutActive??props.j2exvZzAf,JVonzCfMK:serviceActive??props.JVonzCfMK,nyhqmPqql:servicesLink??props.nyhqmPqql,oH6v_Inql:fontSize??props.oH6v_Inql??30,variant:humanReadableVariantMap[props.variant]??props.variant??\"mYIUnubUa\",x8ZkjcwBa:aboutLink??props.x8ZkjcwBa};};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,E_L5pmaKG,bs6Meq43p,FJaQ4e8yR,nyhqmPqql,JVonzCfMK,x8ZkjcwBa,j2exvZzAf,dAdwoZToF,gO_zIPVDw,oH6v_Inql,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mYIUnubUa\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap183ejz4=activeVariantCallback(async(...args)=>{setVariant(\"ZFyh1m3DB\");});const onTap1b0894=activeVariantCallback(async(...args)=>{setVariant(\"gAyyX97om\");});const onTapnv4dcj=activeVariantCallback(async(...args)=>{setVariant(\"JSxliy0r4\");});const onTap1hk6tj4=activeVariantCallback(async(...args)=>{setVariant(\"PmRz5lBpf\");});const onTapezrl3e=activeVariantCallback(async(...args)=>{setVariant(\"kjeFjCkSo\");});const onTapp2pg7h=activeVariantCallback(async(...args)=>{setVariant(\"CXmRhLPVq\");});const onTap1fig2je=activeVariantCallback(async(...args)=>{setVariant(\"lPLWuWXEL\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"JSxliy0r4\",\"gAyyX97om\",\"kjeFjCkSo\",\"PmRz5lBpf\",\"lPLWuWXEL\",\"CXmRhLPVq\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"JSxliy0r4\",\"gAyyX97om\",\"kjeFjCkSo\",\"PmRz5lBpf\",\"lPLWuWXEL\",\"CXmRhLPVq\"].includes(baseVariant))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,...addPropertyOverrides({CXmRhLPVq:{value:transition2},gAyyX97om:{value:transition2},JSxliy0r4:{value:transition2},kjeFjCkSo:{value:transition2},lPLWuWXEL:{value:transition2},PmRz5lBpf:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1nzrhtk\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"mYIUnubUa\",ref:refBinding,style:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(0px)\",...style},variants:{A1kiS4Mi3:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(0, 0, 0, 0.5)\",WebkitBackdropFilter:\"blur(5px)\"},CXmRhLPVq:{backgroundColor:\"rgb(0, 0, 0)\"},gAyyX97om:{backgroundColor:\"rgb(0, 0, 0)\"},JSxliy0r4:{backgroundColor:\"rgba(0, 0, 0, 0)\"},kjeFjCkSo:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(0, 0, 0, 0.5)\",WebkitBackdropFilter:\"blur(5px)\"},L1BF4aHyJ:{backgroundColor:\"rgba(0, 0, 0, 0)\"},lPLWuWXEL:{backgroundColor:\"rgba(0, 0, 0, 0)\"},LXcQ9Ngg8:{backgroundColor:\"rgba(0, 0, 0, 0)\"},MDE2I5SdC:{backgroundColor:\"rgba(0, 0, 0, 0)\"},PmRz5lBpf:{backgroundColor:\"rgb(0, 0, 0)\"},r1qgyy9M4:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(0, 0, 0, 0.5)\",WebkitBackdropFilter:\"blur(5px)\"}},...addPropertyOverrides({A1kiS4Mi3:{\"data-framer-name\":\"Tablet Blur\"},CXmRhLPVq:{\"data-framer-name\":\"Phone Black Open\",\"data-hide-scrollbars\":undefined},gAyyX97om:{\"data-framer-name\":\"Phone Clear Open\",\"data-hide-scrollbars\":undefined},JSxliy0r4:{\"data-framer-name\":\"Phone Clear\"},kjeFjCkSo:{\"data-framer-name\":\"Phone Blur\"},L1BF4aHyJ:{\"data-framer-name\":\"Desktop Black\"},lPLWuWXEL:{\"data-framer-name\":\"Phone Black\"},LXcQ9Ngg8:{\"data-framer-name\":\"Tablet\"},MDE2I5SdC:{\"data-framer-name\":\"Tablet Black\"},PmRz5lBpf:{\"data-framer-name\":\"Phone Blur Open\",\"data-hide-scrollbars\":undefined},r1qgyy9M4:{\"data-framer-name\":\"Desktop Blur\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xa5gmm\",\"data-framer-name\":\"Top bar\",layoutDependency:layoutDependency,layoutId:\"Rmmb2o1gc\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:bs6Meq43p,motionChild:true,nodeId:\"yIQOeFZpK\",openInNewTab:false,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17ibuix framer-6d9j3l\",\"data-framer-name\":\"Work\",layoutDependency:layoutDependency,layoutId:\"yIQOeFZpK\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6c742o-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"aHf3UBWCh-container\",nodeId:\"aHf3UBWCh\",rendersWithMotion:true,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:oH6v_Inql,height:\"100%\",id:\"aHf3UBWCh\",inactiveColors:{lineColor:\"rgb(255, 255, 255)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:FJaQ4e8yR,layoutId:\"aHf3UBWCh\",text:\"WORK\",width:\"100%\",...addPropertyOverrides({A1kiS4Mi3:{disableHoverOnMobile:true},L1BF4aHyJ:{activeColors:{activeLineColor:\"rgb(23, 44, 42)\",activeTextColor:\"rgb(23, 44, 42)\"},activeHoverColors:{activeHoverLineColor:\"rgb(23, 44, 42)\",activeHoverTextColor:\"rgb(23, 44, 42)\"},font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1em\"},inactiveColors:{lineColor:\"rgb(23, 44, 42)\",textColor:\"rgb(23, 44, 42)\"},inactiveHoverColors:{hoverLineColor:\"rgb(23, 44, 42)\",hoverTextColor:\"rgb(23, 44, 42)\"}},LXcQ9Ngg8:{disableHoverOnMobile:true},MDE2I5SdC:{activeColors:{activeLineColor:\"rgb(23, 44, 42)\",activeTextColor:\"rgb(23, 44, 42)\"},activeHoverColors:{activeHoverLineColor:\"rgb(23, 44, 42)\",activeHoverTextColor:\"rgb(23, 44, 42)\"},disableHoverOnMobile:true,inactiveColors:{lineColor:\"rgb(23, 44, 42)\",textColor:\"rgb(23, 44, 42)\"},inactiveHoverColors:{hoverLineColor:\"rgb(23, 44, 42)\",hoverTextColor:\"rgb(23, 44, 42)\"}}},baseVariant,gestureVariant)})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:nyhqmPqql,motionChild:true,nodeId:\"LUziioRhZ\",openInNewTab:false,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1diwg8l framer-6d9j3l\",\"data-framer-name\":\"Services\",layoutDependency:layoutDependency,layoutId:\"LUziioRhZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c39d8d-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"lswME2mi4-container\",nodeId:\"lswME2mi4\",rendersWithMotion:true,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:oH6v_Inql,height:\"100%\",id:\"lswME2mi4\",inactiveColors:{lineColor:\"rgb(255, 255, 255)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:JVonzCfMK,layoutId:\"lswME2mi4\",text:\"SERVICES\",width:\"100%\",...addPropertyOverrides({A1kiS4Mi3:{disableHoverOnMobile:true},L1BF4aHyJ:{activeColors:{activeLineColor:\"rgb(23, 44, 42)\",activeTextColor:\"rgb(23, 44, 42)\"},activeHoverColors:{activeHoverLineColor:\"rgb(23, 44, 42)\",activeHoverTextColor:\"rgb(23, 44, 42)\"},inactiveColors:{lineColor:\"rgb(23, 44, 42)\",textColor:\"rgb(23, 44, 42)\"},inactiveHoverColors:{hoverLineColor:\"rgb(23, 44, 42)\",hoverTextColor:\"rgb(23, 44, 42)\"}},LXcQ9Ngg8:{disableHoverOnMobile:true},MDE2I5SdC:{activeColors:{activeLineColor:\"rgb(23, 44, 42)\",activeTextColor:\"rgb(23, 44, 42)\"},activeHoverColors:{activeHoverLineColor:\"rgb(23, 44, 42)\",activeHoverTextColor:\"rgb(23, 44, 42)\"},disableHoverOnMobile:true,inactiveColors:{lineColor:\"rgb(23, 44, 42)\",textColor:\"rgb(23, 44, 42)\"},inactiveHoverColors:{hoverLineColor:\"rgb(23, 44, 42)\",hoverTextColor:\"rgb(23, 44, 42)\"}}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:E_L5pmaKG,motionChild:true,nodeId:\"zBPlYbUoo\",openInNewTab:false,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1f2ere framer-6d9j3l\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"zBPlYbUoo\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-eajftl\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"Gr9hV4IGc\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 79.947 31.858\" overflow=\"visible\"><g><path d=\"M 0 18.059 C 0 10.441 6.175 4.265 13.793 4.265 C 21.411 4.265 27.586 10.441 27.586 18.059 C 27.586 25.676 21.411 31.852 13.793 31.852 C 6.175 31.852 0 25.676 0 18.059 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\"></path><path d=\"M 13.863 31.858 L 50.278 31.858\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\"></path><path d=\"M 28.925 31.82 L 38.468 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\"></path><path d=\"M 27.326 16.008 L 38.425 0 L 50.058 17.794\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"1.81\"></path><path d=\"M 50.119 7.731 L 79.947 7.731 L 79.947 31.848 L 50.119 31.848 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\"></path><path d=\"M 58.784 7.731 L 58.784 31.755\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\"></path></g></svg>',withExternalLayout:true,...addPropertyOverrides({L1BF4aHyJ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 79.947 31.858\" overflow=\"visible\"><g><path d=\"M 0 18.059 C 0 10.441 6.175 4.265 13.793 4.265 C 21.411 4.265 27.586 10.441 27.586 18.059 C 27.586 25.676 21.411 31.852 13.793 31.852 C 6.175 31.852 0 25.676 0 18.059 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 13.863 31.858 L 50.278 31.858\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 28.925 31.82 L 38.468 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 27.326 16.008 L 38.425 0 L 50.058 17.794\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"1.81\"></path><path d=\"M 50.119 7.731 L 79.947 7.731 L 79.947 31.848 L 50.119 31.848 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 58.784 7.731 L 58.784 31.755\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></g></svg>'},lPLWuWXEL:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 79.947 31.858\" overflow=\"visible\"><g><path d=\"M 0 18.059 C 0 10.441 6.175 4.265 13.793 4.265 C 21.411 4.265 27.586 10.441 27.586 18.059 C 27.586 25.676 21.411 31.852 13.793 31.852 C 6.175 31.852 0 25.676 0 18.059 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 13.863 31.858 L 50.278 31.858\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 28.925 31.82 L 38.468 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 27.326 16.008 L 38.425 0 L 50.058 17.794\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"1.81\"></path><path d=\"M 50.119 7.731 L 79.947 7.731 L 79.947 31.848 L 50.119 31.848 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 58.784 7.731 L 58.784 31.755\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></g></svg>'},MDE2I5SdC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 79.947 31.858\" overflow=\"visible\"><g><path d=\"M 0 18.059 C 0 10.441 6.175 4.265 13.793 4.265 C 21.411 4.265 27.586 10.441 27.586 18.059 C 27.586 25.676 21.411 31.852 13.793 31.852 C 6.175 31.852 0 25.676 0 18.059 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 13.863 31.858 L 50.278 31.858\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 28.925 31.82 L 38.468 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 27.326 16.008 L 38.425 0 L 50.058 17.794\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"1.81\"></path><path d=\"M 50.119 7.731 L 79.947 7.731 L 79.947 31.848 L 50.119 31.848 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path><path d=\"M 58.784 7.731 L 58.784 31.755\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></g></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-bu7zda\",layoutDependency:layoutDependency,layoutId:\"b6_EtBfZf\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27.586 27.586\" overflow=\"visible\"><path d=\"M 0 13.793 C 0 6.175 6.175 0 13.793 0 C 21.411 0 27.586 6.175 27.586 13.793 C 27.586 21.411 21.411 27.586 13.793 27.586 C 6.175 27.586 0 21.411 0 13.793 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({L1BF4aHyJ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27.586 27.586\" overflow=\"visible\"><path d=\"M 0 13.793 C 0 6.175 6.175 0 13.793 0 C 21.411 0 27.586 6.175 27.586 13.793 C 27.586 21.411 21.411 27.586 13.793 27.586 C 6.175 27.586 0 21.411 0 13.793 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'},lPLWuWXEL:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27.586 27.586\" overflow=\"visible\"><path d=\"M 0 13.793 C 0 6.175 6.175 0 13.793 0 C 21.411 0 27.586 6.175 27.586 13.793 C 27.586 21.411 21.411 27.586 13.793 27.586 C 6.175 27.586 0 21.411 0 13.793 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'},MDE2I5SdC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27.586 27.586\" overflow=\"visible\"><path d=\"M 0 13.793 C 0 6.175 6.175 0 13.793 0 C 21.411 0 27.586 6.175 27.586 13.793 C 27.586 21.411 21.411 27.586 13.793 27.586 C 6.175 27.586 0 21.411 0 13.793 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15jstco\",layoutDependency:layoutDependency,layoutId:\"d6dMJEvoE\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 36.415 1\" overflow=\"visible\"><path d=\"M 0 0 L 36.415 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({L1BF4aHyJ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 36.415 1\" overflow=\"visible\"><path d=\"M 0 0 L 36.415 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'},lPLWuWXEL:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 36.415 1\" overflow=\"visible\"><path d=\"M 0 0 L 36.415 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'},MDE2I5SdC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 36.415 1\" overflow=\"visible\"><path d=\"M 0 0 L 36.415 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oa3r6d\",layoutDependency:layoutDependency,layoutId:\"bntMzyn9y\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.543 31.82\" overflow=\"visible\"><path d=\"M 0 31.82 L 9.543 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({L1BF4aHyJ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.543 31.82\" overflow=\"visible\"><path d=\"M 0 31.82 L 9.543 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'},lPLWuWXEL:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.543 31.82\" overflow=\"visible\"><path d=\"M 0 31.82 L 9.543 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'},MDE2I5SdC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.543 31.82\" overflow=\"visible\"><path d=\"M 0 31.82 L 9.543 0\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-utcpvs\",layoutDependency:layoutDependency,layoutId:\"hO1TrtEUV\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.732 17.794\" overflow=\"visible\"><path d=\"M 0 16.008 L 11.1 0 L 22.732 17.794\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"1.81\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({L1BF4aHyJ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.732 17.794\" overflow=\"visible\"><path d=\"M 0 16.008 L 11.1 0 L 22.732 17.794\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"1.81\"></path></svg>'},lPLWuWXEL:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.732 17.794\" overflow=\"visible\"><path d=\"M 0 16.008 L 11.1 0 L 22.732 17.794\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"1.81\"></path></svg>'},MDE2I5SdC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.732 17.794\" overflow=\"visible\"><path d=\"M 0 16.008 L 11.1 0 L 22.732 17.794\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"1.81\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-h9oj5z\",layoutDependency:layoutDependency,layoutId:\"VULffYezr\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 29.828 24.117\" overflow=\"visible\"><path d=\"M 0 0 L 29.828 0 L 29.828 24.117 L 0 24.117 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({L1BF4aHyJ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 29.828 24.117\" overflow=\"visible\"><path d=\"M 0 0 L 29.828 0 L 29.828 24.117 L 0 24.117 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'},lPLWuWXEL:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 29.828 24.117\" overflow=\"visible\"><path d=\"M 0 0 L 29.828 0 L 29.828 24.117 L 0 24.117 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'},MDE2I5SdC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 29.828 24.117\" overflow=\"visible\"><path d=\"M 0 0 L 29.828 0 L 29.828 24.117 L 0 24.117 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3newap\",layoutDependency:layoutDependency,layoutId:\"MTdHkqNpJ\",opacity:1,requiresOverflowVisible:true,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 24.024\" overflow=\"visible\"><path d=\"M 0 0 L 0 24.024\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(192, 201, 201)\" stroke-miterlimit=\"10\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({L1BF4aHyJ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 24.024\" overflow=\"visible\"><path d=\"M 0 0 L 0 24.024\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'},lPLWuWXEL:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 24.024\" overflow=\"visible\"><path d=\"M 0 0 L 0 24.024\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'},MDE2I5SdC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 24.024\" overflow=\"visible\"><path d=\"M 0 0 L 0 24.024\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(23, 44, 42)\" stroke-miterlimit=\"10\"></path></svg>'}},baseVariant,gestureVariant)})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:x8ZkjcwBa,motionChild:true,nodeId:\"NKmnsDmKM\",openInNewTab:false,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6arfnz framer-6d9j3l\",\"data-framer-name\":\"About\",layoutDependency:layoutDependency,layoutId:\"NKmnsDmKM\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kzi9fp-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"YnggiTmwN-container\",nodeId:\"YnggiTmwN\",rendersWithMotion:true,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:oH6v_Inql,height:\"100%\",id:\"YnggiTmwN\",inactiveColors:{lineColor:\"rgb(255, 255, 255)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:j2exvZzAf,layoutId:\"YnggiTmwN\",text:\"ABOUT\",width:\"100%\",...addPropertyOverrides({A1kiS4Mi3:{disableHoverOnMobile:true},L1BF4aHyJ:{activeColors:{activeLineColor:\"rgb(23, 44, 42)\",activeTextColor:\"rgb(23, 44, 42)\"},activeHoverColors:{activeHoverLineColor:\"rgb(23, 44, 42)\",activeHoverTextColor:\"rgb(23, 44, 42)\"},inactiveColors:{lineColor:\"rgb(23, 44, 42)\",textColor:\"rgb(23, 44, 42)\"},inactiveHoverColors:{hoverLineColor:\"rgb(23, 44, 42)\",hoverTextColor:\"rgb(23, 44, 42)\"}},LXcQ9Ngg8:{disableHoverOnMobile:true},MDE2I5SdC:{activeColors:{activeLineColor:\"rgb(23, 44, 42)\",activeTextColor:\"rgb(23, 44, 42)\"},activeHoverColors:{activeHoverLineColor:\"rgb(23, 44, 42)\",activeHoverTextColor:\"rgb(23, 44, 42)\"},disableHoverOnMobile:true,inactiveColors:{lineColor:\"rgb(23, 44, 42)\",textColor:\"rgb(23, 44, 42)\"},inactiveHoverColors:{hoverLineColor:\"rgb(23, 44, 42)\",hoverTextColor:\"rgb(23, 44, 42)\"}}},baseVariant,gestureVariant)})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:dAdwoZToF,motionChild:true,nodeId:\"Tw6ieuTkA\",openInNewTab:false,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1o7p8xj framer-6d9j3l\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"Tw6ieuTkA\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bgarl6-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"QOvF8Zs7h-container\",nodeId:\"QOvF8Zs7h\",rendersWithMotion:true,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(192, 201, 201)\",activeTextColor:\"rgb(192, 201, 201)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},fontSize:oH6v_Inql,height:\"100%\",id:\"QOvF8Zs7h\",inactiveColors:{lineColor:\"rgb(255, 255, 255)\",textColor:\"rgb(192, 201, 201)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:gO_zIPVDw,layoutId:\"QOvF8Zs7h\",text:\"CONTACT\",width:\"100%\",...addPropertyOverrides({A1kiS4Mi3:{disableHoverOnMobile:true},L1BF4aHyJ:{activeColors:{activeLineColor:\"rgb(23, 44, 42)\",activeTextColor:\"rgb(23, 44, 42)\"},activeHoverColors:{activeHoverLineColor:\"rgb(23, 44, 42)\",activeHoverTextColor:\"rgb(23, 44, 42)\"},inactiveColors:{lineColor:\"rgb(23, 44, 42)\",textColor:\"rgb(23, 44, 42)\"},inactiveHoverColors:{hoverLineColor:\"rgb(23, 44, 42)\",hoverTextColor:\"rgb(23, 44, 42)\"}},LXcQ9Ngg8:{disableHoverOnMobile:true},MDE2I5SdC:{activeColors:{activeLineColor:\"rgb(23, 44, 42)\",activeTextColor:\"rgb(23, 44, 42)\"},activeHoverColors:{activeHoverLineColor:\"rgb(23, 44, 42)\",activeHoverTextColor:\"rgb(23, 44, 42)\"},disableHoverOnMobile:true,inactiveColors:{lineColor:\"rgb(23, 44, 42)\",textColor:\"rgb(23, 44, 42)\"},inactiveHoverColors:{hoverLineColor:\"rgb(23, 44, 42)\",hoverTextColor:\"rgb(23, 44, 42)\"}}},baseVariant,gestureVariant)})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4nu834\",\"data-framer-name\":\"Burger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"J8Gdl26do\",onTap:onTap183ejz4,...addPropertyOverrides({CXmRhLPVq:{onTap:onTap1fig2je},gAyyX97om:{onTap:onTapnv4dcj},JSxliy0r4:{onTap:onTap1b0894},kjeFjCkSo:{onTap:onTap1hk6tj4},lPLWuWXEL:{onTap:onTapp2pg7h},PmRz5lBpf:{onTap:onTapezrl3e}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a0oqys\",layoutDependency:layoutDependency,layoutId:\"juwNtR07y\",style:{backgroundColor:\"rgb(192, 201, 201)\"},variants:{lPLWuWXEL:{backgroundColor:\"rgb(23, 44, 42)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-37ezpm\",layoutDependency:layoutDependency,layoutId:\"gi2OnpWOT\",style:{backgroundColor:\"rgb(192, 201, 201)\",rotate:0},variants:{CXmRhLPVq:{rotate:45},gAyyX97om:{rotate:45},kjeFjCkSo:{rotate:0},lPLWuWXEL:{backgroundColor:\"rgb(23, 44, 42)\",rotate:0},PmRz5lBpf:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11jmte4\",layoutDependency:layoutDependency,layoutId:\"BLAY4n98l\",style:{backgroundColor:\"rgb(192, 201, 201)\",rotate:0},variants:{CXmRhLPVq:{rotate:135},gAyyX97om:{rotate:135},kjeFjCkSo:{rotate:0},lPLWuWXEL:{backgroundColor:\"rgb(23, 44, 42)\",rotate:0},PmRz5lBpf:{rotate:135}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mn55qo\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"elBrQSclC\",children:[/*#__PURE__*/_jsx(Link,{href:bs6Meq43p,motionChild:true,nodeId:\"qd8Udpqt7\",openInNewTab:false,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1kgb83o framer-6d9j3l\",\"data-framer-name\":\"Work\",layoutDependency:layoutDependency,layoutId:\"qd8Udpqt7\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7cdesj-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"ecfYNFKD9-container\",nodeId:\"ecfYNFKD9\",rendersWithMotion:true,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(255, 255, 255)\",activeTextColor:\"rgb(255, 255, 255)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:true,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontSize:72,height:\"100%\",id:\"ecfYNFKD9\",inactiveColors:{lineColor:\"rgb(255, 255, 255)\",textColor:\"rgb(255, 255, 255)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:FJaQ4e8yR,layoutId:\"ecfYNFKD9\",text:\"WORK\",width:\"100%\",...addPropertyOverrides({CXmRhLPVq:{fontSize:55},gAyyX97om:{fontSize:55},JSxliy0r4:{animationType:\"linear\",font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 3)\",letterSpacing:\"-0.01em\",lineHeight:\"1em\"},fontSize:55},kjeFjCkSo:{fontSize:55},lPLWuWXEL:{fontSize:55},PmRz5lBpf:{fontSize:55}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:nyhqmPqql,motionChild:true,nodeId:\"YEBQJWEk4\",openInNewTab:false,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vgmdbb framer-6d9j3l\",\"data-framer-name\":\"Services\",layoutDependency:layoutDependency,layoutId:\"YEBQJWEk4\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q44cdz-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"INqpBKTtH-container\",nodeId:\"INqpBKTtH\",rendersWithMotion:true,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(255, 255, 255)\",activeTextColor:\"rgb(255, 255, 255)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:true,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontSize:72,height:\"100%\",id:\"INqpBKTtH\",inactiveColors:{lineColor:\"rgb(255, 255, 255)\",textColor:\"rgb(255, 255, 255)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:JVonzCfMK,layoutId:\"INqpBKTtH\",text:\"SERVICES\",width:\"100%\",...addPropertyOverrides({CXmRhLPVq:{fontSize:55},gAyyX97om:{fontSize:55},JSxliy0r4:{animationType:\"linear\",font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 3)\",letterSpacing:\"-0.01em\",lineHeight:\"1em\"},fontSize:55},kjeFjCkSo:{fontSize:55},lPLWuWXEL:{fontSize:55},PmRz5lBpf:{fontSize:55}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:x8ZkjcwBa,motionChild:true,nodeId:\"OBA6EJwPD\",openInNewTab:false,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mlvb6u framer-6d9j3l\",\"data-framer-name\":\"About\",layoutDependency:layoutDependency,layoutId:\"OBA6EJwPD\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gc156e-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"NBLHdVTN7-container\",nodeId:\"NBLHdVTN7\",rendersWithMotion:true,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(255, 255, 255)\",activeTextColor:\"rgb(255, 255, 255)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:true,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontSize:72,height:\"100%\",id:\"NBLHdVTN7\",inactiveColors:{lineColor:\"rgb(255, 255, 255)\",textColor:\"rgb(255, 255, 255)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:j2exvZzAf,layoutId:\"NBLHdVTN7\",text:\"ABOUT\",width:\"100%\",...addPropertyOverrides({CXmRhLPVq:{fontSize:55},gAyyX97om:{fontSize:55},JSxliy0r4:{animationType:\"linear\",font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 3)\",letterSpacing:\"-0.01em\",lineHeight:\"1em\"},fontSize:55},kjeFjCkSo:{fontSize:55},lPLWuWXEL:{fontSize:55},PmRz5lBpf:{fontSize:55}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{href:dAdwoZToF,motionChild:true,nodeId:\"xHdzNWl47\",openInNewTab:false,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7urczt framer-6d9j3l\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"xHdzNWl47\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n27j2r-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"w6ttE4oTh-container\",nodeId:\"w6ttE4oTh\",rendersWithMotion:true,scopeId:\"NwsqX2rgT\",children:/*#__PURE__*/_jsx(HoverLink,{activeColors:{activeLineColor:\"rgb(255, 255, 255)\",activeTextColor:\"rgb(255, 255, 255)\"},activeHoverColors:{activeHoverLineColor:\"rgb(255, 255, 255)\",activeHoverTextColor:\"rgb(255, 255, 255)\"},animationSpeed:.2,animationType:\"spring\",disableHoverOnMobile:true,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontSize:72,height:\"100%\",id:\"w6ttE4oTh\",inactiveColors:{lineColor:\"rgb(255, 255, 255)\",textColor:\"rgb(255, 255, 255)\"},inactiveHoverColors:{hoverLineColor:\"rgb(255, 255, 255)\",hoverTextColor:\"rgb(255, 255, 255)\"},isActive:gO_zIPVDw,layoutId:\"w6ttE4oTh\",text:\"CONTACT\",width:\"100%\",...addPropertyOverrides({CXmRhLPVq:{fontSize:55},gAyyX97om:{fontSize:55},JSxliy0r4:{animationType:\"linear\",font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 3)\",letterSpacing:\"-0.01em\",lineHeight:\"1em\"},fontSize:55},kjeFjCkSo:{fontSize:55},lPLWuWXEL:{fontSize:55},PmRz5lBpf:{fontSize:55}},baseVariant,gestureVariant)})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uPLWM.framer-6d9j3l, .framer-uPLWM .framer-6d9j3l { display: block; }\",\".framer-uPLWM.framer-1nzrhtk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 25px 5px 25px; position: relative; width: 1200px; }\",\".framer-uPLWM .framer-xa5gmm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 42px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uPLWM .framer-17ibuix, .framer-uPLWM .framer-1diwg8l, .framer-uPLWM .framer-6arfnz, .framer-uPLWM .framer-1o7p8xj { 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; text-decoration: none; width: min-content; }\",\".framer-uPLWM .framer-6c742o-container, .framer-uPLWM .framer-c39d8d-container, .framer-uPLWM .framer-kzi9fp-container, .framer-uPLWM .framer-1bgarl6-container, .framer-uPLWM .framer-7cdesj-container, .framer-uPLWM .framer-1q44cdz-container, .framer-uPLWM .framer-gc156e-container, .framer-uPLWM .framer-n27j2r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uPLWM .framer-1f2ere { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-uPLWM .framer-eajftl { height: 32px; position: relative; width: 80px; }\",\".framer-uPLWM .framer-bu7zda { height: 28px; left: 0px; position: absolute; top: 5px; width: 28px; }\",\".framer-uPLWM .framer-15jstco { height: 1px; left: 14px; position: absolute; top: 32px; width: 37px; }\",\".framer-uPLWM .framer-1oa3r6d { height: 32px; left: 29px; position: absolute; top: 0px; width: 10px; }\",\".framer-uPLWM .framer-utcpvs { height: 18px; left: 28px; position: absolute; top: 0px; width: 23px; }\",\".framer-uPLWM .framer-h9oj5z { height: 24px; left: 50px; position: absolute; top: 8px; width: 30px; }\",\".framer-uPLWM .framer-3newap { height: 24px; left: 59px; position: absolute; top: 8px; width: 1px; }\",\".framer-uPLWM .framer-4nu834 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uPLWM .framer-1a0oqys, .framer-uPLWM .framer-37ezpm, .framer-uPLWM .framer-11jmte4 { flex: none; height: 2px; overflow: visible; position: relative; width: 44px; z-index: 1; }\",\".framer-uPLWM .framer-mn55qo { flex: none; height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: visible; position: relative; width: 1200px; }\",\".framer-uPLWM .framer-1kgb83o, .framer-uPLWM .framer-vgmdbb, .framer-uPLWM .framer-mlvb6u, .framer-uPLWM .framer-7urczt { align-content: center; align-items: center; bottom: 179px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; left: -1607px; min-width: 200px; overflow: hidden; padding: 0px; position: absolute; text-decoration: none; width: min-content; }\",\".framer-uPLWM.framer-v-a07avg.framer-1nzrhtk, .framer-uPLWM.framer-v-5crlb4.framer-1nzrhtk, .framer-uPLWM.framer-v-jqi4s2.framer-1nzrhtk { padding: 5px 20px 5px 20px; width: 810px; }\",\".framer-uPLWM.framer-v-4ptzll.framer-1nzrhtk, .framer-uPLWM.framer-v-1ipgks.framer-1nzrhtk, .framer-uPLWM.framer-v-ypo9xr.framer-1nzrhtk { align-content: flex-start; align-items: flex-start; height: 42px; padding: 0px; width: min-content; }\",\".framer-uPLWM.framer-v-4ptzll .framer-xa5gmm, .framer-uPLWM.framer-v-ypo9xr .framer-xa5gmm { align-content: flex-start; align-items: flex-start; height: min-content; left: 0px; padding: 5px 10px 5px 10px; position: absolute; right: 0px; top: 0px; width: unset; z-index: 1; }\",\".framer-uPLWM.framer-v-4ptzll .framer-4nu834, .framer-uPLWM.framer-v-1ipgks .framer-4nu834, .framer-uPLWM.framer-v-ypo9xr .framer-4nu834 { gap: 7px; }\",\".framer-uPLWM.framer-v-4ptzll .framer-1a0oqys, .framer-uPLWM.framer-v-4ptzll .framer-37ezpm, .framer-uPLWM.framer-v-4ptzll .framer-11jmte4, .framer-uPLWM.framer-v-1ipgks .framer-1a0oqys, .framer-uPLWM.framer-v-1ipgks .framer-37ezpm, .framer-uPLWM.framer-v-1ipgks .framer-11jmte4, .framer-uPLWM.framer-v-ypo9xr .framer-1a0oqys, .framer-uPLWM.framer-v-ypo9xr .framer-37ezpm, .framer-uPLWM.framer-v-ypo9xr .framer-11jmte4 { width: 35px; }\",\".framer-uPLWM.framer-v-4ptzll .framer-mn55qo, .framer-uPLWM.framer-v-u2sa2f .framer-mn55qo, .framer-uPLWM.framer-v-1ipgks .framer-mn55qo, .framer-uPLWM.framer-v-sp8bgk .framer-mn55qo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: hidden; padding: 0px; width: 405px; }\",\".framer-uPLWM.framer-v-4ptzll .framer-1kgb83o, .framer-uPLWM.framer-v-4ptzll .framer-vgmdbb, .framer-uPLWM.framer-v-4ptzll .framer-mlvb6u, .framer-uPLWM.framer-v-4ptzll .framer-7urczt, .framer-uPLWM.framer-v-u2sa2f .framer-1kgb83o, .framer-uPLWM.framer-v-u2sa2f .framer-vgmdbb, .framer-uPLWM.framer-v-u2sa2f .framer-mlvb6u, .framer-uPLWM.framer-v-u2sa2f .framer-7urczt, .framer-uPLWM.framer-v-1ipgks .framer-1kgb83o, .framer-uPLWM.framer-v-1ipgks .framer-vgmdbb, .framer-uPLWM.framer-v-1ipgks .framer-mlvb6u, .framer-uPLWM.framer-v-1ipgks .framer-7urczt, .framer-uPLWM.framer-v-sp8bgk .framer-1kgb83o, .framer-uPLWM.framer-v-sp8bgk .framer-vgmdbb, .framer-uPLWM.framer-v-sp8bgk .framer-mlvb6u, .framer-uPLWM.framer-v-sp8bgk .framer-7urczt, .framer-uPLWM.framer-v-ypo9xr .framer-1kgb83o, .framer-uPLWM.framer-v-ypo9xr .framer-vgmdbb, .framer-uPLWM.framer-v-ypo9xr .framer-mlvb6u, .framer-uPLWM.framer-v-ypo9xr .framer-7urczt, .framer-uPLWM.framer-v-1te8owa .framer-1kgb83o, .framer-uPLWM.framer-v-1te8owa .framer-vgmdbb, .framer-uPLWM.framer-v-1te8owa .framer-mlvb6u, .framer-uPLWM.framer-v-1te8owa .framer-7urczt { bottom: unset; height: 63px; left: unset; min-width: unset; position: relative; }\",\".framer-uPLWM.framer-v-u2sa2f.framer-1nzrhtk { align-content: flex-start; align-items: flex-start; padding: 0px; width: min-content; }\",\".framer-uPLWM.framer-v-u2sa2f .framer-xa5gmm, .framer-uPLWM.framer-v-1ipgks .framer-xa5gmm, .framer-uPLWM.framer-v-sp8bgk .framer-xa5gmm, .framer-uPLWM.framer-v-1te8owa .framer-xa5gmm { align-content: flex-start; align-items: flex-start; height: min-content; left: 0px; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; right: 0px; top: 0px; width: unset; z-index: 1; }\",\".framer-uPLWM.framer-v-u2sa2f .framer-4nu834, .framer-uPLWM.framer-v-sp8bgk .framer-4nu834, .framer-uPLWM.framer-v-1te8owa .framer-4nu834 { gap: 7px; min-width: 44px; overflow: hidden; }\",\".framer-uPLWM.framer-v-u2sa2f .framer-1a0oqys, .framer-uPLWM.framer-v-sp8bgk .framer-1a0oqys, .framer-uPLWM.framer-v-1te8owa .framer-1a0oqys { position: absolute; right: -70px; top: 6px; width: 35px; }\",\".framer-uPLWM.framer-v-u2sa2f .framer-37ezpm, .framer-uPLWM.framer-v-sp8bgk .framer-37ezpm, .framer-uPLWM.framer-v-1te8owa .framer-37ezpm { left: 5px; position: absolute; right: 4px; top: 16px; width: unset; }\",\".framer-uPLWM.framer-v-u2sa2f .framer-11jmte4, .framer-uPLWM.framer-v-sp8bgk .framer-11jmte4, .framer-uPLWM.framer-v-1te8owa .framer-11jmte4 { left: calc(50.00000000000002% - 35px / 2); position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 35px; }\",\".framer-uPLWM.framer-v-sp8bgk.framer-1nzrhtk, .framer-uPLWM.framer-v-1te8owa.framer-1nzrhtk { flex-direction: column; padding: 0px; width: min-content; }\",\".framer-uPLWM.framer-v-ypo9xr .framer-mn55qo, .framer-uPLWM.framer-v-1te8owa .framer-mn55qo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 0px; width: 405px; }\",'.framer-uPLWM[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-uPLWM [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-uPLWM[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-uPLWM [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-uPLWM[data-hide-scrollbars=\"true\"], .framer-uPLWM [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"r1qgyy9M4\":{\"layout\":[\"fixed\",\"auto\"]},\"L1BF4aHyJ\":{\"layout\":[\"fixed\",\"auto\"]},\"LXcQ9Ngg8\":{\"layout\":[\"fixed\",\"auto\"]},\"A1kiS4Mi3\":{\"layout\":[\"fixed\",\"auto\"]},\"MDE2I5SdC\":{\"layout\":[\"fixed\",\"auto\"]},\"JSxliy0r4\":{\"layout\":[\"auto\",\"fixed\"]},\"gAyyX97om\":{\"layout\":[\"auto\",\"auto\"]},\"kjeFjCkSo\":{\"layout\":[\"auto\",\"fixed\"]},\"PmRz5lBpf\":{\"layout\":[\"auto\",\"auto\"]},\"lPLWuWXEL\":{\"layout\":[\"auto\",\"fixed\"]},\"CXmRhLPVq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"E_L5pmaKG\":\"homeLink\",\"bs6Meq43p\":\"workLink\",\"FJaQ4e8yR\":\"workActive\",\"nyhqmPqql\":\"servicesLink\",\"JVonzCfMK\":\"serviceActive\",\"x8ZkjcwBa\":\"aboutLink\",\"j2exvZzAf\":\"aboutActive\",\"dAdwoZToF\":\"contactLink\",\"gO_zIPVDw\":\"contactActive\",\"oH6v_Inql\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerNwsqX2rgT=withCSS(Component,css,\"framer-uPLWM\");export default FramerNwsqX2rgT;FramerNwsqX2rgT.displayName=\"twice_navigation\";FramerNwsqX2rgT.defaultProps={height:52,width:1200};addPropertyControls(FramerNwsqX2rgT,{variant:{options:[\"mYIUnubUa\",\"r1qgyy9M4\",\"L1BF4aHyJ\",\"LXcQ9Ngg8\",\"A1kiS4Mi3\",\"MDE2I5SdC\",\"JSxliy0r4\",\"gAyyX97om\",\"kjeFjCkSo\",\"PmRz5lBpf\",\"lPLWuWXEL\",\"CXmRhLPVq\"],optionTitles:[\"Desktop\",\"Desktop Blur\",\"Desktop Black\",\"Tablet\",\"Tablet Blur\",\"Tablet Black\",\"Phone Clear\",\"Phone Clear Open\",\"Phone Blur\",\"Phone Blur Open\",\"Phone Black\",\"Phone Black Open\"],title:\"Variant\",type:ControlType.Enum},E_L5pmaKG:{title:\"Home Link\",type:ControlType.Link},bs6Meq43p:{title:\"Work Link\",type:ControlType.Link},FJaQ4e8yR:{defaultValue:false,title:\"Work Active\",type:ControlType.Boolean},nyhqmPqql:{title:\"Services Link\",type:ControlType.Link},JVonzCfMK:{defaultValue:false,title:\"Service Active\",type:ControlType.Boolean},x8ZkjcwBa:{title:\"About Link\",type:ControlType.Link},j2exvZzAf:{defaultValue:false,description:\"\",title:\"About Active\",type:ControlType.Boolean},dAdwoZToF:{title:\"Contact Link\",type:ControlType.Link},gO_zIPVDw:{defaultValue:false,description:\"\",title:\"Contact Active\",type:ControlType.Boolean},oH6v_Inql:{defaultValue:30,max:72,min:8,step:1,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerNwsqX2rgT,[{explicitInter:true,fonts:[{cssFamilyName:\"Formula Condensed Bold\",source:\"custom\",uiFamilyName:\"Formula Condensed Bold\",url:\"https://framerusercontent.com/assets/4HTo7pUwCFDIYSJspcYmauC3H8.woff2\"}]},...HoverLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNwsqX2rgT\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"52\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r1qgyy9M4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L1BF4aHyJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LXcQ9Ngg8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A1kiS4Mi3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MDE2I5SdC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JSxliy0r4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"gAyyX97om\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kjeFjCkSo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"PmRz5lBpf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lPLWuWXEL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"CXmRhLPVq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"E_L5pmaKG\\\":\\\"homeLink\\\",\\\"bs6Meq43p\\\":\\\"workLink\\\",\\\"FJaQ4e8yR\\\":\\\"workActive\\\",\\\"nyhqmPqql\\\":\\\"servicesLink\\\",\\\"JVonzCfMK\\\":\\\"serviceActive\\\",\\\"x8ZkjcwBa\\\":\\\"aboutLink\\\",\\\"j2exvZzAf\\\":\\\"aboutActive\\\",\\\"dAdwoZToF\\\":\\\"contactLink\\\",\\\"gO_zIPVDw\\\":\\\"contactActive\\\",\\\"oH6v_Inql\\\":\\\"fontSize\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NwsqX2rgT.map"],"mappings":"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"}