{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.50", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js", "ssg:https://framerusercontent.com/modules/bR4rdyObyLeHhXJel5C4/WKLTafeosBv51x8Bwuqp/xZndidUCt.js", "ssg:https://framerusercontent.com/modules/zOpBIfzwf0raymXl0x5R/mHgXvTE8hahJGGYhDEBk/YckFIlg3V.js", "ssg:https://framerusercontent.com/modules/re4jpCrtu73AYM1bOziC/QLUPPdJJklQj0kX5aV9o/QOCBLMAjr.js", "ssg:https://framerusercontent.com/modules/AsB9sOT3sM7CGFKhcpIy/VS4N1c0oAis4K3xBBCY9/OlTWqYMo3.js", "ssg:https://framerusercontent.com/modules/nriTTZSIawlXvcfS6CdP/4CBFijoBHkCrcCtEdxpr/Kym4ifyAB.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/bVxAQ5K6fk76yaAZrkCj/BISaEsThnMAsEtHL0CvK/s9Uktl_jP.js", "ssg:https://framerusercontent.com/modules/7SBVSnzGeQKtjQ9ki4sY/ZYUNpur8AgZW0PIiZ6Un/w2B_F1NxO.js", "ssg:https://framerusercontent.com/modules/gt7fV6HghCVsdsUjBxK4/URVeDK2efU9x5HCBCDSX/Timewarp.js", "ssg:https://framerusercontent.com/modules/vTzhgk9qyxYJGcBrTzUh/IfEf0W0Ujoy0K4qT8in1/PdUNL7WtO.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const renderPathForWeight = (weight, color, pathsByWeight2) => !!pathsByWeight2.get(weight) ? pathsByWeight2.get(weight)(color) : null;\n    const pathsByWeight = new Map();\n    pathsByWeight.set(\"bold\", (color) => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      fill: \"none\",\n      stroke: color,\n      strokeLinecap: \"round\",\n      strokeLinejoin: \"round\",\n      strokeWidth: \"24\"\n    })));\n    pathsByWeight.set(\"duotone\", (color) => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      opacity: \"0.2\"\n    }), /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      fill: \"none\",\n      stroke: color,\n      strokeLinecap: \"round\",\n      strokeLinejoin: \"round\",\n      strokeWidth: \"16\"\n    })));\n    pathsByWeight.set(\"fill\", () => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M218.8,103.7,138.8,31a16,16,0,0,0-21.6,0l-80,72.7A16,16,0,0,0,32,115.5v92.1a16.4,16.4,0,0,0,4,11A15.9,15.9,0,0,0,48,224H96a8,8,0,0,0,8-8V168a8,8,0,0,1,8-8h32a8,8,0,0,1,8,8v48a8,8,0,0,0,8,8h48a15.6,15.6,0,0,0,7.6-1.9A16.1,16.1,0,0,0,224,208V115.5A16,16,0,0,0,218.8,103.7Z\"\n    })));\n    pathsByWeight.set(\"light\", (color) => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      fill: \"none\",\n      stroke: color,\n      strokeLinecap: \"round\",\n      strokeLinejoin: \"round\",\n      strokeWidth: \"12\"\n    })));\n    pathsByWeight.set(\"thin\", (color) => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      fill: \"none\",\n      stroke: color,\n      strokeLinecap: \"round\",\n      strokeLinejoin: \"round\",\n      strokeWidth: \"8\"\n    })));\n    pathsByWeight.set(\"regular\", (color) => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      fill: \"none\",\n      stroke: color,\n      strokeLinecap: \"round\",\n      strokeLinejoin: \"round\",\n      strokeWidth: \"16\"\n    })));\n    const renderPath = (weight, color) => renderPathForWeight(weight, color, pathsByWeight);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", {\n      ref,\n      ...props\n    }, renderPath(props.weight, props.color)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.50\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Activity\",\"AddressBook\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Book\",\"BookBookmark\",\"BookOpen\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"BoundingBox\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"Camera\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartLine\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CircleWavy\",\"CircleWavyCheck\",\"CircleWavyQuestion\",\"CircleWavyWarning\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"Club\",\"CoatHanger\",\"Code\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"ComputerTower\",\"Confetti\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Cpu\",\"CreditCard\",\"Crop\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dog\",\"Door\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"Exam\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FastForward\",\"FastForwardCircle\",\"FigmaLogo\",\"File\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDoc\",\"FileDotted\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSearch\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlyingSaucer\",\"Folder\",\"FolderDotted\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDotted\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"GasPump\",\"Gauge\",\"Gear\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"GoogleChromeLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Graph\",\"GridFour\",\"Hamburger\",\"Hand\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighlighterCircle\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lightning\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"Option\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Password\",\"Path\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"Percent\",\"Person\",\"PersonSimple\",\"PersonSimpleRun\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"PianoKeys\",\"PictureInPicture\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Play\",\"PlayCircle\",\"Playlist\",\"Plug\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Rainbow\",\"RainbowCloud\",\"Receipt\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Share\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"SignIn\",\"SignOut\",\"Signpost\",\"SimCard\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Smiley\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"Spade\",\"Sparkle\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stamp\",\"Star\",\"StarFour\",\"StarHalf\",\"Sticker\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Suitcase\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"Sword\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextBolder\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TiktokLogo\",\"Timer\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Tote\",\"ToteSimple\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Upload\",\"UploadSimple\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Vault\",\"Vibrate\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warning\",\"WarningCircle\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waves\",\"Webcam\",\"WhatsappLogo\",\"Wheelchair\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{// Quickfix, needs proper publish\nconst version=\"0.0.50\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Plus Jakarta Sans-500\",\"GF;Plus Jakarta Sans-700\",\"GF;Plus Jakarta Sans-700italic\",\"GF;Plus Jakarta Sans-500italic\"]);export const fonts=[{family:\"Plus Jakarta Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/xZndidUCt:default\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf\",weight:\"500\"},{family:\"Plus Jakarta Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/xZndidUCt:default\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf\",weight:\"700\"},{family:\"Plus Jakarta Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/xZndidUCt:default\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf\",weight:\"700\"},{family:\"Plus Jakarta Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/xZndidUCt:default\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf\",weight:\"500\"}];export const css=['.framer-bWDMl .framer-styles-preset-21ogod:not(.rich-text-wrapper), .framer-bWDMl .framer-styles-preset-21ogod.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0px; --framer-line-height: 1.7em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-bWDMl .framer-styles-preset-21ogod:not(.rich-text-wrapper), .framer-bWDMl .framer-styles-preset-21ogod.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0px; --framer-line-height: 1.7em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-bWDMl .framer-styles-preset-21ogod:not(.rich-text-wrapper), .framer-bWDMl .framer-styles-preset-21ogod.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0px; --framer-line-height: 1.7em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-bWDMl\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Plus Jakarta Sans-800\",\"GF;Plus Jakarta Sans-800italic\"]);export const fonts=[{family:\"Plus Jakarta Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/YckFIlg3V:default\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf\",weight:\"800\"},{family:\"Plus Jakarta Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/YckFIlg3V:default\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf\"},style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf\",weight:\"800\"}];export const css=['.framer-NnH9L .framer-styles-preset-12lj5ox:not(.rich-text-wrapper), .framer-NnH9L .framer-styles-preset-12lj5ox.rich-text-wrapper h3 { --framer-font-family: \"Plus Jakarta Sans\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-weight: 800; --framer-font-weight-italic: 800; --framer-letter-spacing: -0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-NnH9L\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Manrope-700\"]);export const fonts=[{family:\"Manrope\",moduleAsset:{localModuleIdentifier:\"local-module:css/QOCBLMAjr:default\",url:\"https://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf\",weight:\"700\"}];export const css=['.framer-SQw2C .framer-styles-preset-113y3p:not(.rich-text-wrapper), .framer-SQw2C .framer-styles-preset-113y3p.rich-text-wrapper h3, .framer-SQw2C .framer-styles-preset-113y3p.rich-text-wrapper [data-preset-tag=\"h3\"] { --framer-font-family: \"Manrope\", serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-SQw2C\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f501c86)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/re4jpCrtu73AYM1bOziC/QLUPPdJJklQj0kX5aV9o/QOCBLMAjr.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={DT5wJl0k7:{hover:true},oZGdo9L8m:{hover:true},QKYatfjMV:{hover:true}};const cycleOrder=[\"DT5wJl0k7\",\"oZGdo9L8m\",\"QKYatfjMV\"];const serializationHash=\"framer-72oAW\";const variantClassNames={DT5wJl0k7:\"framer-v-1lme3m4\",oZGdo9L8m:\"framer-v-1sgqrkq\",QKYatfjMV:\"framer-v-1bjm3qo\"};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 transitions={default:{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 humanReadableVariantMap={\"CTA Large\":\"oZGdo9L8m\",\"CTA Small\":\"QKYatfjMV\",\"CTA Standard\":\"DT5wJl0k7\"};const getProps=({color,height,id,link,tap,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,EnBVDC6a2:(_ref=color!==null&&color!==void 0?color:props.EnBVDC6a2)!==null&&_ref!==void 0?_ref:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255)) \",SRBP_E1AV:(_ref1=title!==null&&title!==void 0?title:props.SRBP_E1AV)!==null&&_ref1!==void 0?_ref1:\"Learn more\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"DT5wJl0k7\",yoZjjb4BV:tap!==null&&tap!==void 0?tap:props.yoZjjb4BV,zNGAVVmSy:link!==null&&link!==void 0?link:props.zNGAVVmSy};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,SRBP_E1AV,zNGAVVmSy,EnBVDC6a2,yoZjjb4BV,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"DT5wJl0k7\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapg75dht=activeVariantCallback(async(...args)=>{if(yoZjjb4BV){const res=await yoZjjb4BV(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-72oAW\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:zNGAVVmSy,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(\"framer-1lme3m4\",className)} framer-gyz49z`,\"data-framer-name\":\"CTA Standard\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DT5wJl0k7\",onTap:onTapg75dht,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"DT5wJl0k7-hover\":{\"data-framer-name\":undefined},\"oZGdo9L8m-hover\":{\"data-framer-name\":undefined},\"QKYatfjMV-hover\":{\"data-framer-name\":undefined},oZGdo9L8m:{\"data-framer-name\":\"CTA Large\"},QKYatfjMV:{\"data-framer-name\":\"CTA Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-EnBVDC6a2-OlTWqYMo3))\"},children:\"Learn more\"})}),className:\"framer-1sdv28j\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"ExgDa_SPx\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-EnBVDC6a2-OlTWqYMo3)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-EnBVDC6a2-OlTWqYMo3\":EnBVDC6a2},text:SRBP_E1AV,variants:{QKYatfjMV:{\"--extracted-a0htzi\":\"var(--variable-reference-EnBVDC6a2-OlTWqYMo3)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"QKYatfjMV-hover\":{fonts:undefined},oZGdo9L8m:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-EnBVDC6a2-OlTWqYMo3))\"},children:\"Learn more\"})})},QKYatfjMV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-113y3p\",\"data-styles-preset\":\"QOCBLMAjr\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-EnBVDC6a2-OlTWqYMo3))\"},children:\"Learn more\"})}),fonts:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wcti0l-container\",layoutDependency:layoutDependency,layoutId:\"efWFoMmxL-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:EnBVDC6a2,height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"efWFoMmxL\",layoutId:\"efWFoMmxL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})]})})})})});});const css=['.framer-72oAW [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-72oAW .framer-gyz49z { display: block; }\",\".framer-72oAW .framer-1lme3m4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-72oAW .framer-1sdv28j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-72oAW .framer-wcti0l-container { flex: none; height: 19px; position: relative; width: 19px; }\",\".framer-72oAW .framer-v-1lme3m4 .framer-1lme3m4, .framer-72oAW .framer-v-1sgqrkq .framer-1lme3m4, .framer-72oAW .framer-v-1bjm3qo .framer-1lme3m4 { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-72oAW .framer-1lme3m4 { gap: 0px; } .framer-72oAW .framer-1lme3m4 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-72oAW .framer-1lme3m4 > :first-child { margin-left: 0px; } .framer-72oAW .framer-1lme3m4 > :last-child { margin-right: 0px; } }\",\".framer-72oAW.framer-v-1sgqrkq .framer-wcti0l-container { height: 25px; width: 24px; }\",\".framer-72oAW.framer-v-1bjm3qo .framer-wcti0l-container { height: 14px; width: 13px; }\",\".framer-72oAW.framer-v-1lme3m4.hover .framer-1lme3m4, .framer-72oAW.framer-v-1sgqrkq.hover .framer-1lme3m4, .framer-72oAW.framer-v-1bjm3qo.hover .framer-1lme3m4 { gap: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-72oAW.framer-v-1lme3m4.hover .framer-1lme3m4 { gap: 0px; } .framer-72oAW.framer-v-1lme3m4.hover .framer-1lme3m4 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-72oAW.framer-v-1lme3m4.hover .framer-1lme3m4 > :first-child { margin-left: 0px; } .framer-72oAW.framer-v-1lme3m4.hover .framer-1lme3m4 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-72oAW.framer-v-1sgqrkq.hover .framer-1lme3m4 { gap: 0px; } .framer-72oAW.framer-v-1sgqrkq.hover .framer-1lme3m4 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-72oAW.framer-v-1sgqrkq.hover .framer-1lme3m4 > :first-child { margin-left: 0px; } .framer-72oAW.framer-v-1sgqrkq.hover .framer-1lme3m4 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-72oAW.framer-v-1bjm3qo.hover .framer-1lme3m4 { gap: 0px; } .framer-72oAW.framer-v-1bjm3qo.hover .framer-1lme3m4 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-72oAW.framer-v-1bjm3qo.hover .framer-1lme3m4 > :first-child { margin-left: 0px; } .framer-72oAW.framer-v-1bjm3qo.hover .framer-1lme3m4 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 31\n * @framerIntrinsicWidth 121\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"oZGdo9L8m\":{\"layout\":[\"auto\",\"auto\"]},\"QKYatfjMV\":{\"layout\":[\"auto\",\"auto\"]},\"i4zDnuDrl\":{\"layout\":[\"auto\",\"auto\"]},\"AeTiFaQDM\":{\"layout\":[\"auto\",\"auto\"]},\"LuZ1Gd3rX\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"SRBP_E1AV\":\"title\",\"zNGAVVmSy\":\"link\",\"EnBVDC6a2\":\"color\",\"yoZjjb4BV\":\"tap\"}\n * @framerImmutableVariables false\n */const FramerOlTWqYMo3=withCSS(Component,css,\"framer-72oAW\");export default FramerOlTWqYMo3;FramerOlTWqYMo3.displayName=\"CTA\";FramerOlTWqYMo3.defaultProps={height:31,width:121};addPropertyControls(FramerOlTWqYMo3,{variant:{options:[\"DT5wJl0k7\",\"oZGdo9L8m\",\"QKYatfjMV\"],optionTitles:[\"CTA Standard\",\"CTA Large\",\"CTA Small\"],title:\"Variant\",type:ControlType.Enum},SRBP_E1AV:{defaultValue:\"Learn more\",displayTextArea:false,title:\"Title\",type:ControlType.String},zNGAVVmSy:{title:\"Link\",type:ControlType.Link},EnBVDC6a2:{defaultValue:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255)) \",title:\"Color\",type:ControlType.Color},yoZjjb4BV:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerOlTWqYMo3,[{family:\"Plus Jakarta Sans\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/OlTWqYMo3:default\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf\",weight:\"700\"},...PhosphorFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOlTWqYMo3\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"SRBP_E1AV\\\":\\\"title\\\",\\\"zNGAVVmSy\\\":\\\"link\\\",\\\"EnBVDC6a2\\\":\\\"color\\\",\\\"yoZjjb4BV\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"121\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oZGdo9L8m\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QKYatfjMV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"i4zDnuDrl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AeTiFaQDM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LuZ1Gd3rX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"31\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OlTWqYMo3.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bR4rdyObyLeHhXJel5C4/WKLTafeosBv51x8Bwuqp/xZndidUCt.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zOpBIfzwf0raymXl0x5R/mHgXvTE8hahJGGYhDEBk/YckFIlg3V.js\";import CTA from\"https://framerusercontent.com/modules/AsB9sOT3sM7CGFKhcpIy/VS4N1c0oAis4K3xBBCY9/OlTWqYMo3.js\";const PhosphorFonts=getFonts(Phosphor);const CTAFonts=getFonts(CTA);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"KeWUWSw2t\",\"hUO6W9Cv4\",\"oO6m8pK61\",\"tV1BuQ2YI\",\"voyA507f3\",\"rnz703G5_\",\"Nn3Q_Oj8x\",\"fAuQYpwCV\",\"MNy3fGJek\",\"OJJYsPXei\",\"LomfzQtX7\"];const serializationHash=\"framer-1a0Eo\";const variantClassNames={fAuQYpwCV:\"framer-v-mk41om\",hUO6W9Cv4:\"framer-v-gnn78v\",KeWUWSw2t:\"framer-v-fvxdms\",LomfzQtX7:\"framer-v-11fgzqx\",MNy3fGJek:\"framer-v-11p39tg\",Nn3Q_Oj8x:\"framer-v-1g4gutz\",OJJYsPXei:\"framer-v-1pzgc45\",oO6m8pK61:\"framer-v-119wxul\",rnz703G5_:\"framer-v-pi222v\",tV1BuQ2YI:\"framer-v-5b3x7\",voyA507f3:\"framer-v-1ehagk6\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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(React.Fragment);const humanReadableVariantMap={\"Center Color\":\"voyA507f3\",\"Left Alternative\":\"hUO6W9Cv4\",\"Left Color Alternative\":\"rnz703G5_\",\"Left Color\":\"tV1BuQ2YI\",\"Left New\":\"fAuQYpwCV\",\"Variant 10\":\"OJJYsPXei\",\"Variant 11\":\"LomfzQtX7\",\"Variant 7\":\"Nn3Q_Oj8x\",\"Variant 9\":\"MNy3fGJek\",Center:\"oO6m8pK61\",Left:\"KeWUWSw2t\"};const getProps=({backgroundFill,cardBackground,cTA,cTA1,height,icon,icon1,iconColour2,iconFill,iconFill2,id,image,link,text,text1,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_ref9,_humanReadableVariantMap_props_variant,_ref10,_ref11,_ref12;return{...props,EgEa9J473:(_ref=cTA1!==null&&cTA1!==void 0?cTA1:props.EgEa9J473)!==null&&_ref!==void 0?_ref:\"Learn more\",eZ5aNjZIy:link!==null&&link!==void 0?link:props.eZ5aNjZIy,fsUmuS24I:(_ref1=text1!==null&&text1!==void 0?text1:props.fsUmuS24I)!==null&&_ref1!==void 0?_ref1:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\",g56HeEMzh:(_ref2=title!==null&&title!==void 0?title:props.g56HeEMzh)!==null&&_ref2!==void 0?_ref2:\"60 Components\",HQlsDHpqI:(_ref3=text!==null&&text!==void 0?text:props.HQlsDHpqI)!==null&&_ref3!==void 0?_ref3:true,iWUePAQ2h:(_ref4=iconFill!==null&&iconFill!==void 0?iconFill:props.iWUePAQ2h)!==null&&_ref4!==void 0?_ref4:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",J2X4hmGjs:(_ref5=icon!==null&&icon!==void 0?icon:props.J2X4hmGjs)!==null&&_ref5!==void 0?_ref5:true,mER01n9w_:(_ref6=backgroundFill!==null&&backgroundFill!==void 0?backgroundFill:props.mER01n9w_)!==null&&_ref6!==void 0?_ref6:\"var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255))\",qKOBsbAyJ:(_ref7=cTA!==null&&cTA!==void 0?cTA:props.qKOBsbAyJ)!==null&&_ref7!==void 0?_ref7:true,SXDgbTQKy:(_ref8=icon1!==null&&icon1!==void 0?icon1:props.SXDgbTQKy)!==null&&_ref8!==void 0?_ref8:\"Cube\",U8p2pRXMi:image!==null&&image!==void 0?image:props.U8p2pRXMi,v9GqZEHzf:(_ref9=iconFill2!==null&&iconFill2!==void 0?iconFill2:props.v9GqZEHzf)!==null&&_ref9!==void 0?_ref9:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",variant:(_ref10=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref10!==void 0?_ref10:\"KeWUWSw2t\",YeZ_xPn5D:(_ref11=iconColour2!==null&&iconColour2!==void 0?iconColour2:props.YeZ_xPn5D)!==null&&_ref11!==void 0?_ref11:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",ZtwabFz5u:(_ref12=cardBackground!==null&&cardBackground!==void 0?cardBackground:props.ZtwabFz5u)!==null&&_ref12!==void 0?_ref12:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,J2X4hmGjs,SXDgbTQKy,g56HeEMzh,HQlsDHpqI,fsUmuS24I,qKOBsbAyJ,EgEa9J473,eZ5aNjZIy,mER01n9w_,iWUePAQ2h,ZtwabFz5u,v9GqZEHzf,YeZ_xPn5D,U8p2pRXMi,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KeWUWSw2t\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=value=>{if([\"MNy3fGJek\",\"OJJYsPXei\"].includes(baseVariant))return false;return value;};const isDisplayed1=()=>{if([\"fAuQYpwCV\",\"LomfzQtX7\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"MNy3fGJek\")return true;return false;};const isDisplayed3=value=>{if(baseVariant===\"oO6m8pK61\")return true;return value;};const isDisplayed4=value=>{if(baseVariant===\"Nn3Q_Oj8x\")return false;return value;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fvxdms\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"KeWUWSw2t\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 10px 30px -20px rgba(0, 0, 0, 0.25)\",...style},variants:{MNy3fGJek:{backgroundColor:ZtwabFz5u},Nn3Q_Oj8x:{backgroundColor:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"},OJJYsPXei:{backgroundColor:ZtwabFz5u},rnz703G5_:{backgroundColor:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"},tV1BuQ2YI:{backgroundColor:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"},voyA507f3:{backgroundColor:ZtwabFz5u}},...addPropertyOverrides({fAuQYpwCV:{\"data-framer-name\":\"Left New\"},hUO6W9Cv4:{\"data-framer-name\":\"Left Alternative\"},LomfzQtX7:{\"data-framer-name\":\"Variant 11\"},MNy3fGJek:{\"data-framer-name\":\"Variant 9\"},Nn3Q_Oj8x:{\"data-framer-name\":\"Variant 7\"},OJJYsPXei:{\"data-framer-name\":\"Variant 10\"},oO6m8pK61:{\"data-framer-name\":\"Center\"},rnz703G5_:{\"data-framer-name\":\"Left Color Alternative\"},tV1BuQ2YI:{\"data-framer-name\":\"Left Color\"},voyA507f3:{\"data-framer-name\":\"Center Color\"}},baseVariant,gestureVariant),children:[isDisplayed(J2X4hmGjs)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uucjd2\",layoutDependency:layoutDependency,layoutId:\"F95f36hha\",style:{backgroundColor:mER01n9w_,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{Nn3Q_Oj8x:{backgroundColor:\"rgba(0, 0, 0, 0.2)\"},rnz703G5_:{backgroundColor:\"rgba(0, 0, 0, 0.2)\"},tV1BuQ2YI:{backgroundColor:\"rgba(0, 0, 0, 0.2)\"},voyA507f3:{backgroundColor:v9GqZEHzf}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kqmbbe-container\",layoutDependency:layoutDependency,layoutId:\"Ty5tyHJHr-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:iWUePAQ2h,height:\"100%\",iconSearch:\"House\",iconSelection:SXDgbTQKy,id:\"Ty5tyHJHr\",layoutId:\"Ty5tyHJHr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({Nn3Q_Oj8x:{color:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},oO6m8pK61:{color:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255))\"},rnz703G5_:{color:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},tV1BuQ2YI:{color:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},voyA507f3:{color:YeZ_xPn5D}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255)))\"},children:\"New\"})}),className:\"framer-c1w0es\",fonts:[\"GF;Manrope-800\"],layoutDependency:layoutDependency,layoutId:\"cLEaa6H1h\",style:{\"--extracted-a0htzi\":\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fAuQYpwCV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255)))\"},children:\"New\"})}),fonts:[\"GF;Plus Jakarta Sans-800\"]}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",...toResponsiveImage(U8p2pRXMi),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ck52h7\",layoutDependency:layoutDependency,layoutId:\"wGZ6UFhXQ\",...addPropertyOverrides({MNy3fGJek:{background:{alt:\"\",fit:\"fit\",sizes:\"400px\",...toResponsiveImage(U8p2pRXMi),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-la8y0v\",layoutDependency:layoutDependency,layoutId:\"bYmYnzPr_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z5nbjq\",layoutDependency:layoutDependency,layoutId:\"RTForIbu1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"60 Components\"})}),className:\"framer-1uxjwyq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hB6nuKfjq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:g56HeEMzh,variants:{MNy3fGJek:{\"--extracted-a0htzi\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(43, 41, 78))\"},Nn3Q_Oj8x:{\"--extracted-a0htzi\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},OJJYsPXei:{\"--extracted-a0htzi\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(43, 41, 78))\"},rnz703G5_:{\"--extracted-a0htzi\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},tV1BuQ2YI:{\"--extracted-a0htzi\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},voyA507f3:{\"--extracted-a0htzi\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hUO6W9Cv4:{verticalAlignment:\"center\"},MNy3fGJek:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(43, 41, 78)))\"},children:\"60 Components\"})})},Nn3Q_Oj8x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"60 Components\"})}),verticalAlignment:\"center\"},OJJYsPXei:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(43, 41, 78)))\"},children:\"60 Components\"})})},oO6m8pK61:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"60 Components\"})})},rnz703G5_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"60 Components\"})}),verticalAlignment:\"center\"},tV1BuQ2YI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"60 Components\"})})},voyA507f3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"60 Components\"})})}},baseVariant,gestureVariant)}),isDisplayed3(HQlsDHpqI)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})}),className:\"framer-1im8s97\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R_F67sjlM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fsUmuS24I,variants:{MNy3fGJek:{\"--extracted-r6o4lv\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(43, 41, 78))\"},Nn3Q_Oj8x:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},OJJYsPXei:{\"--extracted-r6o4lv\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(43, 41, 78))\"},oO6m8pK61:{\"--extracted-r6o4lv\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},rnz703G5_:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},tV1BuQ2YI:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},voyA507f3:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({MNy3fGJek:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(43, 41, 78)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})},Nn3Q_Oj8x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})},OJJYsPXei:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(43, 41, 78)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})},oO6m8pK61:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})},rnz703G5_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})},tV1BuQ2YI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})},voyA507f3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\"})})}},baseVariant,gestureVariant)})]}),isDisplayed4(qKOBsbAyJ)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bhxmgd-container\",layoutDependency:layoutDependency,layoutId:\"oe7WZP7JM-container\",children:/*#__PURE__*/_jsx(CTA,{EnBVDC6a2:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",height:\"100%\",id:\"oe7WZP7JM\",layoutId:\"oe7WZP7JM\",SRBP_E1AV:EgEa9J473,variant:\"DT5wJl0k7\",width:\"100%\",zNGAVVmSy:eZ5aNjZIy,...addPropertyOverrides({MNy3fGJek:{EnBVDC6a2:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(43, 41, 78))\"},rnz703G5_:{EnBVDC6a2:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},tV1BuQ2YI:{EnBVDC6a2:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},voyA507f3:{EnBVDC6a2:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1a0Eo.framer-1dk5uem, .framer-1a0Eo .framer-1dk5uem { display: block; }\",\".framer-1a0Eo.framer-fvxdms { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 490px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1a0Eo .framer-uucjd2 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 56px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1a0Eo .framer-kqmbbe-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-1a0Eo .framer-c1w0es { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1a0Eo .framer-ck52h7 { flex: none; height: 75px; position: relative; width: 400px; }\",\".framer-1a0Eo .framer-la8y0v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1a0Eo .framer-z5nbjq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 90%; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1a0Eo .framer-1uxjwyq, .framer-1a0Eo .framer-1im8s97 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1a0Eo .framer-bhxmgd-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1a0Eo.framer-fvxdms, .framer-1a0Eo .framer-uucjd2, .framer-1a0Eo .framer-la8y0v, .framer-1a0Eo .framer-z5nbjq { gap: 0px; } .framer-1a0Eo.framer-fvxdms > *, .framer-1a0Eo .framer-la8y0v > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-1a0Eo.framer-fvxdms > :first-child, .framer-1a0Eo .framer-la8y0v > :first-child, .framer-1a0Eo .framer-z5nbjq > :first-child { margin-top: 0px; } .framer-1a0Eo.framer-fvxdms > :last-child, .framer-1a0Eo .framer-la8y0v > :last-child, .framer-1a0Eo .framer-z5nbjq > :last-child { margin-bottom: 0px; } .framer-1a0Eo .framer-uucjd2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1a0Eo .framer-uucjd2 > :first-child { margin-left: 0px; } .framer-1a0Eo .framer-uucjd2 > :last-child { margin-right: 0px; } .framer-1a0Eo .framer-z5nbjq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-1a0Eo.framer-v-gnn78v.framer-fvxdms, .framer-1a0Eo.framer-v-pi222v.framer-fvxdms { flex-direction: row; }\",\".framer-1a0Eo.framer-v-gnn78v .framer-la8y0v { flex: 1 0 0px; gap: 20px; width: 1px; }\",\".framer-1a0Eo.framer-v-gnn78v .framer-1uxjwyq, .framer-1a0Eo.framer-v-pi222v .framer-1uxjwyq { height: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1a0Eo.framer-v-gnn78v.framer-fvxdms, .framer-1a0Eo.framer-v-gnn78v .framer-la8y0v { gap: 0px; } .framer-1a0Eo.framer-v-gnn78v.framer-fvxdms > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-1a0Eo.framer-v-gnn78v.framer-fvxdms > :first-child { margin-left: 0px; } .framer-1a0Eo.framer-v-gnn78v.framer-fvxdms > :last-child { margin-right: 0px; } .framer-1a0Eo.framer-v-gnn78v .framer-la8y0v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-1a0Eo.framer-v-gnn78v .framer-la8y0v > :first-child { margin-top: 0px; } .framer-1a0Eo.framer-v-gnn78v .framer-la8y0v > :last-child { margin-bottom: 0px; } }\",\".framer-1a0Eo.framer-v-119wxul.framer-fvxdms, .framer-1a0Eo.framer-v-119wxul .framer-la8y0v, .framer-1a0Eo.framer-v-1ehagk6.framer-fvxdms, .framer-1a0Eo.framer-v-1ehagk6 .framer-la8y0v, .framer-1a0Eo.framer-v-11p39tg.framer-fvxdms, .framer-1a0Eo.framer-v-11p39tg .framer-la8y0v, .framer-1a0Eo.framer-v-1pzgc45.framer-fvxdms, .framer-1a0Eo.framer-v-1pzgc45 .framer-la8y0v { align-content: center; align-items: center; }\",\".framer-1a0Eo.framer-v-pi222v .framer-la8y0v, .framer-1a0Eo.framer-v-1g4gutz .framer-la8y0v { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1a0Eo.framer-v-pi222v.framer-fvxdms { gap: 0px; } .framer-1a0Eo.framer-v-pi222v.framer-fvxdms > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-1a0Eo.framer-v-pi222v.framer-fvxdms > :first-child { margin-left: 0px; } .framer-1a0Eo.framer-v-pi222v.framer-fvxdms > :last-child { margin-right: 0px; } }\",\".framer-1a0Eo.framer-v-1g4gutz.framer-fvxdms { flex-direction: row; padding: 20px 20px 20px 20px; }\",\".framer-1a0Eo.framer-v-1g4gutz .framer-uucjd2 { flex-direction: column; }\",\".framer-1a0Eo.framer-v-1g4gutz .framer-kqmbbe-container { height: 23px; width: 100%; }\",\".framer-1a0Eo.framer-v-1g4gutz .framer-z5nbjq { gap: 0px; }\",\".framer-1a0Eo.framer-v-1g4gutz .framer-1uxjwyq { height: 33px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1a0Eo.framer-v-1g4gutz.framer-fvxdms, .framer-1a0Eo.framer-v-1g4gutz .framer-uucjd2, .framer-1a0Eo.framer-v-1g4gutz .framer-z5nbjq { gap: 0px; } .framer-1a0Eo.framer-v-1g4gutz.framer-fvxdms > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-1a0Eo.framer-v-1g4gutz.framer-fvxdms > :first-child { margin-left: 0px; } .framer-1a0Eo.framer-v-1g4gutz.framer-fvxdms > :last-child { margin-right: 0px; } .framer-1a0Eo.framer-v-1g4gutz .framer-uucjd2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1a0Eo.framer-v-1g4gutz .framer-uucjd2 > :first-child, .framer-1a0Eo.framer-v-1g4gutz .framer-z5nbjq > :first-child { margin-top: 0px; } .framer-1a0Eo.framer-v-1g4gutz .framer-uucjd2 > :last-child, .framer-1a0Eo.framer-v-1g4gutz .framer-z5nbjq > :last-child { margin-bottom: 0px; } .framer-1a0Eo.framer-v-1g4gutz .framer-z5nbjq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-1a0Eo.framer-v-mk41om .framer-uucjd2, .framer-1a0Eo.framer-v-11fgzqx .framer-uucjd2 { aspect-ratio: unset; gap: 0px; height: 56px; justify-content: flex-start; width: 125px; }\",\".framer-1a0Eo.framer-v-mk41om .framer-kqmbbe-container, .framer-1a0Eo.framer-v-11fgzqx .framer-kqmbbe-container { flex: 1 0 0px; order: 0; width: 1px; }\",\".framer-1a0Eo.framer-v-mk41om .framer-c1w0es, .framer-1a0Eo.framer-v-11fgzqx .framer-c1w0es { order: 2; }\",\".framer-1a0Eo.framer-v-mk41om .framer-1uxjwyq, .framer-1a0Eo.framer-v-11fgzqx .framer-1uxjwyq { order: 0; }\",\".framer-1a0Eo.framer-v-mk41om .framer-1im8s97, .framer-1a0Eo.framer-v-11fgzqx .framer-1im8s97 { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1a0Eo.framer-v-mk41om .framer-uucjd2 { gap: 0px; } .framer-1a0Eo.framer-v-mk41om .framer-uucjd2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1a0Eo.framer-v-mk41om .framer-uucjd2 > :first-child { margin-left: 0px; } .framer-1a0Eo.framer-v-mk41om .framer-uucjd2 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1a0Eo.framer-v-11fgzqx .framer-uucjd2 { gap: 0px; } .framer-1a0Eo.framer-v-11fgzqx .framer-uucjd2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1a0Eo.framer-v-11fgzqx .framer-uucjd2 > :first-child { margin-left: 0px; } .framer-1a0Eo.framer-v-11fgzqx .framer-uucjd2 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-1a0Eo[data-border=\"true\"]::after, .framer-1a0Eo [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 359\n * @framerIntrinsicWidth 490\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hUO6W9Cv4\":{\"layout\":[\"fixed\",\"auto\"]},\"oO6m8pK61\":{\"layout\":[\"fixed\",\"auto\"]},\"tV1BuQ2YI\":{\"layout\":[\"fixed\",\"auto\"]},\"voyA507f3\":{\"layout\":[\"fixed\",\"auto\"]},\"rnz703G5_\":{\"layout\":[\"fixed\",\"auto\"]},\"Nn3Q_Oj8x\":{\"layout\":[\"fixed\",\"auto\"]},\"fAuQYpwCV\":{\"layout\":[\"fixed\",\"auto\"]},\"MNy3fGJek\":{\"layout\":[\"fixed\",\"auto\"]},\"OJJYsPXei\":{\"layout\":[\"fixed\",\"auto\"]},\"LomfzQtX7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"J2X4hmGjs\":\"icon\",\"SXDgbTQKy\":\"icon1\",\"g56HeEMzh\":\"title\",\"HQlsDHpqI\":\"text\",\"fsUmuS24I\":\"text1\",\"qKOBsbAyJ\":\"cTA\",\"EgEa9J473\":\"cTA1\",\"eZ5aNjZIy\":\"link\",\"mER01n9w_\":\"backgroundFill\",\"iWUePAQ2h\":\"iconFill\",\"ZtwabFz5u\":\"cardBackground\",\"v9GqZEHzf\":\"iconFill2\",\"YeZ_xPn5D\":\"iconColour2\",\"U8p2pRXMi\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKym4ifyAB=withCSS(Component,css,\"framer-1a0Eo\");export default FramerKym4ifyAB;FramerKym4ifyAB.displayName=\"Feature Card\";FramerKym4ifyAB.defaultProps={height:359,width:490};addPropertyControls(FramerKym4ifyAB,{variant:{options:[\"KeWUWSw2t\",\"hUO6W9Cv4\",\"oO6m8pK61\",\"tV1BuQ2YI\",\"voyA507f3\",\"rnz703G5_\",\"Nn3Q_Oj8x\",\"fAuQYpwCV\",\"MNy3fGJek\",\"OJJYsPXei\",\"LomfzQtX7\"],optionTitles:[\"Left\",\"Left Alternative\",\"Center\",\"Left Color\",\"Center Color\",\"Left Color Alternative\",\"Variant 7\",\"Left New\",\"Variant 9\",\"Variant 10\",\"Variant 11\"],title:\"Variant\",type:ControlType.Enum},J2X4hmGjs:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean},SXDgbTQKy:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Cube\",description:undefined,hidden:undefined,title:\"Icon\"},g56HeEMzh:{defaultValue:\"60 Components\",displayTextArea:false,title:\"Title\",type:ControlType.String},HQlsDHpqI:{defaultValue:true,title:\"Text\",type:ControlType.Boolean},fsUmuS24I:{defaultValue:\"Combine sections from a range of categories to easily assemble pages that meet the needs of your growing business.\",displayTextArea:true,title:\"Text\",type:ControlType.String},qKOBsbAyJ:{defaultValue:true,title:\"CTA\",type:ControlType.Boolean},EgEa9J473:{defaultValue:\"Learn more\",displayTextArea:false,title:\"CTA\",type:ControlType.String},eZ5aNjZIy:{title:\"Link\",type:ControlType.Link},mER01n9w_:{defaultValue:'var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255)) /* {\"name\":\"Phishdeck Blue Light\"} */',title:\"Background Fill\",type:ControlType.Color},iWUePAQ2h:{defaultValue:'var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255)) /* {\"name\":\"Phishdeck - Blue\"} */',title:\"Icon Fill\",type:ControlType.Color},ZtwabFz5u:{defaultValue:'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Card Background\",type:ControlType.Color},v9GqZEHzf:{defaultValue:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",title:\"Icon Fill 2\",type:ControlType.Color},YeZ_xPn5D:{defaultValue:'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Icon Colour 2\",type:ControlType.Color},U8p2pRXMi:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerKym4ifyAB,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...PhosphorFonts,...CTAFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKym4ifyAB\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"359\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hUO6W9Cv4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oO6m8pK61\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tV1BuQ2YI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"voyA507f3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rnz703G5_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nn3Q_Oj8x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fAuQYpwCV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MNy3fGJek\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OJJYsPXei\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LomfzQtX7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"J2X4hmGjs\\\":\\\"icon\\\",\\\"SXDgbTQKy\\\":\\\"icon1\\\",\\\"g56HeEMzh\\\":\\\"title\\\",\\\"HQlsDHpqI\\\":\\\"text\\\",\\\"fsUmuS24I\\\":\\\"text1\\\",\\\"qKOBsbAyJ\\\":\\\"cTA\\\",\\\"EgEa9J473\\\":\\\"cTA1\\\",\\\"eZ5aNjZIy\\\":\\\"link\\\",\\\"mER01n9w_\\\":\\\"backgroundFill\\\",\\\"iWUePAQ2h\\\":\\\"iconFill\\\",\\\"ZtwabFz5u\\\":\\\"cardBackground\\\",\\\"v9GqZEHzf\\\":\\\"iconFill2\\\",\\\"YeZ_xPn5D\\\":\\\"iconColour2\\\",\\\"U8p2pRXMi\\\":\\\"image\\\"}\",\"framerIntrinsicWidth\":\"490\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kym4ifyAB.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"S9_HuMeSR\",\"ekDLlzVEh\"];const serializationHash=\"framer-GZK16\";const variantClassNames={ekDLlzVEh:\"framer-v-8439li\",S9_HuMeSR:\"framer-v-1yqnjzf\"};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={Active:\"ekDLlzVEh\",Default:\"S9_HuMeSR\"};const getProps=({body,heading,height,id,tap3,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,b5kgEtdxE:(_ref=heading!==null&&heading!==void 0?heading:props.b5kgEtdxE)!==null&&_ref!==void 0?_ref:\"Customise it to your likings\",DNTFIebxH:(_ref1=body!==null&&body!==void 0?body:props.DNTFIebxH)!==null&&_ref1!==void 0?_ref1:\"Whether you have a team of 2 or 200, our shared team inboxes keep everyone on the same page and in the loop.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"S9_HuMeSR\",zq6VYe2oA:tap3!==null&&tap3!==void 0?tap3:props.zq6VYe2oA};};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,b5kgEtdxE,DNTFIebxH,zq6VYe2oA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"S9_HuMeSR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sr1z1e=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(zq6VYe2oA){const res=await zq6VYe2oA(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yqnjzf\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"S9_HuMeSR\",onTap:onTap1sr1z1e,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{ekDLlzVEh:{backgroundColor:\"var(--token-c274de84-f08f-4960-8d80-3263d375fa7b, rgb(225, 221, 228))\"}},...addPropertyOverrides({ekDLlzVEh:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-grvpij\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"UN4CZMlGV\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15xvtfy\",\"data-framer-name\":\"Text and supporting text\",layoutDependency:layoutDependency,layoutId:\"a0jhf8M5o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtbWVkaXVt\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, rgb(255, 255, 255)))\"},children:\"Customise it to your likings\"})}),className:\"framer-loktjy\",\"data-framer-name\":\"Text\",fonts:[\"FS;Plus Jakarta Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"mqfI1aNLN\",style:{\"--extracted-r6o4lv\":\"var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"20px\"},text:b5kgEtdxE,variants:{ekDLlzVEh:{\"--extracted-r6o4lv\":\"var(--token-fbb606eb-e17b-428a-9dbb-6a2bf2de20a4, rgb(24, 24, 25))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ekDLlzVEh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtbWVkaXVt\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fbb606eb-e17b-428a-9dbb-6a2bf2de20a4, rgb(24, 24, 25)))\"},children:\"Customise it to your likings\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-00177e2c-b71a-4918-aaf7-10f1a0f84aad, rgb(234, 234, 235)))\"},children:\"Whether you have a team of 2 or 200, our shared team inboxes keep everyone on the same page and in the loop.\"})}),className:\"framer-16zzb90\",\"data-framer-name\":\"Supporting text\",fonts:[\"FS;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"cm3sdbg36\",style:{\"--extracted-r6o4lv\":\"var(--token-00177e2c-b71a-4918-aaf7-10f1a0f84aad, rgb(234, 234, 235))\",\"--framer-paragraph-spacing\":\"0px\"},text:DNTFIebxH,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GZK16.framer-1qtvick, .framer-GZK16 .framer-1qtvick { display: block; }\",\".framer-GZK16.framer-1yqnjzf { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 80px 24px 24px; position: relative; width: 568px; }\",\".framer-GZK16 .framer-grvpij { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-GZK16 .framer-15xvtfy { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GZK16 .framer-loktjy, .framer-GZK16 .framer-16zzb90 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GZK16.framer-1yqnjzf, .framer-GZK16 .framer-grvpij, .framer-GZK16 .framer-15xvtfy { gap: 0px; } .framer-GZK16.framer-1yqnjzf > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-GZK16.framer-1yqnjzf > :first-child { margin-left: 0px; } .framer-GZK16.framer-1yqnjzf > :last-child { margin-right: 0px; } .framer-GZK16 .framer-grvpij > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GZK16 .framer-grvpij > :first-child, .framer-GZK16 .framer-15xvtfy > :first-child { margin-top: 0px; } .framer-GZK16 .framer-grvpij > :last-child, .framer-GZK16 .framer-15xvtfy > :last-child { margin-bottom: 0px; } .framer-GZK16 .framer-15xvtfy > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 130.5\n * @framerIntrinsicWidth 568\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ekDLlzVEh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"b5kgEtdxE\":\"heading\",\"DNTFIebxH\":\"body\",\"zq6VYe2oA\":\"tap3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framers9Uktl_jP=withCSS(Component,css,\"framer-GZK16\");export default Framers9Uktl_jP;Framers9Uktl_jP.displayName=\"Tab Item\";Framers9Uktl_jP.defaultProps={height:130.5,width:568};addPropertyControls(Framers9Uktl_jP,{variant:{options:[\"S9_HuMeSR\",\"ekDLlzVEh\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},b5kgEtdxE:{defaultValue:\"Customise it to your likings\",displayTextArea:false,title:\"Heading\",type:ControlType.String},DNTFIebxH:{defaultValue:\"Whether you have a team of 2 or 200, our shared team inboxes keep everyone on the same page and in the loop.\",displayTextArea:false,title:\"Body\",type:ControlType.String},zq6VYe2oA:{title:\"Tap 3\",type:ControlType.EventHandler}});addFonts(Framers9Uktl_jP,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3U7D2WJULAFN5UCDE2DSKFPDTJNUSRPY/XTZGHUDFURQVBRVTOPX7XHP5YBIQJL2U/FVNNCZHGTHUOM3RCJDOO45QMBIJISVEG.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TX2N2Q6ZO2LBO34H72H5RVJTBQFGU4GV/ZICVNTLTT4V7CCIJPWNY363N6LIP2AET/OUUAK2X2MEGEKC6ULA4CFSBY4PE5EGPV.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framers9Uktl_jP\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ekDLlzVEh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"b5kgEtdxE\\\":\\\"heading\\\",\\\"DNTFIebxH\\\":\\\"body\\\",\\\"zq6VYe2oA\\\":\\\"tap3\\\"}\",\"framerIntrinsicHeight\":\"130.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"568\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./s9Uktl_jP.map", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TabItem from\"https://framerusercontent.com/modules/bVxAQ5K6fk76yaAZrkCj/BISaEsThnMAsEtHL0CvK/s9Uktl_jP.js\";const TabItemFonts=getFonts(TabItem);const cycleOrder=[\"X8ZnaOPnn\",\"oU659nLN5\",\"fxUgvDhBu\",\"WwUW4WdXd\"];const serializationHash=\"framer-086EZ\";const variantClassNames={fxUgvDhBu:\"framer-v-1t0y595\",oU659nLN5:\"framer-v-ie8vpx\",WwUW4WdXd:\"framer-v-n7320g\",X8ZnaOPnn:\"framer-v-1axia7l\"};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={\"Desktop A\":\"X8ZnaOPnn\",\"Mobile A\":\"oU659nLN5\",\"Mobile B\":\"fxUgvDhBu\",\"Mobile C\":\"WwUW4WdXd\"};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:\"X8ZnaOPnn\"};};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:\"X8ZnaOPnn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const zq6VYe2oAio7656=activeVariantCallback(async(...args)=>{setVariant(\"X8ZnaOPnn\");});const zq6VYe2oAfrd3jx=activeVariantCallback(async(...args)=>{setVariant(\"oU659nLN5\");});const zq6VYe2oA1fam7u4=activeVariantCallback(async(...args)=>{setVariant(\"fxUgvDhBu\");});const zq6VYe2oA1vdv13v=activeVariantCallback(async(...args)=>{setVariant(\"WwUW4WdXd\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"WwUW4WdXd\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"fxUgvDhBu\")return true;return false;};const isDisplayed2=()=>{if([\"fxUgvDhBu\",\"WwUW4WdXd\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1axia7l\",className,classNames),\"data-framer-name\":\"Desktop A\",layoutDependency:layoutDependency,layoutId:\"X8ZnaOPnn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({fxUgvDhBu:{\"data-framer-name\":\"Mobile B\"},oU659nLN5:{\"data-framer-name\":\"Mobile A\"},WwUW4WdXd:{\"data-framer-name\":\"Mobile C\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-csicej\",\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"j8_Jr1OTh\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 56px) / 2, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||584.5)-0-406)/2)+0+0,...addPropertyOverrides({fxUgvDhBu:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-562)/2+0+0)+0+0},oU659nLN5:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-1493)/2+0+0)+0+0},WwUW4WdXd:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-1273)/2+0+0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6skqac-container\",layoutDependency:layoutDependency,layoutId:\"GUYcPtMY2-container\",children:/*#__PURE__*/_jsx(TabItem,{b5kgEtdxE:\"Simulate hyper-realistic phishing emails\",DNTFIebxH:\"A phishing simulation is like a fire drill. A company sends fake phishing emails to its own employees to see if they fall for them.\",height:\"100%\",id:\"GUYcPtMY2\",layoutId:\"GUYcPtMY2\",style:{width:\"100%\"},variant:\"S9_HuMeSR\",width:\"100%\",zq6VYe2oA:zq6VYe2oAio7656,...addPropertyOverrides({fxUgvDhBu:{zq6VYe2oA:zq6VYe2oAfrd3jx},oU659nLN5:{zq6VYe2oA:zq6VYe2oAfrd3jx},WwUW4WdXd:{zq6VYe2oA:zq6VYe2oAfrd3jx}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 56px) / 2, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||584.5)-0-406)/2)+0+138,...addPropertyOverrides({fxUgvDhBu:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-562)/2+0+0)+0+138},oU659nLN5:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-1493)/2+0+0)+0+138},WwUW4WdXd:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-1273)/2+0+0)+0+138}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3eg5cw-container\",layoutDependency:layoutDependency,layoutId:\"kTjw8xgky-container\",children:/*#__PURE__*/_jsx(TabItem,{b5kgEtdxE:\"Automate human risk visibility\",DNTFIebxH:\"Review results from phishing simulations and gain insight to your users that are more susceptible to attacks.\",height:\"100%\",id:\"kTjw8xgky\",layoutId:\"kTjw8xgky\",style:{width:\"100%\"},variant:\"S9_HuMeSR\",width:\"100%\",...addPropertyOverrides({fxUgvDhBu:{zq6VYe2oA:zq6VYe2oA1fam7u4},oU659nLN5:{zq6VYe2oA:zq6VYe2oA1fam7u4},WwUW4WdXd:{zq6VYe2oA:zq6VYe2oA1fam7u4}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 56px) / 2, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||584.5)-0-406)/2)+0+276,...addPropertyOverrides({fxUgvDhBu:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-562)/2+0+0)+0+276},oU659nLN5:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-1493)/2+0+0)+0+276},WwUW4WdXd:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-1273)/2+0+0)+0+276}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v3xq5v-container\",layoutDependency:layoutDependency,layoutId:\"k0pzK0Glr-container\",children:/*#__PURE__*/_jsx(TabItem,{b5kgEtdxE:\"Track improvement over time\",DNTFIebxH:\"Measure what matters with PhishDeck's easy-to-use reports. View, export, and summarise data in a couple of clicks.\",height:\"100%\",id:\"k0pzK0Glr\",layoutId:\"k0pzK0Glr\",style:{width:\"100%\"},variant:\"S9_HuMeSR\",width:\"100%\",...addPropertyOverrides({fxUgvDhBu:{zq6VYe2oA:zq6VYe2oA1vdv13v},oU659nLN5:{zq6VYe2oA:zq6VYe2oA1vdv13v},WwUW4WdXd:{zq6VYe2oA:zq6VYe2oA1vdv13v}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cdvyey\",\"data-framer-name\":\"Image Container\",layoutDependency:layoutDependency,layoutId:\"WeG0sswHO\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2e3,intrinsicWidth:3e3,pixelHeight:2e3,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1uK451VlM24rLbQri8fq3vJNLBM.webp\",srcSet:\"https://framerusercontent.com/images/1uK451VlM24rLbQri8fq3vJNLBM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/1uK451VlM24rLbQri8fq3vJNLBM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/1uK451VlM24rLbQri8fq3vJNLBM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/1uK451VlM24rLbQri8fq3vJNLBM.webp 3000w\"},className:\"framer-udknes\",\"data-framer-name\":\"tab_image_01\",layoutDependency:layoutDependency,layoutId:\"niI8U8NKI\",...addPropertyOverrides({WwUW4WdXd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-1273)/2+406+56)+0+0),pixelHeight:2e3,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/1uK451VlM24rLbQri8fq3vJNLBM.webp\",srcSet:\"https://framerusercontent.com/images/1uK451VlM24rLbQri8fq3vJNLBM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/1uK451VlM24rLbQri8fq3vJNLBM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/1uK451VlM24rLbQri8fq3vJNLBM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/1uK451VlM24rLbQri8fq3vJNLBM.webp 3000w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2e3,intrinsicWidth:3e3,pixelHeight:2e3,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9X7VyXA2qzJDWviHz7sd27Myys.webp\",srcSet:\"https://framerusercontent.com/images/9X7VyXA2qzJDWviHz7sd27Myys.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9X7VyXA2qzJDWviHz7sd27Myys.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/9X7VyXA2qzJDWviHz7sd27Myys.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/9X7VyXA2qzJDWviHz7sd27Myys.webp 3000w\"},className:\"framer-8xdq3\",\"data-framer-name\":\"tab_image_01\",layoutDependency:layoutDependency,layoutId:\"Z3HSc3xaL\",...addPropertyOverrides({fxUgvDhBu:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-562)/2+406+56)+0+0),pixelHeight:2e3,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/9X7VyXA2qzJDWviHz7sd27Myys.webp\",srcSet:\"https://framerusercontent.com/images/9X7VyXA2qzJDWviHz7sd27Myys.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9X7VyXA2qzJDWviHz7sd27Myys.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/9X7VyXA2qzJDWviHz7sd27Myys.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/9X7VyXA2qzJDWviHz7sd27Myys.webp 3000w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||584.5)-0-516)/2)+0+0),pixelHeight:2e3,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 56px) / 2, 1px)`,src:\"https://framerusercontent.com/images/hPX6RZTSIbhfQyNQiupYZOZvtE.webp\",srcSet:\"https://framerusercontent.com/images/hPX6RZTSIbhfQyNQiupYZOZvtE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hPX6RZTSIbhfQyNQiupYZOZvtE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/hPX6RZTSIbhfQyNQiupYZOZvtE.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/hPX6RZTSIbhfQyNQiupYZOZvtE.webp 3000w\"},className:\"framer-ha4hnb\",\"data-framer-name\":\"tab_image_01\",layoutDependency:layoutDependency,layoutId:\"LUCIa1Oc5\",...addPropertyOverrides({oU659nLN5:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1274.5)-0-1493)/2+406+56)+0+0),pixelHeight:2e3,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/hPX6RZTSIbhfQyNQiupYZOZvtE.webp\",srcSet:\"https://framerusercontent.com/images/hPX6RZTSIbhfQyNQiupYZOZvtE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hPX6RZTSIbhfQyNQiupYZOZvtE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/hPX6RZTSIbhfQyNQiupYZOZvtE.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/hPX6RZTSIbhfQyNQiupYZOZvtE.webp 3000w\"}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-086EZ.framer-i2lrcd, .framer-086EZ .framer-i2lrcd { display: block; }\",\".framer-086EZ.framer-1axia7l { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1224px; }\",\".framer-086EZ .framer-csicej { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-086EZ .framer-6skqac-container, .framer-086EZ .framer-3eg5cw-container, .framer-086EZ .framer-v3xq5v-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-086EZ .framer-cdvyey { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-086EZ .framer-udknes, .framer-086EZ .framer-8xdq3 { aspect-ratio: 0.9990300678952473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 100%; }\",\".framer-086EZ .framer-ha4hnb { aspect-ratio: 0.9990300678952473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 585px); overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-086EZ.framer-1axia7l, .framer-086EZ .framer-csicej, .framer-086EZ .framer-cdvyey { gap: 0px; } .framer-086EZ.framer-1axia7l > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-086EZ.framer-1axia7l > :first-child { margin-left: 0px; } .framer-086EZ.framer-1axia7l > :last-child { margin-right: 0px; } .framer-086EZ .framer-csicej > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-086EZ .framer-csicej > :first-child, .framer-086EZ .framer-cdvyey > :first-child { margin-top: 0px; } .framer-086EZ .framer-csicej > :last-child, .framer-086EZ .framer-cdvyey > :last-child { margin-bottom: 0px; } .framer-086EZ .framer-cdvyey > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-086EZ.framer-v-ie8vpx.framer-1axia7l, .framer-086EZ.framer-v-1t0y595.framer-1axia7l, .framer-086EZ.framer-v-n7320g.framer-1axia7l { flex-direction: column; width: 810px; }\",\".framer-086EZ.framer-v-ie8vpx .framer-csicej, .framer-086EZ.framer-v-ie8vpx .framer-cdvyey, .framer-086EZ.framer-v-1t0y595 .framer-csicej, .framer-086EZ.framer-v-1t0y595 .framer-cdvyey, .framer-086EZ.framer-v-n7320g .framer-csicej, .framer-086EZ.framer-v-n7320g .framer-cdvyey { flex: none; width: 100%; }\",\".framer-086EZ.framer-v-ie8vpx .framer-ha4hnb, .framer-086EZ.framer-v-1t0y595 .framer-8xdq3, .framer-086EZ.framer-v-n7320g .framer-udknes { height: var(--framer-aspect-ratio-supported, 811px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-086EZ.framer-v-ie8vpx.framer-1axia7l { gap: 0px; } .framer-086EZ.framer-v-ie8vpx.framer-1axia7l > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-086EZ.framer-v-ie8vpx.framer-1axia7l > :first-child { margin-top: 0px; } .framer-086EZ.framer-v-ie8vpx.framer-1axia7l > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-086EZ.framer-v-1t0y595.framer-1axia7l { gap: 0px; } .framer-086EZ.framer-v-1t0y595.framer-1axia7l > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-086EZ.framer-v-1t0y595.framer-1axia7l > :first-child { margin-top: 0px; } .framer-086EZ.framer-v-1t0y595.framer-1axia7l > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-086EZ.framer-v-n7320g.framer-1axia7l { gap: 0px; } .framer-086EZ.framer-v-n7320g.framer-1axia7l > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-086EZ.framer-v-n7320g.framer-1axia7l > :first-child { margin-top: 0px; } .framer-086EZ.framer-v-n7320g.framer-1axia7l > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 584.5\n * @framerIntrinsicWidth 1224\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oU659nLN5\":{\"layout\":[\"fixed\",\"auto\"]},\"fxUgvDhBu\":{\"layout\":[\"fixed\",\"auto\"]},\"WwUW4WdXd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerw2B_F1NxO=withCSS(Component,css,\"framer-086EZ\");export default Framerw2B_F1NxO;Framerw2B_F1NxO.displayName=\"Tabs Image Copy\";Framerw2B_F1NxO.defaultProps={height:584.5,width:1224};addPropertyControls(Framerw2B_F1NxO,{variant:{options:[\"X8ZnaOPnn\",\"oU659nLN5\",\"fxUgvDhBu\",\"WwUW4WdXd\"],optionTitles:[\"Desktop A\",\"Mobile A\",\"Mobile B\",\"Mobile C\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerw2B_F1NxO,[{explicitInter:true,fonts:[]},...TabItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerw2B_F1NxO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"584.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oU659nLN5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fxUgvDhBu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WwUW4WdXd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1224\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{Frame,useAnimation,addPropertyControls,ControlType}from\"framer\";import{useEffect}from\"react\";function SingleMovingLine({length,color,angle,speed,containerWidth,containerHeight,startDelay,lineThickness}){const controls=useAnimation();useEffect(()=>{const radians=angle*Math.PI/180;const maxDistance=2*Math.sqrt(Math.pow(containerWidth,2)+Math.pow(containerHeight,2));const endX=Math.cos(radians)*maxDistance;const endY=Math.sin(radians)*maxDistance;controls.start({x:endX,y:endY,opacity:[0,1,1,0],transition:{duration:speed,delay:startDelay,repeat:Infinity,repeatType:\"loop\",ease:\"linear\"}});},[angle,speed,startDelay,containerWidth,containerHeight]);return /*#__PURE__*/_jsx(Frame,{width:length,height:lineThickness,backgroundColor:color,center:true,initial:{rotate:angle,x:0,y:0,opacity:0},animate:controls});}export function MovingLines({numberOfLines,density,lineDelay,speed,containerWidth,containerHeight,lineThickness}){return /*#__PURE__*/_jsx(_Fragment,{children:Array.from({length:numberOfLines}).map((_,i)=>/*#__PURE__*/_jsx(SingleMovingLine,{length:100,color:`hsl(158, 81%, 37%)`,angle:Math.random()*360,speed:speed,containerWidth:containerWidth,containerHeight:containerHeight,startDelay:i*lineDelay/density,lineThickness:lineThickness},i))});}addPropertyControls(MovingLines,{numberOfLines:{title:\"Number of Lines\",type:ControlType.Number,defaultValue:10,min:1},density:{title:\"Density\",type:ControlType.Number,defaultValue:1,min:.1,max:10,step:.1},lineDelay:{title:\"Line Delay\",type:ControlType.Number,defaultValue:.2,min:.01,max:2,step:.01},speed:{title:\"Speed\",type:ControlType.Number,defaultValue:4,min:.5,max:10,step:.1},lineThickness:{title:\"Line Thickness\",type:ControlType.Number,defaultValue:2,min:1,max:20,step:1},containerWidth:{title:\"Container Width\",type:ControlType.Number,defaultValue:500,min:100},containerHeight:{title:\"Container Height\",type:ControlType.Number,defaultValue:500,min:100}});\nexport const __FramerMetadata__ = {\"exports\":{\"MovingLines\":{\"type\":\"reactComponent\",\"name\":\"MovingLines\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Timewarp.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";import ComponentsButtonCopy5 from\"https://framerusercontent.com/modules/kxRSdBwu1clazdHXyMKK/ZiwabqN6U8r2OUPAzRpD/UnGp7qnQ4.js\";import FeatureCard from\"https://framerusercontent.com/modules/nriTTZSIawlXvcfS6CdP/4CBFijoBHkCrcCtEdxpr/Kym4ifyAB.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Testimonial from\"#framer/local/canvasComponent/iAC_QIgOI/iAC_QIgOI.js\";import Footer from\"#framer/local/canvasComponent/Nay6sUX2m/Nay6sUX2m.js\";import PricingCard from\"#framer/local/canvasComponent/sr21IGsuy/sr21IGsuy.js\";import NavigationTopbar from\"#framer/local/canvasComponent/vwOltRhhT/vwOltRhhT.js\";import TabsImageCopy from\"#framer/local/canvasComponent/w2B_F1NxO/w2B_F1NxO.js\";import Button from\"#framer/local/canvasComponent/yZBQGZIRL/yZBQGZIRL.js\";import{MovingLines}from\"#framer/local/codeFile/NrbijY6/Timewarp.js\";import*as sharedStyle from\"#framer/local/css/F9x4QnoDS/F9x4QnoDS.js\";import*as sharedStyle2 from\"#framer/local/css/ferGDeq75/ferGDeq75.js\";import*as sharedStyle3 from\"#framer/local/css/fOTtXmCE4/fOTtXmCE4.js\";import*as sharedStyle1 from\"#framer/local/css/Sn1ggcgQ3/Sn1ggcgQ3.js\";import metadataProvider from\"#framer/local/webPageMetadata/PdUNL7WtO/PdUNL7WtO.js\";const NavigationTopbarFonts=getFonts(NavigationTopbar);const ButtonFonts=getFonts(Button);const MovingLinesFonts=getFonts(MovingLines);const EmbedFonts=getFonts(Embed);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const RichTextWithFX=withFX(RichText);const TabsImageCopyFonts=getFonts(TabsImageCopy);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const FeatureCardFonts=getFonts(FeatureCard);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const PricingCardFonts=getFonts(PricingCard);const ComponentsButtonCopy5Fonts=getFonts(ComponentsButtonCopy5);const MotionSectionWithFX=withFX(motion.section);const TestimonialFonts=getFonts(Testimonial);const FooterFonts=getFonts(Footer);const breakpoints={aDI8sK4Ha:\"(min-width: 768px) and (max-width: 1279px)\",DuQzK7q4M:\"(min-width: 1280px) and (max-width: 1535px)\",j8eVIbRkZ:\"(max-width: 767px)\",PAEPyIjrG:\"(min-width: 1536px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NHUh5\";const variantClassNames={aDI8sK4Ha:\"framer-v-aqktc4\",DuQzK7q4M:\"framer-v-1td48oh\",j8eVIbRkZ:\"framer-v-53ue32\",PAEPyIjrG:\"framer-v-6q2xto\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const transition3={delay:1,duration:1,ease:[.44,0,0,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition4={damping:40,delay:.1,mass:1,stiffness:160,type:\"spring\"};const transition5={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transition6={damping:80,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"PAEPyIjrG\",Laptop:\"DuQzK7q4M\",Phone:\"j8eVIbRkZ\",Tablet:\"aDI8sK4Ha\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"PAEPyIjrG\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const RJ1C3SDsl3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"aDI8sK4Ha\",\"j8eVIbRkZ\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"aDI8sK4Ha\")return false;return true;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"PAEPyIjrG\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(11, 12, 11); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-6q2xto\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ucqybe\",\"data-framer-name\":\"shadow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hckxaq\",\"data-framer-name\":\"Group 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mh2spv\",\"data-framer-name\":\"Ellipse 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a1k7jx\",\"data-framer-name\":\"Ellipse 3\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wkt0qz\",\"data-framer-name\":\"Navbar\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:113,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-e017mt-container\",\"data-framer-name\":\"Navbar\",id:\"e017mt\",name:\"Navbar\",nodeId:\"xyNF5rQhE\",scopeId:\"PdUNL7WtO\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{variant:overlay.visible?\"ArN0AKCa6\":\"rkAiYEczi\"},j8eVIbRkZ:{variant:overlay.visible?\"ArN0AKCa6\":\"rkAiYEczi\"}},children:/*#__PURE__*/_jsx(NavigationTopbar,{height:\"100%\",id:\"xyNF5rQhE\",layoutId:\"xyNF5rQhE\",name:\"Navbar\",RJ1C3SDsl:RJ1C3SDsl3bnx0g({overlay}),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"vknkFEn9I\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}}}},children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-4pcufl\"),\"data-framer-portal-id\":\"e017mt\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"jkJReaKap\")}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:`${cx(scopingClassNames,\"framer-k3l8fg\")} hidden-6q2xto hidden-1td48oh`,\"data-framer-portal-id\":\"e017mt\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kdap1w hidden-6q2xto\",\"data-framer-name\":\"Links Mobile\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2ae4d622-3758-4fad-a56d-08fa00cc7638, rgb(182, 182, 185))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"m029H3dNw\",openInNewTab:false,scopeId:\"PdUNL7WtO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7o8msg\",\"data-styles-preset\":\"F9x4QnoDS\",children:\"Home\"})})})}),className:\"framer-w4s409\",fonts:[\"FS;Clash Grotesk-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2ae4d622-3758-4fad-a56d-08fa00cc7638, rgb(182, 182, 185))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"may02PVl_\"},motionChild:true,nodeId:\"d2HMJrFp5\",openInNewTab:false,scopeId:\"PdUNL7WtO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7o8msg\",\"data-styles-preset\":\"F9x4QnoDS\",children:\"About\"})})})}),className:\"framer-3i2fhn\",fonts:[\"FS;Clash Grotesk-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2ae4d622-3758-4fad-a56d-08fa00cc7638, rgb(182, 182, 185))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NQh7qvjFO\"},motionChild:true,nodeId:\"elgFfFqZn\",openInNewTab:false,scopeId:\"PdUNL7WtO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7o8msg\",\"data-styles-preset\":\"F9x4QnoDS\",children:\"Blog\"})})})}),className:\"framer-1dn6zfn\",fonts:[\"FS;Clash Grotesk-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2ae4d622-3758-4fad-a56d-08fa00cc7638, rgb(182, 182, 185))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Tr_tenZPs\"},motionChild:true,nodeId:\"NA80GNRAM\",openInNewTab:false,scopeId:\"PdUNL7WtO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7o8msg\",\"data-styles-preset\":\"F9x4QnoDS\",children:\"Contact\"})})})}),className:\"framer-cnhurd\",fonts:[\"FS;Clash Grotesk-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:\"calc(100vw - 64px)\"},j8eVIbRkZ:{width:\"calc(100vw - 64px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12sv0j2-container hidden-6q2xto\",inComponentSlot:true,nodeId:\"EgOrXFA1q\",rendersWithMotion:true,scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(Button,{EUUcLCuYh:\"rgb(102, 102, 255)\",fY6RZ1Xuh:\"rgb(0, 132, 255)\",height:\"100%\",huxAPJZn8:\"rgb(0, 0, 0)\",id:\"EgOrXFA1q\",layoutId:\"EgOrXFA1q\",ocCWcSoj5:\"rgb(255, 255, 255)\",P7ZHYgc9n:\"rgb(255, 255, 255)\",qzxtK1_9Y:\"https://babarogic.lemonsqueezy.com/buy/3dcc716b-fb9c-41e7-ae54-1c329ee13b75\",RQDpSij6V:\"var(--token-8b7bf222-cf23-422b-9349-f0eb5832be6f, rgb(61, 161, 255))\",style:{width:\"100%\"},TiAMtDaz3:\"Remix Template\",TjWtYtxz1:\"rgb(255, 255, 255)\",variant:\"llZeWFj0E\",width:\"100%\"})})})})]})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g30wzj\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ae9st2-container\",isAuthoredByUser:true,nodeId:\"JbHH5E9Nw\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(MovingLines,{containerHeight:500,containerWidth:500,density:6,height:\"100%\",id:\"JbHH5E9Nw\",layoutId:\"JbHH5E9Nw\",lineDelay:.5,lineThickness:2,numberOfLines:42,speed:6.3,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rxz7gv-container\",isAuthoredByUser:true,nodeId:\"uBwJTFSk2\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(MovingLines,{containerHeight:500,containerWidth:500,density:6,height:\"100%\",id:\"uBwJTFSk2\",layoutId:\"uBwJTFSk2\",lineDelay:.5,lineThickness:2,numberOfLines:42,speed:6.3,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-54nd7p-container\",isAuthoredByUser:true,nodeId:\"JJgbGM3rV\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(MovingLines,{containerHeight:350,containerWidth:500,density:6,height:\"100%\",id:\"JJgbGM3rV\",layoutId:\"JJgbGM3rV\",lineDelay:.5,lineThickness:2,numberOfLines:42,speed:6.3,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11x14pi\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cdqkii\",\"data-framer-name\":\"head-txt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, rgb(255, 255, 255))\"},children:[\"Powerful Email phishing simulations, made \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8b7bf222-cf23-422b-9349-f0eb5832be6f, rgb(61, 161, 255))\"},children:\"simple\"}),\". \"]})}),fonts:[\"GF;Plus Jakarta Sans-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-xwk33z\",\"data-styles-preset\":\"Sn1ggcgQ3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, rgb(255, 255, 255))\"},children:[\"Powerful Email phishing simulations, made \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-8b7bf222-cf23-422b-9349-f0eb5832be6f, rgb(61, 161, 255))\"},children:\"simple\"}),\". \"]})}),className:\"framer-1lodxwt\",\"data-framer-name\":\"A security-first alternative to Okta\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-k8yxrn\",\"data-styles-preset\":\"ferGDeq75\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Introducing \",/*#__PURE__*/_jsx(\"strong\",{children:\"PhishDeck\"}),\", the all-in-one platform for simulating real-world email threats with ease.\"]})}),className:\"framer-nagjco\",\"data-framer-name\":\"We are building a platform for better security in workforce identity and access management. Join as an early design partner and make your mark on the future of identity.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1088tmj\",\"data-framer-name\":\"Arcade Embed\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yf5d3b\",\"data-framer-name\":\"shadow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qewbac\",\"data-framer-name\":\"Group 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y3v6jj\",\"data-framer-name\":\"Ellipse 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rndunk\",\"data-framer-name\":\"Ellipse 3\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u1bgqn\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.15,skewX:0,skewY:0,x:0,y:10}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,animate:animation,className:\"framer-1k5bxgq\",\"data-framer-appear-id\":\"1k5bxgq\",\"data-framer-name\":\"Image Wrapper\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p6532w-container\",isModuleExternal:true,nodeId:\"qtzyLy4dq\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div style=\"position: relative; padding-bottom: calc(52.62645914396887% + 41px); height: 0; width: 100%;\"><iframe src=\"https://demo.arcade.software/ZBdGrdjmdFafTuBdzxfu?embed&show_copy_link=true\" title=\"PhishDeck\" frameborder=\"0\" loading=\"lazy\" webkitallowfullscreen mozallowfullscreen allowfullscreen allow=\"clipboard-write\" style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%;color-scheme: light;\"></iframe></div>',id:\"qtzyLy4dq\",layoutId:\"qtzyLy4dq\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-awxnkf\",\"data-framer-name\":\"Main Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ej9n4\",\"data-framer-name\":\"shadow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kjxjja\",\"data-framer-name\":\"Group 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4j04bp\",\"data-framer-name\":\"Ellipse 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gtcsws\",\"data-framer-name\":\"Ellipse 3\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18cpnem\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ibj4bj\",\"data-framer-name\":\"Module\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kix0vl\",\"data-framer-name\":\"Heading and badge\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(16, 24, 40))\"},children:[\"Phishing attacks are the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\"},children:\"#1\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0em\"},children:\" \"}),\"cause of data breaches and compromises.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Phishing attacks are the #1\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0em\"},children:\" \"}),\"cause \",/*#__PURE__*/_jsx(\"br\",{}),\"of data breaches and compromises.\"]})}),className:\"framer-q6ijc4\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Plus Jakarta Sans-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(16, 24, 40))\"},children:[\"Phishing attacks are the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\"},children:\"#1\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0em\"},children:\" \"}),\"cause of data breaches and compromises.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8b7bf222-cf23-422b-9349-f0eb5832be6f, rgb(61, 161, 255))\"},children:\"But you already knew that.\"})}),className:\"framer-136ez22\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Plus Jakarta Sans-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(102, 112, 133))\"},children:\"Launch automated phishing simulations with ease, gain insight into your user behaviour, and build resilience amongst your workforce, so you can spend more time on what matters.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"Launch automated phishing simulations with ease, gain insight into your user behaviour, and build\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"resilience amongst your workforce, so you can spend more time on what matters.\"})]})}),className:\"framer-19gp7yp\",\"data-framer-name\":\"Supporting text\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{y:(componentViewport?.y||0)+0+641+175+0+0+245.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:584,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,y:(componentViewport?.y||0)+0+1224.8+175+0+0+362,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xd4flj-container hidden-aqktc4\",nodeId:\"U1Fw_wvHc\",rendersWithMotion:true,scopeId:\"PdUNL7WtO\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{variant:\"oU659nLN5\"}},children:/*#__PURE__*/_jsx(TabsImageCopy,{height:\"100%\",id:\"U1Fw_wvHc\",layoutId:\"U1Fw_wvHc\",style:{width:\"100%\"},variant:\"X8ZnaOPnn\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fa4pob\",\"data-framer-name\":\"Features + Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uudzf3\",\"data-framer-name\":\"shadow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-baf78h\",\"data-framer-name\":\"Group 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8egfvw\",\"data-framer-name\":\"Ellipse 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11ua66d\",\"data-framer-name\":\"Ellipse 3\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f4s2xg\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wje8j9\",\"data-framer-name\":\"Title Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-rp61ro\",\"data-styles-preset\":\"fOTtXmCE4\",style:{\"--framer-text-alignment\":\"center\"},children:\"PhishDeck Send Features\"})}),className:\"framer-8cul2i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1kx7a7e\",\"data-framer-appear-id\":\"1kx7a7e\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"s5jEHuQrl\"},implicitPathVariables:undefined},{href:{webPageId:\"s5jEHuQrl\"},implicitPathVariables:undefined},{href:{webPageId:\"s5jEHuQrl\"},implicitPathVariables:undefined},{href:{webPageId:\"s5jEHuQrl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 80px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1641.8+140+0+0+120+0+0},j8eVIbRkZ:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1645.5+140+0+0+100+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:359,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2345.8+140+0+0+120+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kos8eu-container\",isModuleExternal:true,nodeId:\"ICCCXHOtt\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{eZ5aNjZIy:resolvedLinks[2]},DuQzK7q4M:{eZ5aNjZIy:resolvedLinks[1]},j8eVIbRkZ:{eZ5aNjZIy:resolvedLinks[3],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"See examples\",eZ5aNjZIy:resolvedLinks[0],fsUmuS24I:\"Easily test phishing exposure by creating Targets and adding them to Lists.\",g56HeEMzh:\"Targets & Lists\",height:\"100%\",HQlsDHpqI:true,id:\"ICCCXHOtt\",iWUePAQ2h:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",J2X4hmGjs:true,layoutId:\"ICCCXHOtt\",mER01n9w_:\"var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255))\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"ListPlus\",v9GqZEHzf:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",variant:\"KeWUWSw2t\",width:\"100%\",YeZ_xPn5D:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",ZtwabFz5u:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 80px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1641.8+140+0+0+120+0+0},j8eVIbRkZ:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1645.5+140+0+0+100+0+379}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:359,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2345.8+140+0+0+120+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9l985c-container\",isModuleExternal:true,nodeId:\"PGonNVxu5\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"\",fsUmuS24I:\"No need to manually create templates or come up with text - it just works out of the box.\",g56HeEMzh:\"25+ Prebuilt Templates\",height:\"100%\",HQlsDHpqI:true,id:\"PGonNVxu5\",iWUePAQ2h:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",J2X4hmGjs:true,layoutId:\"PGonNVxu5\",mER01n9w_:\"var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255))\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"Browsers\",v9GqZEHzf:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",variant:\"KeWUWSw2t\",width:\"100%\",YeZ_xPn5D:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",ZtwabFz5u:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 80px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1641.8+140+0+0+120+0+0},j8eVIbRkZ:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1645.5+140+0+0+100+0+758}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:359,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2345.8+140+0+0+120+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n6bk2t-container\",isModuleExternal:true,nodeId:\"h3rjNcbU0\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Learn more\",fsUmuS24I:\"Run long-tail phishing simulation campaigns with staggered sending of emails.\",g56HeEMzh:\"Staggered Sending\",height:\"100%\",HQlsDHpqI:true,id:\"h3rjNcbU0\",iWUePAQ2h:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",J2X4hmGjs:true,layoutId:\"h3rjNcbU0\",mER01n9w_:\"var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255))\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"Repeat\",v9GqZEHzf:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",variant:\"KeWUWSw2t\",width:\"100%\",YeZ_xPn5D:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",ZtwabFz5u:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"s5jEHuQrl\"},implicitPathVariables:undefined},{href:{webPageId:\"s5jEHuQrl\"},implicitPathVariables:undefined},{href:{webPageId:\"s5jEHuQrl\"},implicitPathVariables:undefined},{href:{webPageId:\"s5jEHuQrl\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 80px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1641.8+140+0+0+120+0+379},j8eVIbRkZ:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1645.5+140+0+0+100+0+1137}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:359,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2345.8+140+0+0+120+0+379,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gsd5cb-container\",isModuleExternal:true,nodeId:\"Ifn3_8LvP\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{eZ5aNjZIy:resolvedLinks1[2]},DuQzK7q4M:{eZ5aNjZIy:resolvedLinks1[1]},j8eVIbRkZ:{eZ5aNjZIy:resolvedLinks1[3],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"See examples\",eZ5aNjZIy:resolvedLinks1[0],fsUmuS24I:\"Export your organization\u2019s directory and quickly upload Targets in bulk without worrying about duplicates.\\n\",g56HeEMzh:\"Bulk Upload\",height:\"100%\",HQlsDHpqI:true,id:\"Ifn3_8LvP\",iWUePAQ2h:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",J2X4hmGjs:true,layoutId:\"Ifn3_8LvP\",mER01n9w_:\"var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255))\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"UploadSimple\",v9GqZEHzf:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",variant:\"KeWUWSw2t\",width:\"100%\",YeZ_xPn5D:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",ZtwabFz5u:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 80px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1641.8+140+0+0+120+0+379},j8eVIbRkZ:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1645.5+140+0+0+100+0+1516}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:359,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2345.8+140+0+0+120+0+379,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4bllj4-container\",isModuleExternal:true,nodeId:\"ozznAnME2\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Explore styleguide\",fsUmuS24I:\"Send out phishing simulation Campaigns in English and German - with more languages on the way.\",g56HeEMzh:\"Multilingual Templates\",height:\"100%\",HQlsDHpqI:true,id:\"ozznAnME2\",iWUePAQ2h:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",J2X4hmGjs:true,layoutId:\"ozznAnME2\",mER01n9w_:\"var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255))\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"Translate\",v9GqZEHzf:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",variant:\"fAuQYpwCV\",width:\"100%\",YeZ_xPn5D:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",ZtwabFz5u:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 80px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1641.8+140+0+0+120+0+379},j8eVIbRkZ:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1645.5+140+0+0+100+0+1895}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:359,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2345.8+140+0+0+120+0+379,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gc5gbo-container\",isModuleExternal:true,nodeId:\"NULHH6so7\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Explore styleguide\",fsUmuS24I:\"Gain actionable insights over time, allowing you to make informed technical, regulatory and risk decisions over time.\",g56HeEMzh:\"Actionable Insights\",height:\"100%\",HQlsDHpqI:true,id:\"NULHH6so7\",iWUePAQ2h:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",J2X4hmGjs:true,layoutId:\"NULHH6so7\",mER01n9w_:\"var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255))\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"ChartPie\",v9GqZEHzf:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",variant:\"KeWUWSw2t\",width:\"100%\",YeZ_xPn5D:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",ZtwabFz5u:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 80px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1641.8+140+0+0+120+0+758},j8eVIbRkZ:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1645.5+140+0+0+100+0+2274}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:359,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2345.8+140+0+0+120+0+758,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o64svc-container\",isModuleExternal:true,nodeId:\"Yv74LmwJd\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Explore styleguide\",fsUmuS24I:\"Send simulation emails from different domains - making tests more realistic - without any additional setup.\",g56HeEMzh:\"Randomized Sender Domains\",height:\"100%\",HQlsDHpqI:true,id:\"Yv74LmwJd\",iWUePAQ2h:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",J2X4hmGjs:true,layoutId:\"Yv74LmwJd\",mER01n9w_:\"var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255))\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"ShuffleAngular\",v9GqZEHzf:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",variant:\"fAuQYpwCV\",width:\"100%\",YeZ_xPn5D:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",ZtwabFz5u:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 80px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1641.8+140+0+0+120+0+758},j8eVIbRkZ:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1645.5+140+0+0+100+0+2653}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:359,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2345.8+140+0+0+120+0+758,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tskxy1-container\",isModuleExternal:true,nodeId:\"n2Jp_qa3e\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Explore styleguide\",fsUmuS24I:\"Get real-time Slack notifications when users click links, enter credentials, and more.\",g56HeEMzh:\"Slack Integration\",height:\"100%\",HQlsDHpqI:true,id:\"n2Jp_qa3e\",iWUePAQ2h:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",J2X4hmGjs:true,layoutId:\"n2Jp_qa3e\",mER01n9w_:\"var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255))\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"SlackLogo\",v9GqZEHzf:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",variant:\"fAuQYpwCV\",width:\"100%\",YeZ_xPn5D:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",ZtwabFz5u:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 80px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1641.8+140+0+0+120+0+758},j8eVIbRkZ:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1645.5+140+0+0+100+0+3032}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:359,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1200px), 1200px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2345.8+140+0+0+120+0+758,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xfgtkj-container\",isModuleExternal:true,nodeId:\"DLZZy3XaG\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j8eVIbRkZ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Explore styleguide\",fsUmuS24I:\"Get up in minutes, not months. Start running with your first phishing simulation Campaign in a few clicks.\",g56HeEMzh:\"Quick Setup\",height:\"100%\",HQlsDHpqI:true,id:\"DLZZy3XaG\",iWUePAQ2h:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",J2X4hmGjs:true,layoutId:\"DLZZy3XaG\",mER01n9w_:\"var(--token-1d92ceda-8bdd-49bb-a401-28f9c26c0143, rgb(240, 248, 255))\",qKOBsbAyJ:false,style:{height:\"100%\",width:\"100%\"},SXDgbTQKy:\"Timer\",v9GqZEHzf:\"var(--token-d5229cc0-15a0-4c38-b5da-2a811a526ceb, rgb(69, 18, 151))\",variant:\"KeWUWSw2t\",width:\"100%\",YeZ_xPn5D:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",ZtwabFz5u:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ygkyi5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-db7mr5\",\"data-framer-name\":\"shadow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ylavu\",\"data-framer-name\":\"Group 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9igkrx\",\"data-framer-name\":\"Ellipse 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bm8i3n\",\"data-framer-name\":\"Ellipse 3\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p3l8s0\",\"data-framer-name\":\"Heading and badge\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-rp61ro\",\"data-styles-preset\":\"fOTtXmCE4\",style:{\"--framer-text-alignment\":\"left\"},children:\"Hyper-realistic websites and email templates.\"})}),className:\"framer-ap75ng\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Meet Phinn, the next generation of simulated phishing pages.\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Phinn creates proxy-based realistic and dynamic simulations that mimic legitimate sites down to the smallest detail, giving your employees an authentic experience of a phishing attempt without the risk.\"})]}),className:\"framer-7ghg6j\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-500\",\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y72xld\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9hnl0y-container\",isModuleExternal:true,nodeId:\"hsNksrr89\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"hsNksrr89\",layoutId:\"hsNksrr89\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-28j0wg\",\"data-border\":true,\"data-framer-name\":\"amazon\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2500,intrinsicWidth:2500,pixelHeight:2500,pixelWidth:2500,sizes:\"48px\",src:\"https://framerusercontent.com/images/rdRD8JCUDegicQubgaIY6C03iH4.png\",srcSet:\"https://framerusercontent.com/images/rdRD8JCUDegicQubgaIY6C03iH4.png?scale-down-to=512 512w,https://framerusercontent.com/images/rdRD8JCUDegicQubgaIY6C03iH4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rdRD8JCUDegicQubgaIY6C03iH4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rdRD8JCUDegicQubgaIY6C03iH4.png 2500w\"},className:\"framer-5mqhke\",\"data-framer-name\":\"Amazon_icon_svg\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b64ixi\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Amazon\"})}),className:\"framer-1j4rsdw\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-66b55331-5591-4930-80aa-9d1faeb41517, rgb(75, 85, 99))\"},children:\"Security Alert\"})}),className:\"framer-xn6wxf\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1285tmh\",\"data-border\":true,\"data-framer-name\":\"xero\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,pixelHeight:2048,pixelWidth:2048,sizes:\"48px\",src:\"https://framerusercontent.com/images/ybP082rP4sdaFjapnO4AKo0ZE.png\",srcSet:\"https://framerusercontent.com/images/ybP082rP4sdaFjapnO4AKo0ZE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ybP082rP4sdaFjapnO4AKo0ZE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ybP082rP4sdaFjapnO4AKo0ZE.png 2048w\"},className:\"framer-1iolnsl\",\"data-framer-name\":\"Xero_software_logo_svg\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cyy6f\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Xero\"})}),className:\"framer-3znvli\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-66b55331-5591-4930-80aa-9d1faeb41517, rgb(75, 85, 99))\"},children:\"Account Login\"})}),className:\"framer-yb9zw1\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fcma2e\",\"data-border\":true,\"data-framer-name\":\"loom\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:225,pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/ZgnTIlxDT6B5H7pmfAP6GE2EONw.png\"},className:\"framer-159z17v\",\"data-framer-name\":\"download_1\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uc3ebw\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Stripe\"})}),className:\"framer-1yvybk1\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-66b55331-5591-4930-80aa-9d1faeb41517, rgb(75, 85, 99))\"},children:\"Account Warning\"})}),className:\"framer-177qj03\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lh7108-container\",isModuleExternal:true,nodeId:\"fEcudVM63\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"fEcudVM63\",layoutId:\"fEcudVM63\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fn1uf2\",\"data-border\":true,\"data-framer-name\":\"docusign\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:225,pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/HfrGYmYn82JX6GtTMgIRCWou0.png\"},className:\"framer-1mkj92d\",\"data-framer-name\":\"download\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jt1x6j\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"DocuSign\"})}),className:\"framer-dl5gfm\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-66b55331-5591-4930-80aa-9d1faeb41517, rgb(75, 85, 99))\"},children:\"Document Signature\"})}),className:\"framer-1uhi0mx\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14chigl\",\"data-border\":true,\"data-framer-name\":\"github\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-d54tp9\",\"data-framer-name\":\"github\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"49\" viewBox=\"0 0 48 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24 3.44922C12.3975 3.44922 3 12.8467 3 24.4492C3 33.7417 9.01125 41.5905 17.3587 44.373C18.4087 44.5567 18.8025 43.9267 18.8025 43.3755C18.8025 42.8767 18.7763 41.223 18.7763 39.4642C13.5 40.4355 12.135 38.178 11.715 36.9967C11.4787 36.393 10.455 34.5292 9.5625 34.0305C8.8275 33.6367 7.7775 32.6655 9.53625 32.6392C11.19 32.613 12.3713 34.1617 12.765 34.7917C14.655 37.968 17.6738 37.0755 18.8813 36.5242C19.065 35.1592 19.6162 34.2405 20.22 33.7155C15.5475 33.1905 10.665 31.3792 10.665 23.3467C10.665 21.063 11.4788 19.173 12.8175 17.703C12.6075 17.178 11.8725 15.0255 13.0275 12.138C13.0275 12.138 14.7863 11.5867 18.8025 14.2905C20.4825 13.818 22.2675 13.5817 24.0525 13.5817C25.8375 13.5817 27.6225 13.818 29.3025 14.2905C33.3188 11.5605 35.0775 12.138 35.0775 12.138C36.2325 15.0255 35.4975 17.178 35.2875 17.703C36.6263 19.173 37.44 21.0367 37.44 23.3467C37.44 31.4055 32.5313 33.1905 27.8588 33.7155C28.62 34.3717 29.2763 35.6317 29.2763 37.6005C29.2763 40.4092 29.25 42.6667 29.25 43.3755C29.25 43.9267 29.6438 44.583 30.6938 44.373C34.8626 42.9656 38.4852 40.2863 41.0516 36.7122C43.6179 33.1381 44.9989 28.8493 45 24.4492C45 12.8467 35.6025 3.44922 24 3.44922Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uj6xgb\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"GitHub\"})}),className:\"framer-1ezt4jl\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-66b55331-5591-4930-80aa-9d1faeb41517, rgb(75, 85, 99))\"},children:\"Security Alert\"})}),className:\"framer-1ggftyx\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-84bsam\",\"data-border\":true,\"data-framer-name\":\"confluence\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1791,intrinsicWidth:2560,pixelHeight:1791,pixelWidth:2560,sizes:\"68.6097px\",src:\"https://framerusercontent.com/images/m5w7GsotagR1NgN4MhAQfBQmg.png\",srcSet:\"https://framerusercontent.com/images/m5w7GsotagR1NgN4MhAQfBQmg.png?scale-down-to=512 512w,https://framerusercontent.com/images/m5w7GsotagR1NgN4MhAQfBQmg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/m5w7GsotagR1NgN4MhAQfBQmg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/m5w7GsotagR1NgN4MhAQfBQmg.png 2560w\"},className:\"framer-uxsatt\",\"data-framer-name\":\"Salesforce_com_logo_svg\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a2uj2g\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Salesforce\"})}),className:\"framer-qu58q9\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-66b55331-5591-4930-80aa-9d1faeb41517, rgb(75, 85, 99))\"},children:\"Password Expired\"})}),className:\"framer-1yb66a3\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-174nhd0-container\",isModuleExternal:true,nodeId:\"wYmhpsVcd\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"wYmhpsVcd\",layoutId:\"wYmhpsVcd\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m8yoax\",\"data-border\":true,\"data-framer-name\":\"slack\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gga1xy\",\"data-framer-name\":\"slack\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"49\" viewBox=\"0 0 48 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M39.7503 22.9486C41.8212 22.9486 43.5 21.2698 43.5 19.1989V19.1989C43.5 17.128 41.8211 15.4492 39.7502 15.4492V15.4492C37.6791 15.4492 36 17.1282 36 19.1992V22.9486H39.7503ZM29.25 22.9486C31.3211 22.9486 33 21.2696 33 19.1986V8.69922C33 6.62815 31.3211 4.94922 29.25 4.94922V4.94922C27.1789 4.94922 25.5 6.62815 25.5 8.69922V19.1986C25.5 21.2696 27.1789 22.9486 29.25 22.9486V22.9486Z\" fill=\"#2EB67D\"/>\\n<path d=\"M8.24968 25.9499C6.17879 25.9499 4.5 27.6286 4.5 29.6995V29.6995C4.5 31.7704 6.17895 33.4492 8.24984 33.4492V33.4492C10.3209 33.4492 12 31.7703 12 29.6992V25.9499H8.24968ZM18.75 25.9499C16.6789 25.9499 15 27.6288 15 29.6999V40.1992C15 42.2703 16.6789 43.9492 18.75 43.9492V43.9492C20.8211 43.9492 22.5 42.2703 22.5 40.1992V29.6999C22.5 27.6288 20.8211 25.9499 18.75 25.9499V25.9499Z\" fill=\"#E01E5A\"/>\\n<path d=\"M25.5006 40.1995C25.5006 42.2704 27.1794 43.9492 29.2503 43.9492V43.9492C31.3212 43.9492 33 42.2703 33 40.1994V40.1994C33 38.1283 31.3211 36.4492 29.25 36.4492L25.5006 36.4492L25.5006 40.1995ZM25.5006 29.6992C25.5006 31.7703 27.1796 33.4492 29.2506 33.4492L39.75 33.4492C41.8211 33.4492 43.5 31.7703 43.5 29.6992V29.6992C43.5 27.6282 41.8211 25.9492 39.75 25.9492L29.2506 25.9492C27.1796 25.9492 25.5006 27.6282 25.5006 29.6992V29.6992Z\" fill=\"#ECB22E\"/>\\n<path d=\"M22.4994 8.6989C22.4994 6.62801 20.8206 4.94922 18.7497 4.94922V4.94922C16.6788 4.94922 15 6.62817 15 8.69906V8.69906C15 10.7701 16.6789 12.4492 18.75 12.4492L22.4994 12.4492L22.4994 8.6989ZM22.4994 19.1992C22.4994 17.1282 20.8204 15.4492 18.7494 15.4492L8.25 15.4492C6.17893 15.4492 4.5 17.1282 4.5 19.1992V19.1992C4.5 21.2703 6.17893 22.9492 8.25 22.9492L18.7494 22.9492C20.8204 22.9492 22.4994 21.2703 22.4994 19.1992V19.1992Z\" fill=\"#36C5F0\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yrxn8p\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Slack\"})}),className:\"framer-e5hm4d\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-66b55331-5591-4930-80aa-9d1faeb41517, rgb(75, 85, 99))\"},children:\"Password Reset\"})}),className:\"framer-khwfeu\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jxagos\",\"data-border\":true,\"data-framer-name\":\"codepen\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:225,pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/bPPbioJpipM8Z5lgyGXFyhW3z9k.png\"},className:\"framer-lbermk\",\"data-framer-name\":\"download_2\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uf5pg0\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"LinkedIn\"})}),className:\"framer-1xjaz9s\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-66b55331-5591-4930-80aa-9d1faeb41517, rgb(75, 85, 99))\"},children:\"Security Alert\"})}),className:\"framer-mtenb2\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17bpbuu\",\"data-border\":true,\"data-framer-name\":\"intercom\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:204,intrinsicWidth:204,pixelHeight:204,pixelWidth:204,src:\"https://framerusercontent.com/images/rMC8K1caZIX9esVE7NOyGgGAA.png\"},className:\"framer-12x31rw\",\"data-framer-name\":\"images\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pjk7se\",\"data-framer-name\":\"Frame 1984077303\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-2759885a-0605-4b0d-ae5f-9a938c3766f2, rgb(0, 0, 0))\"},children:\"Microsoft\"})}),className:\"framer-1mbf61h\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-66b55331-5591-4930-80aa-9d1faeb41517, rgb(75, 85, 99))\"},children:\"New Login\"})}),className:\"framer-1buyz5x\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pajfpl\",\"data-framer-name\":\"Pricing Boxes\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v2sd0a\",\"data-framer-name\":\"Title Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-rp61ro\",\"data-styles-preset\":\"fOTtXmCE4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pricing\"})}),className:\"framer-1rmjspe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start your plan with a 14-day free trial. No credit card required.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"*Minimum of 10 targets. Pricing based on annual commitment.\"})]}),className:\"framer-ic02pk\",\"data-framer-name\":\"We are a platform that provides services regarding business processing warehouses.\",fonts:[\"GF;Plus Jakarta Sans-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fprtqw\",\"data-framer-name\":\"Pricing Boxes\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ut9k7e\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r7ispm\",\"data-framer-name\":\"Plans\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9) - 64px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+3817.4667+140+369+0+60+0+0+0},j8eVIbRkZ:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+6075.1667+96+369+0+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:667,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4521.4667+140+369+0+60+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9gdyle-container\",nodeId:\"F8KVIPiT_\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PricingCard,{cMcOzUso_:\"VURHk1q7I\",cYoAfOMN3:\"Phinn Realtime Phishing\",height:\"100%\",HV8ml1zvB:\"VURHk1q7I\",id:\"F8KVIPiT_\",IFT_fTuIJ:\"Try Starter for Free\",KGggzmhgx:\"yqVL7bhyU\",LAN53DpvB:\"Self-Service Reporting\",layoutId:\"F8KVIPiT_\",MCEEzgnCV:\"Phone Support\",MDqd__phv:\"VURHk1q7I\",nfSxsMfYW:\"yqVL7bhyU\",Onng4jvrA:\"Basic Email Simulations\",pgRnizZz6:\"VURHk1q7I\",Qanv3e3_O:\"For companies looking for an easy way to get started on their security awareness journey\",SdC3IHUXg:\"40px 30px 40px 30px\",style:{width:\"100%\"},Tz8hG8kuX:\"Starter\",u8PtWwE7E:\"yqVL7bhyU\",UCqDTcg4l:\"https://buy.stripe.com/14k5lE8pp9ES1agcMP\",uP4enigWJ:\"VURHk1q7I\",UzrhXT2ut:\"Dedicated Account Manager\",V6ypSz1aE:\"Basic Risk Assessments\",variant:\"UrwkLTzY9\",width:\"100%\",x4z6pi3Q6:\"\\xa31.50\",xblofMglL:\"Custom Training Modules\",YhjhvogHq:\"Chat or Email Support\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9) - 64px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+3817.4667+140+369+0+60+0+0+699},j8eVIbRkZ:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+6075.1667+96+369+0+60+0+0+699}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:667,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4521.4667+140+369+0+60+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1txvxtm-container\",nodeId:\"HJLgOeQuq\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PricingCard,{cMcOzUso_:\"VURHk1q7I\",cYoAfOMN3:\"Phinn Realtime Phishing\",height:\"100%\",HV8ml1zvB:\"VURHk1q7I\",id:\"HJLgOeQuq\",IFT_fTuIJ:\"Try Pro for Free\",KGggzmhgx:\"yqVL7bhyU\",LAN53DpvB:\"Monthly Reporting\",layoutId:\"HJLgOeQuq\",MCEEzgnCV:\"Phone Support\",MDqd__phv:\"VURHk1q7I\",nfSxsMfYW:\"yqVL7bhyU\",Onng4jvrA:\"Advanced Email Simulations\",pgRnizZz6:\"VURHk1q7I\",Qanv3e3_O:\"Our most popular package, with everything you need, plus our full library of simulations\",SdC3IHUXg:\"40px 30px 40px 30px\",style:{width:\"100%\"},Tz8hG8kuX:\"Pro\",u8PtWwE7E:\"yqVL7bhyU\",UCqDTcg4l:\"https://buy.stripe.com/eVa15o3553gu9GMcMQ\",uP4enigWJ:\"VURHk1q7I\",UzrhXT2ut:\"Dedicated Account Manager\",V6ypSz1aE:\"Behavioural Analysis\",variant:\"nNN9kttST\",width:\"100%\",x4z6pi3Q6:\"\\xa33\",xblofMglL:\"Custom Training Modules\",YhjhvogHq:\"Chat or Email Support\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Tr_tenZPs\"},implicitPathVariables:undefined},{href:{webPageId:\"Tr_tenZPs\"},implicitPathVariables:undefined},{href:{webPageId:\"Tr_tenZPs\"},implicitPathVariables:undefined},{href:{webPageId:\"Tr_tenZPs\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9) - 64px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+3817.4667+140+369+0+60+0+0+1398},j8eVIbRkZ:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+6075.1667+96+369+0+60+0+0+1398}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:667,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4521.4667+140+369+0+60+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14u6zcp-container\",nodeId:\"CfKLSImWU\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{UCqDTcg4l:resolvedLinks2[2]},DuQzK7q4M:{UCqDTcg4l:resolvedLinks2[1]},j8eVIbRkZ:{UCqDTcg4l:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(PricingCard,{cMcOzUso_:\"VURHk1q7I\",cYoAfOMN3:\"Phinn Realtime Phishing\",height:\"100%\",HV8ml1zvB:\"VURHk1q7I\",id:\"CfKLSImWU\",IFT_fTuIJ:\"Contact Us\",KGggzmhgx:\"VURHk1q7I\",LAN53DpvB:\"Weekly Reporting\",layoutId:\"CfKLSImWU\",MCEEzgnCV:\"Phone Support\",MDqd__phv:\"VURHk1q7I\",nfSxsMfYW:\"VURHk1q7I\",Onng4jvrA:\"Fully Managed Service\",pgRnizZz6:\"VURHk1q7I\",Qanv3e3_O:\"Our Pro package, fully managed by us. We run your simulations, training and report back to you\",SdC3IHUXg:\"40px 30px 40px 30px\",style:{width:\"100%\"},Tz8hG8kuX:\"Managed\",u8PtWwE7E:\"VURHk1q7I\",UCqDTcg4l:resolvedLinks2[0],uP4enigWJ:\"VURHk1q7I\",UzrhXT2ut:\"Dedicated Account Manager\",V6ypSz1aE:\"Behavioural Recommendations\",variant:\"UrwkLTzY9\",width:\"100%\",x4z6pi3Q6:\"\\xa35\",xblofMglL:\"Custom Training Modules\",YhjhvogHq:\"Chat or Email Support\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-olu30i\",\"data-framer-name\":\"Plans\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7blogl\",\"data-framer-name\":\"Pricing / Card Copy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vifqcy\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dt308c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Less than 10 Employees? Meet our Micro Plan.\"})})}),className:\"framer-ndav5u\",fonts:[\"GF;Manrope-500\",\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"Our Micro Plan includes our full suite of Pro features and is created exclusively for companies with 10 employees and under.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\"},children:\"One annual price for up to 10 Targets.\"})]}),className:\"framer-rwxs7l\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:`min(min(max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9) - 64px, 1px), 1200px) - 80px, (min(max(min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9) - 64px, 1px), 1200px) - 80px) * 0.3)`,y:(componentViewport?.y||0)+0+3817.4667+140+369+0+60+2095+0+0+40+0+0+317.4},j8eVIbRkZ:{width:`min(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px) - 80px, (min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px) - 80px) * 0.3)`,y:(componentViewport?.y||0)+0+6075.1667+96+369+0+60+2095+0+0+40+0+0+317.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:`min(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px), 1px) - 80px, (max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px), 1px) - 80px) * 0.3)`,y:(componentViewport?.y||0)+0+4521.4667+140+369+0+60+697+0+40+0+0+317.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oi9v8x-container\",isModuleExternal:true,nodeId:\"SzXshTw0x\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(ComponentsButtonCopy5,{CLwo5toVX:\"Buy Now\",height:\"100%\",id:\"SzXshTw0x\",layoutId:\"SzXshTw0x\",qAejPu7n3:\"https://buy.stripe.com/8wMdSa7llaIW3io149\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"CMIRPgllU\",width:\"100%\"})})})})]})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3j3cb9\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10101rq\",\"data-framer-name\":\"shadow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1og57w1\",\"data-framer-name\":\"Group 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vj6er5\",\"data-framer-name\":\"Ellipse 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1et9ex3\",\"data-framer-name\":\"Ellipse 3\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19nr3cf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-rp61ro\",\"data-styles-preset\":\"fOTtXmCE4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Hear from customers using PhishDeck Send\"})}),className:\"framer-lrb8rv\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{height:360,y:(componentViewport?.y||0)+0+6929.8667+0+0+80+120},j8eVIbRkZ:{height:566,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px)`,y:(componentViewport?.y||0)+0+9239.5667+0+0+60+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 64px)`,y:(componentViewport?.y||0)+0+6235.8667+0+0+160+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wfkbq2-container\",nodeId:\"DSrHG1EVX\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{style:{height:\"100%\",width:\"100%\"},variant:\"aeq3o33Le\"},j8eVIbRkZ:{style:{height:\"100%\",width:\"100%\"},variant:\"t8hBSSp3K\"}},children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"DSrHG1EVX\",layoutId:\"DSrHG1EVX\",style:{width:\"100%\"},variant:\"QHCbHVT7F\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7569.8667},j8eVIbRkZ:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10045.5667}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,width:\"1248px\",y:(componentViewport?.y||0)+0+7275.8667,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mzgbm0-container\",nodeId:\"fe4fYT9aY\",scopeId:\"PdUNL7WtO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aDI8sK4Ha:{variant:\"qD82lUNa5\"},j8eVIbRkZ:{variant:\"k2EEDG6yC\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"fe4fYT9aY\",layoutId:\"fe4fYT9aY\",style:{width:\"100%\"},variant:\"e6HBFILgg\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NHUh5.framer-ybgvr4, .framer-NHUh5 .framer-ybgvr4 { display: block; }\",\".framer-NHUh5.framer-6q2xto { align-content: center; align-items: center; background-color: #0b0c0b; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1536px; }\",\".framer-NHUh5 .framer-ucqybe { flex: none; gap: 0px; height: 949px; left: calc(50.00000000000002% - 1216px / 2); overflow: visible; position: absolute; top: -662px; width: 1216px; z-index: 0; }\",\".framer-NHUh5 .framer-hckxaq { flex: none; height: 968px; left: -64px; opacity: 0.4; overflow: visible; position: absolute; right: -74px; top: -120px; }\",\".framer-NHUh5 .framer-mh2spv { -webkit-filter: blur(169.4630889892578px); background-color: #4471e4; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(169.4630889892578px); flex: none; height: 922px; left: calc(49.99999549223409% - 922px / 2); position: absolute; top: 0px; width: 922px; }\",\".framer-NHUh5 .framer-a1k7jx { -webkit-filter: blur(169.4630889892578px); background-color: #3da1ff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; filter: blur(169.4630889892578px); flex: none; height: 725px; left: calc(49.99999549223409% - 725px / 2); opacity: 0.6; position: absolute; width: 725px; }\",\".framer-NHUh5 .framer-wkt0qz, .framer-NHUh5 .framer-1fprtqw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-e017mt-container { flex: 1 0 0px; height: auto; max-width: 1280px; position: relative; width: 1px; z-index: 10; }\",\".framer-NHUh5.framer-4pcufl { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-NHUh5.framer-k3l8fg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; min-height: 456px; overflow: hidden; padding: 0px; position: fixed; top: 0px; width: 100%; }\",\".framer-NHUh5 .framer-kdap1w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 40px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-NHUh5 .framer-w4s409, .framer-NHUh5 .framer-3i2fhn, .framer-NHUh5 .framer-1dn6zfn, .framer-NHUh5 .framer-cnhurd { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-NHUh5 .framer-12sv0j2-container { flex: none; height: auto; position: relative; width: 100%; z-index: 4; }\",\".framer-NHUh5 .framer-g30wzj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 80px 32px 125px 32px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-1ae9st2-container, .framer-NHUh5 .framer-1rxz7gv-container, .framer-NHUh5 .framer-54nd7p-container { flex: none; height: 159%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.75; position: absolute; top: -40px; width: 100%; z-index: 0; }\",\".framer-NHUh5 .framer-11x14pi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1px; }\",\".framer-NHUh5 .framer-1cdqkii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-1lodxwt { flex: none; height: auto; max-width: 830px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NHUh5 .framer-nagjco { flex: none; height: auto; max-width: 580px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NHUh5 .framer-1088tmj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-1yf5d3b, .framer-NHUh5 .framer-17ej9n4, .framer-NHUh5 .framer-uudzf3 { flex: none; gap: 0px; height: 939px; left: calc(50.00000000000002% - 1216px / 2); overflow: visible; position: absolute; top: 371px; width: 1216px; z-index: 0; }\",\".framer-NHUh5 .framer-1qewbac, .framer-NHUh5 .framer-1kjxjja, .framer-NHUh5 .framer-baf78h, .framer-NHUh5 .framer-17ylavu, .framer-NHUh5 .framer-1og57w1 { flex: none; height: 968px; left: -64px; opacity: 0.4; overflow: visible; position: absolute; top: 0px; width: 1354px; }\",\".framer-NHUh5 .framer-y3v6jj, .framer-NHUh5 .framer-1vj6er5 { -webkit-filter: blur(169.4630889892578px); background-color: #4471e4; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(169.4630889892578px); flex: none; height: 922px; left: 0px; position: absolute; top: 0px; width: 922px; }\",\".framer-NHUh5 .framer-rndunk, .framer-NHUh5 .framer-1gtcsws, .framer-NHUh5 .framer-11ua66d, .framer-NHUh5 .framer-1bm8i3n { -webkit-filter: blur(169.4630889892578px); background-color: var(--token-8b7bf222-cf23-422b-9349-f0eb5832be6f, #3da1ff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(169.4630889892578px); flex: none; height: 725px; left: 629px; opacity: 0.6; position: absolute; top: 243px; width: 725px; }\",\".framer-NHUh5 .framer-1u1bgqn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-1k5bxgq { 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: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-NHUh5 .framer-p6532w-container { flex: none; height: 675px; position: relative; width: 1200px; }\",\".framer-NHUh5 .framer-awxnkf { 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: 175px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-4j04bp, .framer-NHUh5 .framer-8egfvw, .framer-NHUh5 .framer-9igkrx { -webkit-filter: blur(169.4630889892578px); background-color: var(--token-8b7bf222-cf23-422b-9349-f0eb5832be6f, #3da1ff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(169.4630889892578px); flex: none; height: 922px; left: 0px; position: absolute; top: 0px; width: 922px; }\",\".framer-NHUh5 .framer-18cpnem { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-ibj4bj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-1kix0vl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-q6ijc4, .framer-NHUh5 .framer-136ez22, .framer-NHUh5 .framer-ap75ng { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NHUh5 .framer-19gp7yp { --framer-paragraph-spacing: 20px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NHUh5 .framer-1xd4flj-container, .framer-NHUh5 .framer-1wfkbq2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-fa4pob { 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: 140px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-f4s2xg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; min-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-1wje8j9, .framer-NHUh5 .framer-v2sd0a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-8cul2i, .framer-NHUh5 .framer-1rmjspe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NHUh5 .framer-1kx7a7e { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-NHUh5 .framer-kos8eu-container, .framer-NHUh5 .framer-9l985c-container, .framer-NHUh5 .framer-n6bk2t-container, .framer-NHUh5 .framer-gsd5cb-container, .framer-NHUh5 .framer-4bllj4-container, .framer-NHUh5 .framer-gc5gbo-container, .framer-NHUh5 .framer-1o64svc-container, .framer-NHUh5 .framer-tskxy1-container, .framer-NHUh5 .framer-xfgtkj-container, .framer-NHUh5 .framer-9hnl0y-container, .framer-NHUh5 .framer-lh7108-container, .framer-NHUh5 .framer-174nhd0-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-ygkyi5 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 180px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-db7mr5 { bottom: -691px; flex: none; gap: 0px; height: 939px; left: -8px; overflow: visible; position: absolute; right: -8px; z-index: 0; }\",\".framer-NHUh5 .framer-p3l8s0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NHUh5 .framer-7ghg6j { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NHUh5 .framer-y72xld { aspect-ratio: 1.0344827586206897 / 1; display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: var(--framer-aspect-ratio-supported, 619px); justify-content: center; overflow: visible; padding: 0px 3px 0px 3px; position: relative; width: 640px; }\",\".framer-NHUh5 .framer-28j0wg, .framer-NHUh5 .framer-fcma2e { --border-bottom-width: 1px; --border-color: var(--token-08cb0f10-6dc5-4949-913f-dbd7168f1cf0, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-7354084b-2f3d-4256-9942-cf21fcb19d60, #f9fafb); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 201px; }\",\".framer-NHUh5 .framer-5mqhke, .framer-NHUh5 .framer-1iolnsl, .framer-NHUh5 .framer-159z17v, .framer-NHUh5 .framer-1mkj92d, .framer-NHUh5 .framer-lbermk, .framer-NHUh5 .framer-12x31rw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 48px; }\",\".framer-NHUh5 .framer-b64ixi, .framer-NHUh5 .framer-cyy6f, .framer-NHUh5 .framer-uc3ebw, .framer-NHUh5 .framer-jt1x6j, .framer-NHUh5 .framer-uj6xgb, .framer-NHUh5 .framer-1a2uj2g, .framer-NHUh5 .framer-yrxn8p, .framer-NHUh5 .framer-uf5pg0, .framer-NHUh5 .framer-1pjk7se { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NHUh5 .framer-1j4rsdw, .framer-NHUh5 .framer-3znvli, .framer-NHUh5 .framer-1yvybk1, .framer-NHUh5 .framer-dl5gfm, .framer-NHUh5 .framer-1ezt4jl, .framer-NHUh5 .framer-qu58q9, .framer-NHUh5 .framer-e5hm4d, .framer-NHUh5 .framer-1xjaz9s, .framer-NHUh5 .framer-1mbf61h { --framer-paragraph-spacing: 60px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NHUh5 .framer-xn6wxf, .framer-NHUh5 .framer-yb9zw1, .framer-NHUh5 .framer-177qj03, .framer-NHUh5 .framer-1uhi0mx, .framer-NHUh5 .framer-1ggftyx, .framer-NHUh5 .framer-1yb66a3, .framer-NHUh5 .framer-khwfeu, .framer-NHUh5 .framer-mtenb2, .framer-NHUh5 .framer-1buyz5x { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NHUh5 .framer-1285tmh { --border-bottom-width: 1px; --border-color: var(--token-08cb0f10-6dc5-4949-913f-dbd7168f1cf0, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-7354084b-2f3d-4256-9942-cf21fcb19d60, #f9fafb); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 202px; }\",\".framer-NHUh5 .framer-1fn1uf2, .framer-NHUh5 .framer-14chigl, .framer-NHUh5 .framer-84bsam, .framer-NHUh5 .framer-m8yoax, .framer-NHUh5 .framer-jxagos, .framer-NHUh5 .framer-17bpbuu { --border-bottom-width: 1px; --border-color: var(--token-08cb0f10-6dc5-4949-913f-dbd7168f1cf0, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-7354084b-2f3d-4256-9942-cf21fcb19d60, #f9fafb); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 200px; }\",\".framer-NHUh5 .framer-d54tp9, .framer-NHUh5 .framer-1gga1xy { flex: none; height: 49px; position: relative; width: 48px; }\",\".framer-NHUh5 .framer-uxsatt { aspect-ratio: 1.4293690675600224 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 69px; }\",\".framer-NHUh5 .framer-1pajfpl { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 140px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NHUh5 .framer-ic02pk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NHUh5 .framer-1ut9k7e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 60px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-NHUh5 .framer-1r7ispm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-9gdyle-container, .framer-NHUh5 .framer-1txvxtm-container, .framer-NHUh5 .framer-14u6zcp-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-NHUh5 .framer-olu30i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-7blogl { align-content: center; align-items: center; background-color: var(--token-a62a5b4e-4bad-40b4-8d83-debd27240e62, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-NHUh5 .framer-1vifqcy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-dt308c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-ndav5u, .framer-NHUh5 .framer-rwxs7l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NHUh5 .framer-1oi9v8x-container { flex: none; height: auto; max-width: 30%; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-3j3cb9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-10101rq { flex: none; gap: 0px; height: 939px; left: calc(50.00000000000002% - 1216px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 939px / 2); width: 1216px; z-index: 0; }\",\".framer-NHUh5 .framer-1et9ex3 { -webkit-filter: blur(169.4630889892578px); background-color: #ffd879; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(169.4630889892578px); flex: none; height: 725px; left: 629px; opacity: 0.6; position: absolute; top: 243px; width: 725px; }\",\".framer-NHUh5 .framer-19nr3cf { align-content: center; align-items: center; background-color: rgba(250, 250, 250, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 160px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-NHUh5 .framer-lrb8rv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NHUh5 .framer-1mzgbm0-container { flex: none; height: auto; position: relative; width: 1248px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-NHUh5[data-border=\"true\"]::after, .framer-NHUh5 [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; }',\"@media (min-width: 1280px) and (max-width: 1535px) { .framer-NHUh5.framer-6q2xto { width: 1280px; }}\",\"@media (min-width: 768px) and (max-width: 1279px) { .framer-NHUh5.framer-6q2xto { width: 768px; } .framer-NHUh5.framer-4pcufl { z-index: 4; } .framer-NHUh5.framer-k3l8fg { min-height: unset; padding: 128px 32px 64px 32px; z-index: 4; } .framer-NHUh5 .framer-g30wzj { padding: 40px 32px 125px 32px; } .framer-NHUh5 .framer-ibj4bj { max-width: unset; } .framer-NHUh5 .framer-19gp7yp { max-width: 80%; } .framer-NHUh5 .framer-1kx7a7e { padding: 0px 20px 0px 20px; } .framer-NHUh5 .framer-1pajfpl { max-width: 90%; padding: 140px 32px 0px 32px; } .framer-NHUh5 .framer-1r7ispm, .framer-NHUh5 .framer-olu30i { flex-direction: column; } .framer-NHUh5 .framer-9gdyle-container, .framer-NHUh5 .framer-1txvxtm-container, .framer-NHUh5 .framer-14u6zcp-container, .framer-NHUh5 .framer-7blogl { flex: none; width: 100%; } .framer-NHUh5 .framer-19nr3cf { padding: 80px 32px 80px 32px; } .framer-NHUh5 .framer-1wfkbq2-container { height: 360px; } .framer-NHUh5 .framer-1mzgbm0-container { width: 100%; }}\",\"@media (max-width: 767px) { .framer-NHUh5.framer-6q2xto { width: 320px; } .framer-NHUh5.framer-4pcufl { z-index: 4; } .framer-NHUh5.framer-k3l8fg { min-height: unset; padding: 128px 32px 32px 32px; z-index: 4; } .framer-NHUh5 .framer-g30wzj { flex-direction: column; padding: 10px 16px 40px 16px; } .framer-NHUh5 .framer-11x14pi { flex: none; max-width: unset; padding: 0px; width: 100%; } .framer-NHUh5 .framer-1lodxwt, .framer-NHUh5 .framer-19gp7yp, .framer-NHUh5 .framer-1wje8j9, .framer-NHUh5 .framer-v2sd0a { max-width: unset; } .framer-NHUh5 .framer-1088tmj { min-width: unset; } .framer-NHUh5 .framer-1u1bgqn, .framer-NHUh5 .framer-18cpnem, .framer-NHUh5 .framer-f4s2xg { gap: 40px; } .framer-NHUh5 .framer-p6532w-container { flex: 1 0 0px; height: 291px; width: 1px; } .framer-NHUh5 .framer-1kx7a7e { grid-template-columns: repeat(1, minmax(200px, 1fr)); max-width: 100%; } .framer-NHUh5 .framer-kos8eu-container, .framer-NHUh5 .framer-9l985c-container, .framer-NHUh5 .framer-n6bk2t-container, .framer-NHUh5 .framer-gsd5cb-container, .framer-NHUh5 .framer-4bllj4-container, .framer-NHUh5 .framer-gc5gbo-container, .framer-NHUh5 .framer-1o64svc-container, .framer-NHUh5 .framer-tskxy1-container, .framer-NHUh5 .framer-xfgtkj-container { height: auto; } .framer-NHUh5 .framer-1pajfpl { max-width: unset; padding: 96px 20px 96px 20px; } .framer-NHUh5 .framer-1r7ispm, .framer-NHUh5 .framer-olu30i { flex-direction: column; } .framer-NHUh5 .framer-9gdyle-container, .framer-NHUh5 .framer-1txvxtm-container, .framer-NHUh5 .framer-14u6zcp-container, .framer-NHUh5 .framer-7blogl { flex: none; width: 100%; } .framer-NHUh5 .framer-19nr3cf { padding: 60px 16px 60px 16px; } .framer-NHUh5 .framer-1wfkbq2-container { height: 566px; } .framer-NHUh5 .framer-1mzgbm0-container { width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7124\n * @framerIntrinsicWidth 1536\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DuQzK7q4M\":{\"layout\":[\"fixed\",\"auto\"]},\"aDI8sK4Ha\":{\"layout\":[\"fixed\",\"auto\"]},\"j8eVIbRkZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerPdUNL7WtO=withCSS(Component,css,\"framer-NHUh5\");export default FramerPdUNL7WtO;FramerPdUNL7WtO.displayName=\"About\";FramerPdUNL7WtO.defaultProps={height:7124,width:1536};addFonts(FramerPdUNL7WtO,[{explicitInter:true,fonts:[{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2SAK53YLUN7RMYJU4MYLSBV6SSSJEJZB/RXS4DPGJRKOUFZMF5X5BVUGNNKJT65XZ/DJS4RYGIUYUXJQOHY5VCZPKSTXUSHTSP.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}]},...NavigationTopbarFonts,...ButtonFonts,...MovingLinesFonts,...EmbedFonts,...TabsImageCopyFonts,...FeatureCardFonts,...TickerFonts,...PricingCardFonts,...ComponentsButtonCopy5Fonts,...TestimonialFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPdUNL7WtO\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DuQzK7q4M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aDI8sK4Ha\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j8eVIbRkZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1536\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"7124\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "Component", "House_default", "React", "renderPathForWeight", "weight", "color", "pathsByWeight2", "pathsByWeight", "renderPath", "House", "props", "ref", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "color", "height", "id", "link", "tap", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "SRBP_E1AV", "zNGAVVmSy", "EnBVDC6a2", "yoZjjb4BV", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapg75dht", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "u", "RichText2", "x", "Icon", "css", "FramerOlTWqYMo3", "withCSS", "OlTWqYMo3_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "fonts", "PhosphorFonts", "getFonts", "Icon", "CTAFonts", "OlTWqYMo3_default", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "backgroundFill", "cardBackground", "cTA", "cTA1", "height", "icon", "icon1", "iconColour2", "iconFill", "iconFill2", "id", "image", "link", "text", "text1", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_ref9", "_humanReadableVariantMap_props_variant", "_ref10", "_ref11", "_ref12", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "J2X4hmGjs", "SXDgbTQKy", "g56HeEMzh", "HQlsDHpqI", "fsUmuS24I", "qKOBsbAyJ", "EgEa9J473", "eZ5aNjZIy", "mER01n9w_", "iWUePAQ2h", "ZtwabFz5u", "v9GqZEHzf", "YeZ_xPn5D", "U8p2pRXMi", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "Image2", "css", "FramerKym4ifyAB", "withCSS", "Kym4ifyAB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useIsOnCanvas", "se", "RenderTarget", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "body", "heading", "height", "id", "tap3", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "b5kgEtdxE", "DNTFIebxH", "zq6VYe2oA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sr1z1e", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "css", "Framers9Uktl_jP", "withCSS", "s9Uktl_jP_default", "addPropertyControls", "ControlType", "addFonts", "TabItemFonts", "getFonts", "s9Uktl_jP_default", "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", "zq6VYe2oAio7656", "args", "zq6VYe2oAfrd3jx", "zq6VYe2oA1fam7u4", "zq6VYe2oA1vdv13v", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "Framerw2B_F1NxO", "withCSS", "w2B_F1NxO_default", "addPropertyControls", "ControlType", "addFonts", "SingleMovingLine", "length", "color", "angle", "speed", "containerWidth", "containerHeight", "startDelay", "lineThickness", "controls", "useAnimation", "ue", "radians", "maxDistance", "endX", "endY", "p", "Frame", "MovingLines", "numberOfLines", "density", "lineDelay", "l", "_", "i", "addPropertyControls", "ControlType", "NavigationTopbarFonts", "getFonts", "vwOltRhhT_default", "ButtonFonts", "yZBQGZIRL_default", "MovingLinesFonts", "MovingLines", "EmbedFonts", "Embed", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "RichTextWithFX", "RichText2", "TabsImageCopyFonts", "w2B_F1NxO_default", "ContainerWithFX", "Container", "MotionDivWithFX", "FeatureCardFonts", "Kym4ifyAB_default", "MotionDivWithOptimizedAppearEffect", "TickerFonts", "Ticker", "PricingCardFonts", "sr21IGsuy_default", "ComponentsButtonCopy5Fonts", "UnGp7qnQ4_default", "MotionSectionWithFX", "TestimonialFonts", "iAC_QIgOI_default", "FooterFonts", "Nay6sUX2m_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition1", "animation", "animation1", "animation2", "transition2", "transition3", "animation3", "transition4", "transition5", "transition6", "animation4", "animation5", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "RJ1C3SDsl3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Image2", "SVG", "resolvedLinks2", "css", "FramerPdUNL7WtO", "withCSS", "PdUNL7WtO_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
