{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/ozEmHfjNuPlYdOaimlhV/Ticker.js", "ssg:https://framerusercontent.com/modules/lfxj0sCHSLD1aMc4nbEq/RZpqeH1kT9cfI2P4Bu8F/dueJCz4_K.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{wrap}from\"popmotion\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ const{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){useLayoutEffect(()=>{measure();},[]);/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const transformRef=useRef(null);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();useAnimationFrame(t=>{if(isCanvas||!transformRef.current||!animateToValue||isReducedMotion){return;}/**\n         * In case this animation is delayed from starting because we're running a bunch\n         * of other work, we want to set an initial time rather than counting from 0.\n         * That ensures that if the animation is delayed, it starts from the first frame\n         * rather than jumping.\n         */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;/* Direction */ if(direction===\"left\"){transformRef.current.style.transform=`translateX(-${xOrY.current}px)`;}if(direction===\"right\"){transformRef.current.style.transform=`translateX(${xOrY.current}px)`;}if(direction===\"top\"){transformRef.current.style.transform=`translateY(-${xOrY.current}px)`;}if(direction===\"bottom\"){transformRef.current.style.transform=`translateY(${xOrY.current}px)`;}});/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(\"ul\",{style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",willChange:\"transform\",...style},ref:transformRef,onMouseEnter:()=>isHover.current=true,onMouseLeave:()=>isHover.current=false,children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:.5,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/ozEmHfjNuPlYdOaimlhV/Ticker.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/huB9WVbDxG8GRC1iCUvp/l1sxmQR7Z3rkyZp9nynY/ro7OPezbn.js\";const FormSparkFonts=getFonts(FormSpark);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"T6qOM5To3\",\"Y5tMwOnir\",\"mZ4vVb2KL\"];const serializationHash=\"framer-G8T87\";const variantClassNames={mZ4vVb2KL:\"framer-v-1tixmoj\",T6qOM5To3:\"framer-v-15xyr0c\",Y5tMwOnir:\"framer-v-1l2b351\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={mob:\"Y5tMwOnir\",Tab:\"mZ4vVb2KL\",web:\"T6qOM5To3\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"T6qOM5To3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T6qOM5To3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1fagiok=activeVariantCallback(async(...args)=>{setVariant(\"Y5tMwOnir\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Y5tMwOnir\",\"mZ4vVb2KL\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Y5tMwOnir\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15xyr0c\",className,classNames),\"data-framer-name\":\"web\",layoutDependency:layoutDependency,layoutId:\"T6qOM5To3\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({mZ4vVb2KL:{\"data-framer-name\":\"Tab\"},Y5tMwOnir:{\"data-framer-name\":\"mob\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hajv88\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"PgPa2XqA_\",style:{backgroundColor:\"rgb(31, 26, 78)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zlfcv8\",\"data-framer-name\":\"Headline _ form\",layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14809\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xv9kyr\",\"data-framer-name\":\"Frame 1686556806\",layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14810\",...addPropertyOverrides({Y5tMwOnir:{\"data-highlight\":true,onTap:onTap1fagiok}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Are you ready to start winning?\"})}),className:\"framer-1nce73z\",\"data-framer-name\":\"Are you ready to start winning?\",fonts:[\"CUSTOM;Freizeit Regular\"],layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14811\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Y5tMwOnir:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Are you ready to start winning?\"})}),onTap:onTap1fagiok}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qlctj6\",\"data-framer-name\":\"Frame 1686556791\",layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14812\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/86435510/admin/feed/posts/\",nodeId:\"I785:15521;785:14814\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"LinkedIn\"})})})}),className:\"framer-1a21zz1\",\"data-framer-name\":\"LinkedIn\",fonts:[\"CUSTOM;Freizeit Regular\"],layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14814\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Y5tMwOnir:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/86435510/admin/feed/posts/\",nodeId:\"I785:15521;785:14814\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"LinkedIn\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/designpeeps.ux\",nodeId:\"I785:15521;785:14815\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Facebook\"})})})}),className:\"framer-11l1ca2\",\"data-framer-name\":\"Facebook\",fonts:[\"CUSTOM;Freizeit Regular\"],layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14815\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Y5tMwOnir:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/designpeeps.ux\",nodeId:\"I785:15521;785:14815\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Facebook\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/design_peeps/\",nodeId:\"I785:15521;785:14816\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Instagram\"})})})}),className:\"framer-165vhjx\",\"data-framer-name\":\"Instagram\",fonts:[\"CUSTOM;Freizeit Regular\"],layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14816\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Y5tMwOnir:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/design_peeps/\",nodeId:\"I785:15521;785:14816\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Instagram\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"X.\"})}),className:\"framer-16d7aj3\",\"data-framer-name\":\"X.\",fonts:[\"CUSTOM;Freizeit Regular\"],layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14817\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Y5tMwOnir:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"X.\"})})}},baseVariant,gestureVariant)})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-184tase\",\"data-framer-name\":\"Contact_form\",layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14818\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Send in your queries!\"})}),className:\"framer-13b4q2j\",\"data-framer-name\":\"heading text\",fonts:[\"CUSTOM;Freizeit Regular\"],layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14819\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-etzuhj-container\",layoutDependency:layoutDependency,layoutId:\"NjwNhnxij-container\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"var(--token-bb9f5454-25c0-4303-a404-2f42cd8edc0d, rgb(255, 255, 255))\",fill:\"var(--token-78a86dff-f31c-4581-b2bd-45160d8468f6, rgb(189, 80, 158))\",fontWeight:600,label:\"Send Query!\"},email:{placeholder:\"Your Email?\",value:\"\"},font:true,fontFamily:\"freizeit\",fontSize:16,fontWeight:500,formId:\"6VzkzrpSI\",gap:15,height:\"100%\",id:\"NjwNhnxij\",inputs:{color:\"rgb(255, 255, 255)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(22, 18, 64)\",placeholderColor:\"rgba(255, 255, 255, 0.8)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"NjwNhnxij\",message:{placeholder:\"Tell us about your project?\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:false})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ggt49b\",\"data-framer-name\":\"Frame 1686557013\",layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14919\",style:{backgroundColor:\"rgb(31, 26, 78)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ny7ub\",\"data-framer-name\":\"Frame 1686557021\",layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14920\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"2025 Design Peeps | All rights reserved.\"})}),className:\"framer-vajykg\",\"data-framer-name\":\"Pricing\",fonts:[\"CUSTOM;Freizeit Regular\"],layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14921\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Y5tMwOnir:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"2025 Design Peeps | All rights reserved.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19lt435\",\"data-framer-name\":\"Frame 1686557013\",layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14923\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"lowercase\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@designpeeps.net\",nodeId:\"I785:15521;785:14924\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"info@designpeeps.net\"})})})}),className:\"framer-ee2jmm\",\"data-framer-name\":\"Pricing\",fonts:[\"CUSTOM;Freizeit Regular\"],layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14924\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lp64a\",\"data-border\":true,\"data-framer-name\":\"Ellipse 2\",layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14945\",style:{\"--border-bottom-width\":\"1.16133451461792px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1.16133451461792px\",\"--border-right-width\":\"1.16133451461792px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.16133451461792px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Freizeit Regular\", \"Freizeit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/message/T5PFCC6HWPFJO1\",nodeId:\"I785:15521;785:14944\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"+\u202A971\\xa052\\xa0966\\xa01770\u202C\"})})})}),className:\"framer-1d9a4zf\",\"data-framer-name\":\"Pricing\",fonts:[\"CUSTOM;Freizeit Regular\"],layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14944\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jjzozn\",\"data-framer-name\":\"Frame 1686556793\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:217,layoutDependency:layoutDependency,layoutId:\"I785:15521;785:14928\",svg:'<svg width=\"217\" height=\"32\" viewBox=\"0 0 217 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.1025 0.0463867C7.29686 0.0463867 0.158203 7.18504 0.158203 15.9907C0.158203 24.7963 7.29686 31.9349 16.1025 31.9349C24.9081 31.9349 32.0467 24.7963 32.0467 15.9907C32.0467 7.18504 24.9081 0.0463867 16.1025 0.0463867ZM7.20779 17.963C-3.12482 20.9152 -0.172644 5.69623 13.8629 10.6462C13.4175 13.7511 11.6869 16.6905 7.20779 17.963ZM18.8129 13.013C17.9858 12.5168 17.1841 12.0841 16.4079 11.7151C27.7839 -5.10719 41.7558 26.6668 18.8129 13.013Z\" fill=\"#1F1A4E\" stroke=\"white\" stroke-width=\"1.1449\" stroke-miterlimit=\"10\"/>\\n<path d=\"M13.8626 10.6468C13.4172 13.7516 11.6993 16.6784 7.20746 17.9636C-3.12514 20.9158 -0.172968 5.70952 13.8626 10.6468ZM18.8126 13.0136C17.9854 12.5173 17.1838 12.0847 16.4075 11.7157C27.7836 -5.10662 41.7555 26.6674 18.8126 13.0136Z\" fill=\"#1F1A4E\" stroke=\"white\" stroke-width=\"1.1449\" stroke-miterlimit=\"10\"/>\\n<path d=\"M18.6724 31.7187C18.6724 31.7187 11.0629 21.4752 14.9186 14.222C15.364 13.3567 15.8602 12.5169 16.4074 11.7152C15.5803 11.308 14.7277 10.9517 13.8624 10.6463C14.5496 5.82362 12.1318 0.619141 12.1318 0.619141\" fill=\"#1F1A4E\"/>\\n<path d=\"M18.6724 31.7187C18.6724 31.7187 11.0629 21.4752 14.9186 14.222C15.364 13.3567 15.8602 12.5169 16.4074 11.7152C15.5803 11.308 14.7277 10.9517 13.8624 10.6463C14.5496 5.82362 12.1318 0.619141 12.1318 0.619141\" stroke=\"white\" stroke-width=\"1.1449\" stroke-miterlimit=\"10\"/>\\n<path d=\"M59.5776 1.64062V21.8176H57.374L57.2559 19.2212C56.705 20.1725 55.9574 20.8861 55.013 21.3618C54.0686 21.8573 53.0455 22.0951 51.9634 22.0951C49.8779 22.0951 48.1662 21.441 46.8283 20.1131C45.4904 18.8049 44.8018 17.0013 44.8018 14.7022C44.8018 12.3832 45.4707 10.5597 46.8086 9.27141C48.1465 7.9831 49.8582 7.32903 51.924 7.32903C52.9865 7.32903 54.0293 7.56687 55.013 8.06238C55.9967 8.55788 56.7444 9.25159 57.2166 10.1831V1.66044H59.5382L59.5776 1.64062ZM52.1405 9.52907C50.7042 9.52907 49.5237 9.98494 48.5793 10.8967C47.6349 11.8084 47.1627 13.0769 47.1627 14.6823C47.1627 16.2878 47.6349 17.5364 48.5793 18.468C49.5237 19.3995 50.7042 19.8554 52.1405 19.8554C53.5767 19.8554 54.7572 19.3797 55.7213 18.4085C56.6854 17.4373 57.1576 16.1887 57.1576 14.6625C57.1576 13.1562 56.6854 11.9273 55.7213 10.976C54.7572 10.0246 53.5571 9.52907 52.1208 9.52907H52.1405ZM75.3764 19.5779C74.6878 20.4104 73.7828 21.0248 72.681 21.4609C71.5792 21.8969 70.4381 22.1149 69.2772 22.1149C67.054 22.1149 65.2636 21.441 63.8863 20.0734C62.5091 18.7257 61.8205 16.922 61.8205 14.6625C61.8205 12.5021 62.5091 10.7381 63.8863 9.35069C65.2636 7.96328 67.0146 7.26957 69.1592 7.26957C71.4415 7.26957 73.2712 7.9831 74.6091 9.41015C75.947 10.8372 76.4979 12.9183 76.2225 15.6337H64.2208C64.3585 16.922 64.8898 17.9527 65.8538 18.7257C66.7982 19.4986 67.9787 19.8951 69.3559 19.8951C70.202 19.8951 71.048 19.7365 71.894 19.4194C72.74 19.1022 73.3893 18.6662 73.8615 18.1112L75.4355 19.5581H75.3764V19.5779ZM73.9992 13.6913C73.9402 12.3237 73.4877 11.2733 72.622 10.5399C71.7563 9.80656 70.6348 9.42997 69.2182 9.42997C67.9394 9.42997 66.8376 9.80656 65.8932 10.5597C64.9488 11.3129 64.3979 12.3435 64.2011 13.6715H73.9992V13.6913ZM87.4371 10.7777C86.4337 9.8462 85.0958 9.39033 83.4628 9.39033C82.4397 9.37051 81.5937 9.5489 80.9247 9.90566C80.2755 10.2624 79.941 10.7976 79.9607 11.4715C79.9803 12.6012 81.1608 13.3147 83.4825 13.5724C84.1514 13.6517 84.7023 13.731 85.1351 13.8102C85.568 13.8895 86.0795 14.0283 86.6895 14.2265C87.2994 14.4247 87.7912 14.6823 88.1257 14.9598C88.4799 15.2571 88.7947 15.6535 89.0504 16.149C89.3062 16.6445 89.4439 17.259 89.4243 17.913C89.4046 19.2806 88.834 20.3311 87.7126 21.0644C86.5911 21.7978 85.1745 22.1744 83.5021 22.1744C80.6886 22.1744 78.5834 21.2825 77.1668 19.4987L78.5047 17.8536C79.6852 19.3203 81.3576 20.0536 83.5415 20.0536C84.4859 20.0536 85.2925 19.8752 86.0205 19.5383C86.7485 19.2013 87.1026 18.6266 87.1223 17.8337C87.142 17.1202 86.8272 16.6049 86.1582 16.268C85.509 15.9508 84.5449 15.6932 83.3054 15.5544C82.4987 15.4553 81.8101 15.3364 81.2395 15.1778C80.669 15.0193 80.0787 14.8013 79.4885 14.5238C78.8982 14.2463 78.4457 13.8301 78.1309 13.3346C77.8161 12.8391 77.6587 12.2048 77.6587 11.4715C77.6587 10.5003 77.9538 9.70746 78.5441 9.05339C79.1343 8.39932 79.8426 7.94346 80.669 7.66597C81.4953 7.38849 82.4003 7.26957 83.3644 7.28939C85.568 7.28939 87.3584 7.92364 88.7553 9.19213L87.4174 10.7579L87.4371 10.7777ZM91.923 1.87847C92.4345 1.6208 92.9461 1.6208 93.4773 1.89829C93.9888 2.17577 94.2446 2.63164 94.2446 3.2857C94.2446 3.93977 93.9888 4.39564 93.4773 4.6533C92.9657 4.91096 92.4542 4.91096 91.923 4.63348C91.4114 4.356 91.1556 3.90013 91.1556 3.24606C91.1556 2.592 91.4114 2.13613 91.923 1.87847ZM91.4901 21.8573H93.8314V7.54705H91.4901V21.8573ZM100.009 27.1493C100.973 27.8033 102.154 28.1403 103.57 28.1601C104.948 28.1601 106.109 27.8826 107.092 27.3475C108.056 26.7925 108.548 25.9402 108.548 24.7906C108.548 23.7005 108.076 22.8483 107.132 22.2537C106.187 21.6591 105.007 21.3618 103.59 21.3618C101.347 21.3618 99.5371 20.7275 98.1599 19.4788C96.8023 18.2302 96.1137 16.5058 96.1137 14.3256C96.1137 12.1057 96.8613 10.3813 98.3566 9.13267C99.8519 7.884 101.603 7.24975 103.59 7.24975C105.243 7.24975 106.581 7.60651 107.604 8.32004L109.119 6.47676L110.771 7.80471L109.178 9.70746C110.398 11.0949 111.008 12.621 111.008 14.3256C111.008 15.6337 110.673 16.8229 109.984 17.8932C109.316 18.9635 108.312 19.6969 107.014 20.1329C109.611 20.9059 110.909 22.4519 110.909 24.7708C110.909 26.515 110.181 27.8826 108.725 28.8736C107.269 29.8448 105.538 30.3403 103.511 30.3403C101.328 30.3403 99.5765 29.8052 98.2386 28.7151C96.9007 27.6249 96.2318 26.1384 96.2711 24.2555H98.5337C98.5731 25.524 99.0453 26.4952 100.009 27.1493ZM99.9306 17.9923C100.895 18.8644 102.134 19.2806 103.629 19.2806C105.125 19.2806 106.345 18.8049 107.289 17.8536C108.233 16.9022 108.725 15.7328 108.725 14.3454C108.725 12.7796 108.233 11.5706 107.23 10.7183C106.227 9.8462 105.026 9.42997 103.61 9.42997C102.233 9.42997 101.032 9.86602 100.009 10.7183C98.9862 11.5706 98.455 12.7796 98.455 14.3454C98.4747 15.9112 98.9665 17.1202 99.9306 17.9923ZM113.329 7.58669H115.474L115.592 9.86602C116.792 8.22094 118.405 7.38849 120.432 7.38849C122.262 7.38849 123.757 7.9831 124.918 9.15249C126.078 10.3417 126.649 11.9471 126.649 13.9886V21.8573H124.308V14.0084C124.308 12.621 123.934 11.5309 123.167 10.7579C122.399 9.98494 121.356 9.56872 120.019 9.56872C118.74 9.58854 117.697 10.0444 116.89 10.9165C116.084 11.8084 115.67 12.8985 115.67 14.2066V21.8573H113.349V7.58669H113.329Z\" fill=\"white\"/>\\n<path d=\"M135.152 5.26524H137.397L137.516 8.1281C138.072 7.13232 138.846 6.36475 139.82 5.82537C140.793 5.28599 141.865 4.99555 142.997 4.99555C145.083 5.03704 146.791 5.76313 148.121 7.17381C149.452 8.5845 150.107 10.4308 150.107 12.6921C150.107 15.0363 149.432 16.9034 148.101 18.3141C146.771 19.7247 145.023 20.4508 142.858 20.4508C141.766 20.4508 140.713 20.2019 139.74 19.704C138.767 19.2061 137.992 18.4385 137.456 17.4428V27.1516H135.152V5.26524ZM146.334 16.6752C147.287 15.7001 147.744 14.3932 147.744 12.7543C147.744 11.0947 147.267 9.80847 146.334 8.85419C145.4 7.8999 144.189 7.42276 142.699 7.42276C141.21 7.42276 140.018 7.92065 139.085 8.93717C138.151 9.95369 137.694 11.2192 137.694 12.7751C137.694 14.3102 138.171 15.5757 139.105 16.5922C140.058 17.6087 141.25 18.1274 142.679 18.1481C144.189 18.1066 145.4 17.6295 146.334 16.6752ZM166.333 17.7124C165.638 18.5838 164.725 19.2269 163.613 19.6833C162.5 20.1397 161.348 20.3679 160.177 20.3679C157.932 20.3679 156.125 19.6625 154.735 18.2311C153.345 16.8204 152.649 14.9326 152.649 12.5676C152.649 10.3064 153.345 8.46002 154.735 7.00785C156.125 5.55568 157.893 4.82959 160.057 4.82959C162.361 4.82959 164.208 5.57642 165.559 7.07009C166.909 8.56375 167.465 10.742 167.187 13.5841H155.053C155.192 14.9326 155.728 16.0113 156.701 16.8204C157.674 17.6295 158.846 18.0444 160.236 18.0444C161.09 18.0444 161.944 17.8784 162.798 17.5465C163.652 17.2146 164.308 16.7582 164.784 16.1773L166.373 17.6917H166.333V17.7124ZM164.943 11.5718C164.884 10.1404 164.427 9.0409 163.553 8.27332C162.679 7.50574 161.547 7.11158 160.117 7.11158C158.826 7.11158 157.714 7.50574 156.761 8.29406C155.807 9.08238 155.251 10.1611 155.053 11.5511H164.943V11.5718ZM183.255 17.7124C182.56 18.5838 181.646 19.2269 180.534 19.6833C179.422 20.1397 178.27 20.3679 177.098 20.3679C174.854 20.3679 173.046 19.6625 171.656 18.2311C170.266 16.8204 169.571 14.9326 169.571 12.5676C169.571 10.3064 170.266 8.46002 171.656 7.00785C173.046 5.55568 174.814 4.82959 176.979 4.82959C179.283 4.82959 181.13 5.57642 182.48 7.07009C183.831 8.56375 184.387 10.742 184.109 13.5841H171.974C172.113 14.9326 172.649 16.0113 173.622 16.8204C174.595 17.6295 175.767 18.0444 177.157 18.0444C178.011 18.0444 178.865 17.8784 179.719 17.5465C180.573 17.2146 181.229 16.7582 181.706 16.1773L183.294 17.6917H183.255V17.7124ZM181.884 11.5718C181.825 10.1404 181.368 9.0409 180.494 8.27332C179.62 7.50574 178.488 7.11158 177.058 7.11158C175.767 7.11158 174.655 7.50574 173.702 8.29406C172.748 9.08238 172.192 10.1611 171.994 11.5511H181.884V11.5718ZM187.425 5.26524H189.67L189.789 8.1281C190.345 7.13232 191.119 6.36475 192.093 5.82537C193.066 5.26524 194.138 4.99555 195.27 4.99555C197.356 5.03704 199.064 5.76313 200.394 7.17381C201.725 8.5845 202.38 10.4308 202.38 12.6921C202.38 15.0363 201.705 16.9034 200.374 18.3141C199.044 19.7247 197.296 20.4508 195.131 20.4508C194.039 20.4508 192.986 20.2019 192.013 19.704C191.04 19.2061 190.265 18.4385 189.729 17.4428V27.1516H187.425V5.26524ZM198.607 16.6752C199.56 15.7001 200.017 14.3932 200.017 12.7543C200.017 11.0947 199.54 9.80847 198.607 8.85419C197.673 7.8999 196.462 7.42276 194.972 7.42276C193.483 7.42276 192.291 7.92065 191.358 8.93717C190.424 9.93294 189.968 11.2192 189.968 12.7751C189.968 14.3102 190.444 15.5757 191.378 16.5922C192.331 17.6087 193.523 18.1274 194.953 18.1481C196.462 18.1066 197.654 17.6295 198.607 16.6752ZM214.992 8.52226C213.979 7.54723 212.628 7.07009 210.98 7.07009C209.947 7.04934 209.093 7.23605 208.418 7.60947C207.763 7.98288 207.425 8.54301 207.445 9.24835C207.465 10.4308 208.656 11.1777 211 11.4474C211.675 11.5303 212.231 11.6133 212.668 11.6963C213.105 11.7793 213.621 11.9245 214.237 12.1319C214.853 12.3394 215.349 12.6091 215.687 12.8995C216.044 13.2107 216.362 13.6256 216.62 14.1442C216.879 14.6629 217.018 15.306 216.998 15.9906C216.978 17.422 216.402 18.5215 215.27 19.2891C214.138 20.0567 212.708 20.4508 211.02 20.4508C208.18 20.4508 206.055 19.5173 204.625 17.6502L205.975 15.9283C207.167 17.4635 208.855 18.2311 211.059 18.2311C212.013 18.2311 212.827 18.0444 213.562 17.6917C214.297 17.339 214.654 16.7374 214.674 15.9076C214.694 15.1608 214.376 14.6214 213.701 14.2687C213.045 13.9368 212.072 13.6671 210.821 13.5219C210.007 13.4182 209.312 13.2937 208.736 13.1277C208.16 12.9618 207.564 12.7336 206.968 12.4431C206.372 12.1527 205.916 11.717 205.598 11.1984C205.28 10.6798 205.121 10.0159 205.121 9.24835C205.121 8.23183 205.419 7.40201 206.015 6.71742C206.611 6.03282 207.326 5.55568 208.16 5.26524C208.994 4.97481 209.908 4.85033 210.881 4.87108C213.105 4.87108 214.912 5.53493 216.322 6.86263L214.972 8.50151L214.992 8.52226Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vpzcl5\",layoutDependency:layoutDependency,layoutId:\"Rd6U5bP12\",style:{backgroundColor:\"var(--token-78a86dff-f31c-4581-b2bd-45160d8468f6, rgb(189, 80, 158))\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pjjbsl-container\",layoutDependency:layoutDependency,layoutId:\"kvK4aGZYC-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"kvK4aGZYC\",layoutId:\"kvK4aGZYC\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-189fk5x\",\"data-framer-name\":\"good text\",layoutDependency:layoutDependency,layoutId:\"yfT4TjEBY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ueszh3\",\"data-framer-name\":\"Frame 1686556696\",layoutDependency:layoutDependency,layoutId:\"IpFXQD5n4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Freizeit Medium\", \"Freizeit Medium Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Seriously Good Design\"})}),className:\"framer-7yzoxc\",\"data-framer-name\":\"Seriously Good Design\",fonts:[\"CUSTOM;Freizeit Medium\"],layoutDependency:layoutDependency,layoutId:\"eZfrQOKeh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wy8mdi\",\"data-framer-name\":\"Frame 1686556685\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,layoutDependency:layoutDependency,layoutId:\"A4DzAYcyL\",svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.8344 47.4409C24.7481 47.7303 24.3208 47.7303 24.2345 47.4409C21.2402 37.3981 14.0251 27.5529 5.06458 24.8376C4.76226 24.746 4.76226 24.254 5.06458 24.1624C14.025 21.4471 21.2402 11.6019 24.2345 1.55912C24.3208 1.26972 24.7481 1.26972 24.8344 1.55912C27.8288 11.6019 35.0439 21.4471 44.0044 24.1624C44.3067 24.254 44.3067 24.746 44.0044 24.8376C35.0439 27.5529 27.8288 37.3981 24.8344 47.4409Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dmis1m\",\"data-framer-name\":\"Frame 1686556698\",layoutDependency:layoutDependency,layoutId:\"XM6sIaee0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Freizeit Medium\", \"Freizeit Medium Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Seriously Good Design\"})}),className:\"framer-1eg5nk\",\"data-framer-name\":\"Seriously Good Design\",fonts:[\"CUSTOM;Freizeit Medium\"],layoutDependency:layoutDependency,layoutId:\"zRC_I6_c3\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bzijfa\",\"data-framer-name\":\"Frame 1686556685\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,layoutDependency:layoutDependency,layoutId:\"ObuK7xft2\",svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.3676 47.4409C24.2814 47.7303 23.8541 47.7303 23.7678 47.4409C20.7734 37.3981 13.5583 27.5529 4.59784 24.8376C4.29552 24.746 4.29552 24.254 4.59784 24.1624C13.5583 21.4471 20.7734 11.6019 23.7678 1.55912C23.8541 1.26972 24.2814 1.26972 24.3676 1.55912C27.362 11.6019 34.5771 21.4471 43.5376 24.1624C43.8399 24.254 43.8399 24.746 43.5376 24.8376C34.5771 27.5529 27.362 37.3981 24.3676 47.4409Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j3qdln\",\"data-framer-name\":\"Frame 1686556697\",layoutDependency:layoutDependency,layoutId:\"bEZzf2Ik7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Freizeit Medium\", \"Freizeit Medium Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Seriously Good Design\"})}),className:\"framer-1itwblf\",\"data-framer-name\":\"Seriously Good Design\",fonts:[\"CUSTOM;Freizeit Medium\"],layoutDependency:layoutDependency,layoutId:\"WUkDNiesU\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-iavl6a\",\"data-framer-name\":\"Frame 1686556685\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,layoutDependency:layoutDependency,layoutId:\"BdJPiJzNl\",svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.901 47.4409C24.8147 47.7303 24.3875 47.7303 24.3012 47.4409C21.3068 37.3981 14.0917 27.5529 5.13121 24.8376C4.82889 24.746 4.82889 24.254 5.13121 24.1624C14.0917 21.4471 21.3068 11.6019 24.3012 1.55912C24.3875 1.26972 24.8147 1.26972 24.901 1.55912C27.8954 11.6019 35.1105 21.4471 44.071 24.1624C44.3733 24.254 44.3733 24.746 44.071 24.8376C35.1105 27.5529 27.8954 37.3981 24.901 47.4409Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l321kc\",\"data-framer-name\":\"Frame 1686556694\",layoutDependency:layoutDependency,layoutId:\"U74rxKfjE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyZWl6ZWl0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Freizeit Medium\", \"Freizeit Medium Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"122%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Seriously Good Design\"})}),className:\"framer-oci56z\",\"data-framer-name\":\"Seriously Good Design\",fonts:[\"CUSTOM;Freizeit Medium\"],layoutDependency:layoutDependency,layoutId:\"J0wSBFRDr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1no4d9v\",\"data-framer-name\":\"Frame 1686556685\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:49,layoutDependency:layoutDependency,layoutId:\"DgyoA67qE\",svg:'<svg width=\"49\" height=\"49\" viewBox=\"0 0 49 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.4343 47.4409C24.348 47.7303 23.9208 47.7303 23.8345 47.4409C20.8401 37.3981 13.625 27.5529 4.66449 24.8376C4.36217 24.746 4.36217 24.254 4.66449 24.1624C13.625 21.4471 20.8401 11.6019 23.8345 1.55912C23.9208 1.26972 24.348 1.26972 24.4343 1.55912C27.4287 11.6019 34.6438 21.4471 43.6043 24.1624C43.9066 24.254 43.9066 24.746 43.6043 24.8376C34.6438 27.5529 27.4287 37.3981 24.4343 47.4409Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-G8T87.framer-15vphw4, .framer-G8T87 .framer-15vphw4 { display: block; }\",\".framer-G8T87.framer-15xyr0c { height: 788px; position: relative; width: 1440px; }\",\".framer-G8T87 .framer-hajv88 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 632px; justify-content: center; left: 0px; overflow: visible; padding: 48px 48px 0px 48px; position: absolute; width: 100%; }\",\".framer-G8T87 .framer-zlfcv8 { flex: none; height: 358px; overflow: visible; position: relative; width: 93%; }\",\".framer-G8T87 .framer-1xv9kyr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 608px; }\",\".framer-G8T87 .framer-1nce73z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 592px; word-break: break-word; word-wrap: break-word; }\",\".framer-G8T87 .framer-qlctj6 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-G8T87 .framer-1a21zz1, .framer-G8T87 .framer-11l1ca2, .framer-G8T87 .framer-165vhjx, .framer-G8T87 .framer-16d7aj3, .framer-G8T87 .framer-13b4q2j, .framer-G8T87 .framer-vajykg, .framer-G8T87 .framer-ee2jmm, .framer-G8T87 .framer-1d9a4zf, .framer-G8T87 .framer-7yzoxc, .framer-G8T87 .framer-1eg5nk, .framer-G8T87 .framer-1itwblf, .framer-G8T87 .framer-oci56z { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-G8T87 .framer-184tase { align-content: flex-start; align-items: flex-start; bottom: -3px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 0px; width: 397px; }\",\".framer-G8T87 .framer-etzuhj-container { flex: none; height: 290px; position: relative; width: 101%; }\",\".framer-G8T87 .framer-1ggt49b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-G8T87 .framer-17ny7ub { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-G8T87 .framer-19lt435 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-G8T87 .framer-1lp64a { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 4px); position: relative; width: 4px; }\",\".framer-G8T87 .framer-1jjzozn { flex: none; height: 32px; position: relative; width: 217px; }\",\".framer-G8T87 .framer-vpzcl5 { flex: none; height: 156px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-G8T87 .framer-1pjjbsl-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-G8T87 .framer-189fk5x { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-G8T87 .framer-1ueszh3, .framer-G8T87 .framer-1dmis1m, .framer-G8T87 .framer-j3qdln, .framer-G8T87 .framer-l321kc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-G8T87 .framer-1wy8mdi, .framer-G8T87 .framer-bzijfa, .framer-G8T87 .framer-iavl6a, .framer-G8T87 .framer-1no4d9v { flex: none; height: 49px; position: relative; width: 49px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-G8T87 .framer-hajv88, .framer-G8T87 .framer-1xv9kyr, .framer-G8T87 .framer-184tase, .framer-G8T87 .framer-17ny7ub, .framer-G8T87 .framer-19lt435, .framer-G8T87 .framer-189fk5x, .framer-G8T87 .framer-1ueszh3, .framer-G8T87 .framer-1dmis1m, .framer-G8T87 .framer-j3qdln, .framer-G8T87 .framer-l321kc { gap: 0px; } .framer-G8T87 .framer-hajv88 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-G8T87 .framer-hajv88 > :first-child, .framer-G8T87 .framer-1xv9kyr > :first-child, .framer-G8T87 .framer-184tase > :first-child, .framer-G8T87 .framer-17ny7ub > :first-child { margin-top: 0px; } .framer-G8T87 .framer-hajv88 > :last-child, .framer-G8T87 .framer-1xv9kyr > :last-child, .framer-G8T87 .framer-184tase > :last-child, .framer-G8T87 .framer-17ny7ub > :last-child { margin-bottom: 0px; } .framer-G8T87 .framer-1xv9kyr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-G8T87 .framer-184tase > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-G8T87 .framer-17ny7ub > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-G8T87 .framer-19lt435 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-G8T87 .framer-19lt435 > :first-child, .framer-G8T87 .framer-189fk5x > :first-child, .framer-G8T87 .framer-1ueszh3 > :first-child, .framer-G8T87 .framer-1dmis1m > :first-child, .framer-G8T87 .framer-j3qdln > :first-child, .framer-G8T87 .framer-l321kc > :first-child { margin-left: 0px; } .framer-G8T87 .framer-19lt435 > :last-child, .framer-G8T87 .framer-189fk5x > :last-child, .framer-G8T87 .framer-1ueszh3 > :last-child, .framer-G8T87 .framer-1dmis1m > :last-child, .framer-G8T87 .framer-j3qdln > :last-child, .framer-G8T87 .framer-l321kc > :last-child { margin-right: 0px; } .framer-G8T87 .framer-189fk5x > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-G8T87 .framer-1ueszh3 > *, .framer-G8T87 .framer-1dmis1m > *, .framer-G8T87 .framer-j3qdln > *, .framer-G8T87 .framer-l321kc > * { margin: 0px; margin-left: calc(18.533382415771484px / 2); margin-right: calc(18.533382415771484px / 2); } }\",\".framer-G8T87.framer-v-1l2b351.framer-15xyr0c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: 810px; }\",\".framer-G8T87.framer-v-1l2b351 .framer-hajv88 { align-content: flex-start; align-items: flex-start; bottom: unset; height: min-content; left: unset; order: 1; padding: 24px; position: relative; }\",\".framer-G8T87.framer-v-1l2b351 .framer-zlfcv8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; width: 100%; }\",\".framer-G8T87.framer-v-1l2b351 .framer-1xv9kyr { cursor: pointer; flex: 1 0 0px; left: unset; position: relative; top: unset; width: 1px; }\",\".framer-G8T87.framer-v-1l2b351 .framer-1nce73z { cursor: pointer; width: 100%; }\",\".framer-G8T87.framer-v-1l2b351 .framer-1a21zz1, .framer-G8T87.framer-v-1l2b351 .framer-11l1ca2, .framer-G8T87.framer-v-1l2b351 .framer-165vhjx, .framer-G8T87.framer-v-1l2b351 .framer-16d7aj3 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-G8T87.framer-v-1l2b351 .framer-1ggt49b { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; }\",\".framer-G8T87.framer-v-1l2b351 .framer-17ny7ub { width: 100%; }\",\".framer-G8T87.framer-v-1l2b351 .framer-vajykg, .framer-G8T87.framer-v-1l2b351 .framer-ee2jmm, .framer-G8T87.framer-v-1l2b351 .framer-1d9a4zf { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-G8T87.framer-v-1l2b351 .framer-19lt435 { align-content: flex-start; align-items: flex-start; flex-direction: column; width: 100%; }\",\".framer-G8T87.framer-v-1l2b351 .framer-vpzcl5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; order: 0; overflow: hidden; padding: 0px; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-G8T87.framer-v-1l2b351 .framer-1pjjbsl-container { bottom: unset; height: 156px; left: unset; position: relative; top: unset; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-G8T87.framer-v-1l2b351.framer-15xyr0c, .framer-G8T87.framer-v-1l2b351 .framer-zlfcv8, .framer-G8T87.framer-v-1l2b351 .framer-1ggt49b, .framer-G8T87.framer-v-1l2b351 .framer-19lt435, .framer-G8T87.framer-v-1l2b351 .framer-vpzcl5 { gap: 0px; } .framer-G8T87.framer-v-1l2b351.framer-15xyr0c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-G8T87.framer-v-1l2b351.framer-15xyr0c > :first-child, .framer-G8T87.framer-v-1l2b351 .framer-1ggt49b > :first-child, .framer-G8T87.framer-v-1l2b351 .framer-19lt435 > :first-child { margin-top: 0px; } .framer-G8T87.framer-v-1l2b351.framer-15xyr0c > :last-child, .framer-G8T87.framer-v-1l2b351 .framer-1ggt49b > :last-child, .framer-G8T87.framer-v-1l2b351 .framer-19lt435 > :last-child { margin-bottom: 0px; } .framer-G8T87.framer-v-1l2b351 .framer-zlfcv8 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-G8T87.framer-v-1l2b351 .framer-zlfcv8 > :first-child, .framer-G8T87.framer-v-1l2b351 .framer-vpzcl5 > :first-child { margin-left: 0px; } .framer-G8T87.framer-v-1l2b351 .framer-zlfcv8 > :last-child, .framer-G8T87.framer-v-1l2b351 .framer-vpzcl5 > :last-child { margin-right: 0px; } .framer-G8T87.framer-v-1l2b351 .framer-1ggt49b > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-G8T87.framer-v-1l2b351 .framer-19lt435 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-G8T87.framer-v-1l2b351 .framer-vpzcl5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-G8T87.framer-v-1tixmoj.framer-15xyr0c { width: 810px; }\",\".framer-G8T87.framer-v-1tixmoj .framer-hajv88 { align-content: flex-start; align-items: flex-start; padding: 0px 48px 0px 48px; }\",\".framer-G8T87.framer-v-1tixmoj .framer-zlfcv8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\".framer-G8T87.framer-v-1tixmoj .framer-1xv9kyr { left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-G8T87.framer-v-1tixmoj .framer-zlfcv8 { gap: 0px; } .framer-G8T87.framer-v-1tixmoj .framer-zlfcv8 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-G8T87.framer-v-1tixmoj .framer-zlfcv8 > :first-child { margin-left: 0px; } .framer-G8T87.framer-v-1tixmoj .framer-zlfcv8 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-G8T87[data-border=\"true\"]::after, .framer-G8T87 [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 788\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y5tMwOnir\":{\"layout\":[\"fixed\",\"auto\"]},\"mZ4vVb2KL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdueJCz4_K=withCSS(Component,css,\"framer-G8T87\");export default FramerdueJCz4_K;FramerdueJCz4_K.displayName=\"footer_new\";FramerdueJCz4_K.defaultProps={height:788,width:1440};addPropertyControls(FramerdueJCz4_K,{variant:{options:[\"T6qOM5To3\",\"Y5tMwOnir\",\"mZ4vVb2KL\"],optionTitles:[\"web\",\"mob\",\"Tab\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdueJCz4_K,[{explicitInter:true,fonts:[{family:\"Freizeit Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/WB4aFODFsw4HyjJuy28NDk14k8.woff2\"},{family:\"Freizeit Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/izMbeXKev46TORJ7ki4TkYnovVc.woff2\"}]},...FormSparkFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdueJCz4_K\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y5tMwOnir\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mZ4vVb2KL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"788\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dueJCz4_K.map"],
  "mappings": "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",
  "names": ["Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "fe", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "transformRef", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "FormSparkFonts", "getFonts", "FormSpark_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1fagiok", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "ComponentViewportProvider", "SVG", "css", "FramerdueJCz4_K", "withCSS", "dueJCz4_K_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
