{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/z4fDQnnxpi6ymxyFm7yZ/QLlZKKdP5YkJlBTaCYsQ/Fwt845cAu.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/kSaBbJFUF35IlijXsHPS/jWTlcZ5jNusi0QXZgsYu/cfTGOfvZv.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/357dwL04zMTpwQccg8XW/9JRyhJ1Mi1Z2E57gHhkk/Ebxe8QW0r.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/edLA6lUOjwzHBsem8fiW/TsikvW7APmo3TStPqSkp/MkSCk43yp.js\";const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const DownloadFonts=getFonts(Download);const DownloadControls=getPropertyControls(Download);const cycleOrder=[\"xzesx2r4y\",\"IuY_C_bwP\",\"eqFh1fMJW\",\"z293Y9i8G\"];const serializationHash=\"framer-ZYEBd\";const variantClassNames={eqFh1fMJW:\"framer-v-xjcg9g\",IuY_C_bwP:\"framer-v-1nxk2ci\",xzesx2r4y:\"framer-v-a5c0qj\",z293Y9i8G:\"framer-v-1hcamb9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const transition2={damping:60,delay:.2,mass:1.2,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-100,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Adobe:\"vzdpIn48w\",Android:\"hjX1Z56uI\",BenQ:\"UI22IGnJ9\",BrightSign:\"yWWYZzcX9\",Chrome:\"cWO5OlDlW\",Cineplex:\"hOn0GJ2ss\",Coates:\"RrY13FA_3\",Confluence:\"XZFzV37yH\",CRI:\"NW1TpG3yq\",Discord:\"ltLLClPC6\",Drive:\"phAhJbkk6\",Dropbox:\"B6wDWO9dx\",Elo:\"XB5MbcQF9\",Fedora:\"oCO9pxmZM\",Figma:\"AsxAVACaa\",Giada:\"DfafjBhF2\",Heineking:\"pEzCdaew2\",Intercom:\"E6CFuc36d\",Jira:\"VFH8NcYNF\",LG:\"xd2IXBc4f\",Mailchimp:\"MBSIymR3O\",MoodMedia:\"SUYYqG14O\",Nation:\"HdL6iZeLk\",NEC:\"PaScq3pE8\",Nexmo:\"hMUE6MeZz\",Panasonic:\"pida4gsxE\",PatientPoint:\"xk0ZQy5L5\",Philips:\"XBZQITo1N\",Pixee:\"PhPSjV6ao\",Prodvx:\"F3nSFIYun\",Raspberry:\"EF2PXbXpi\",Samsung:\"t9JdlrqpL\",Sharp:\"DtLNBolBG\",Sita:\"vBSYzgc5u\",Slack:\"XicHgW0WP\",Sony:\"TifJXomDX\",Ubuntu:\"KqzVIKlWA\",Vestel:\"QdtZrA8ks\",Whatsapp:\"J55Ne1yyP\",Windows:\"R_Vg6VoG4\",Zapier:\"fxoUrustB\"};const humanReadableVariantMap={\"Intigration Card \":\"xzesx2r4y\",\"Partners Logo only\":\"IuY_C_bwP\",\"Supported devices\":\"z293Y9i8G\",Legal:\"eqFh1fMJW\"};const getProps=({cTADownloadLink,downloadLink,file,height,hideButton,icon,id,link,link2,logoImage,text,title,validFrom,width,...props})=>{return{...props,aDrtw2l7J:humanReadableEnumMap[icon]??icon??props.aDrtw2l7J??\"XicHgW0WP\",dWfO39qsi:file??props.dWfO39qsi,i8Ak8p3Yw:downloadLink??props.i8Ak8p3Yw??\"Upload\",I9_qemBsE:title??props.I9_qemBsE??\"Slack\",ItdYSljzp:logoImage??props.ItdYSljzp??{src:\"https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png?scale-down-to=512 512w,https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png 1292w\"},m5Q1vWvmc:validFrom??props.m5Q1vWvmc??\"This version enter into force and becomes effective as of 1st June 2023.\",NGA2wXa0C:link??props.NGA2wXa0C,S8SQjo20i:text??props.S8SQjo20i??\"FramerBite gives you the truly  blocks on needed to create a truly website.\",tMoNl7clG:link2??props.tMoNl7clG,v_8ewVQOq:hideButton??props.v_8ewVQOq??true,V8hIV48Tv:cTADownloadLink??props.V8hIV48Tv??\"Download\",variant:humanReadableVariantMap[props.variant]??props.variant??\"xzesx2r4y\"};};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,aDrtw2l7J,I9_qemBsE,S8SQjo20i,V8hIV48Tv,i8Ak8p3Yw,m5Q1vWvmc,dWfO39qsi,NGA2wXa0C,v_8ewVQOq,ItdYSljzp,tMoNl7clG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xzesx2r4y\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"eqFh1fMJW\")return false;return true;};const visible=equals(aDrtw2l7J,\"HdL6iZeLk\");const visible1=equals(aDrtw2l7J,\"fxoUrustB\");const visible2=equals(aDrtw2l7J,\"XicHgW0WP\");const isDisplayed1=value=>{if([\"IuY_C_bwP\",\"z293Y9i8G\"].includes(baseVariant))return false;return value;};const visible3=equals(aDrtw2l7J,\"XZFzV37yH\");const visible4=equals(aDrtw2l7J,\"MBSIymR3O\");const visible5=equals(aDrtw2l7J,\"ltLLClPC6\");const visible6=equals(aDrtw2l7J,\"B6wDWO9dx\");const visible7=equals(aDrtw2l7J,\"AsxAVACaa\");const visible8=equals(aDrtw2l7J,\"VFH8NcYNF\");const visible9=equals(aDrtw2l7J,\"phAhJbkk6\");const visible10=equals(aDrtw2l7J,\"E6CFuc36d\");const visible11=equals(aDrtw2l7J,\"J55Ne1yyP\");const visible12=equals(aDrtw2l7J,\"TifJXomDX\");const isDisplayed2=value=>{if([\"IuY_C_bwP\",\"z293Y9i8G\"].includes(baseVariant))return value;return false;};const visible13=equals(aDrtw2l7J,\"xd2IXBc4f\");const visible14=equals(aDrtw2l7J,\"t9JdlrqpL\");const visible15=equals(aDrtw2l7J,\"yWWYZzcX9\");const visible16=equals(aDrtw2l7J,\"XB5MbcQF9\");const visible17=equals(aDrtw2l7J,\"DtLNBolBG\");const visible18=equals(aDrtw2l7J,\"PaScq3pE8\");const visible19=equals(aDrtw2l7J,\"QdtZrA8ks\");const visible20=equals(aDrtw2l7J,\"EF2PXbXpi\");const visible21=equals(aDrtw2l7J,\"F3nSFIYun\");const visible22=equals(aDrtw2l7J,\"XBZQITo1N\");const visible23=equals(aDrtw2l7J,\"cWO5OlDlW\");const visible24=equals(aDrtw2l7J,\"pida4gsxE\");const visible25=equals(aDrtw2l7J,\"UI22IGnJ9\");const visible26=equals(aDrtw2l7J,\"DfafjBhF2\");const visible27=equals(aDrtw2l7J,\"hMUE6MeZz\");const visible28=equals(aDrtw2l7J,\"vzdpIn48w\");const visible29=equals(aDrtw2l7J,\"NW1TpG3yq\");const visible30=equals(aDrtw2l7J,\"RrY13FA_3\");const visible31=equals(aDrtw2l7J,\"vBSYzgc5u\");const visible32=equals(aDrtw2l7J,\"hOn0GJ2ss\");const visible33=equals(aDrtw2l7J,\"pEzCdaew2\");const visible34=equals(aDrtw2l7J,\"SUYYqG14O\");const visible35=equals(aDrtw2l7J,\"xk0ZQy5L5\");const visible36=equals(aDrtw2l7J,\"PhPSjV6ao\");const isDisplayed3=value=>{if(baseVariant===\"IuY_C_bwP\")return value;if(baseVariant===\"z293Y9i8G\")return true;return false;};const isDisplayed4=()=>{if([\"IuY_C_bwP\",\"z293Y9i8G\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"eqFh1fMJW\")return true;return false;};const isDisplayed6=value=>{if(baseVariant===\"eqFh1fMJW\")return value;return false;};const visible37=negate(isSet(NGA2wXa0C));const visible38=isSet(NGA2wXa0C);const isDisplayed7=value=>{if(baseVariant===\"eqFh1fMJW\")return value;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{nodeId:\"xzesx2r4y\",...addPropertyOverrides({z293Y9i8G:{href:tMoNl7clG,openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-a5c0qj\",className,classNames)} framer-1w83hlm`,\"data-border\":true,\"data-framer-name\":\"Intigration Card \",layoutDependency:layoutDependency,layoutId:\"xzesx2r4y\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(24, 28, 57, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{eqFh1fMJW:{backgroundColor:\"rgba(0, 0, 0, 0)\"},IuY_C_bwP:{backgroundColor:\"rgb(255, 255, 255)\"},z293Y9i8G:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({eqFh1fMJW:{\"data-framer-name\":\"Legal\"},IuY_C_bwP:{\"data-framer-name\":\"Partners Logo only\"},z293Y9i8G:{\"data-framer-name\":\"Supported devices\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wmk7g0\",\"data-framer-name\":\"Card Top \",layoutDependency:layoutDependency,layoutId:\"M7ZPKp_6F\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nytsff\",\"data-framer-name\":\"Intigration Card Icon\",layoutDependency:layoutDependency,layoutId:\"Meuame2ON\",children:[visible&&/*#__PURE__*/_jsx(SVG,{className:\"framer-96bfa0\",\"data-framer-name\":\"Nation\",fill:\"black\",intrinsicHeight:60,intrinsicWidth:60,layoutDependency:layoutDependency,layoutId:\"TwvSvt5Dy\",svg:'<svg width=\"60\" height=\"60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.717 54.783 4.27 46.75a10.787 10.787 0 0 1-2.394-6.757v-29.09c0-3.664 2.932-6.705 6.714-6.963l29.909-2.042a9.748 9.748 0 0 1 6.117 1.636l10.509 7.105c1.88 1.271 3.001 3.35 3.001 5.569v33.073c0 3.586-2.883 6.555-6.586 6.783l-33.195 2.044c-2.955.181-5.812-1.064-7.627-3.325Z\" fill=\"#fff\"/><g fill=\"#000\"><path d=\"M21.09 25.46v-.381c0-.965.773-1.766 1.77-1.833l7.258-.484 10.039 14.782V24.57l-2.584-.344v-.181c0-.977.79-1.783 1.8-1.835l6.605-.338v.95a.928.928 0 0 1-.787.905l-1.59.269v21.01l-1.994.687c-1.667.573-3.522-.04-4.476-1.48l-9.745-14.706v14.036l3 .574-.042.278c-.131.872-.884 1.53-1.794 1.571l-7.46.332c-.099-.937.604-1.775 1.573-1.877l.98-.103V25.603l-2.553-.143Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.765 5.563 8.856 7.605c-1.792.122-3.18 1.562-3.18 3.298v29.09c0 1.631.561 3.216 1.596 4.504l6.448 8.034c1.043 1.299 2.684 2.014 4.381 1.91l33.196-2.044c1.701-.104 3.026-1.469 3.026-3.116V16.208c0-1.02-.515-1.975-1.38-2.56L42.436 6.545a5.85 5.85 0 0 0-3.67-.981Zm-28.426 5.794c-.416-.308-.218-.95.305-.987l28.322-2.032c.902-.065 1.8.184 2.529.701l5.683 4.026c.215.153.114.483-.153.497l-29.993 1.632a3.893 3.893 0 0 1-2.526-.752l-4.167-3.085Zm5.286 8.95c0-.974.787-1.779 1.794-1.834l31.711-1.727c.981-.053 1.807.701 1.807 1.651v28.638c0 .972-.784 1.776-1.789 1.834l-31.51 1.792c-1.092.063-2.013-.776-2.013-1.833v-28.52Z\"/></g></svg>',withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(SVG,{className:\"framer-i5y9yh\",\"data-framer-name\":\"Zapier\",fill:\"black\",intrinsicHeight:60,intrinsicWidth:60,layoutDependency:layoutDependency,layoutId:\"jmnKkYa8g\",svg:'<svg width=\"60\" height=\"60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M35.54 35.554a15.856 15.856 0 0 1-11.114 0 15.834 15.834 0 0 1-.002-11.107 15.846 15.846 0 0 1 11.117 0 15.83 15.83 0 0 1 0 11.107Zm20.345-9.929H40.553l10.84-10.835a26.42 26.42 0 0 0-6.191-6.187L34.36 19.438V4.116a26.462 26.462 0 0 0-8.755 0v15.322L14.763 8.603a26.45 26.45 0 0 0-6.192 6.187l10.843 10.835H4.082c-.379 2.979-.502 5.778 0 8.75h15.332L8.571 45.21a26.444 26.444 0 0 0 6.192 6.188l10.842-10.836v15.324c2.894.484 5.86.484 8.755 0V40.562l10.843 10.836a26.446 26.446 0 0 0 6.19-6.188L40.552 34.375h15.334a26.41 26.41 0 0 0 0-8.75Z\" fill=\"#FF4A00\"/></svg>',withExternalLayout:true}),isDisplayed1(visible2)&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1i65zmi\",\"data-framer-name\":\"Slack\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:50,layoutDependency:layoutDependency,layoutId:\"Dlx_Wnegw\",svg:'<svg width=\"50\" height=\"50\" viewBox=\"0 0 50 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M44.6879 23.1242C47.2765 23.1242 49.375 21.0257 49.375 18.4371C49.375 15.8485 47.2763 13.75 44.6877 13.75C42.0989 13.75 40 15.8487 40 18.4375V23.1242H44.6879ZM31.5625 23.1242C34.1513 23.1242 36.25 21.0255 36.25 18.4367V5.3125C36.25 2.72366 34.1513 0.625 31.5625 0.625C28.9737 0.625 26.875 2.72367 26.875 5.3125V18.4367C26.875 21.0255 28.9737 23.1242 31.5625 23.1242Z\" fill=\"#2EB67D\"/>\\n<path d=\"M5.3121 26.8758C2.72349 26.8758 0.625002 28.9743 0.625002 31.5629C0.625002 34.1515 2.72369 36.25 5.3123 36.25C7.90113 36.25 10 34.1513 10 31.5625V26.8758H5.3121ZM18.4375 26.8758C15.8487 26.8758 13.75 28.9745 13.75 31.5633V44.6875C13.75 47.2763 15.8487 49.375 18.4375 49.375C21.0263 49.375 23.125 47.2763 23.125 44.6875V31.5633C23.125 28.9745 21.0263 26.8758 18.4375 26.8758Z\" fill=\"#E01E5A\"/>\\n<path d=\"M26.8758 44.6879C26.8758 47.2765 28.9743 49.375 31.5629 49.375C34.1515 49.375 36.25 47.2763 36.25 44.6877C36.25 42.0989 34.1513 40 31.5625 40L26.8758 40L26.8758 44.6879ZM26.8758 31.5625C26.8758 34.1513 28.9745 36.25 31.5633 36.25L44.6875 36.25C47.2763 36.25 49.375 34.1513 49.375 31.5625C49.375 28.9737 47.2763 26.875 44.6875 26.875L31.5633 26.875C28.9745 26.875 26.8758 28.9737 26.8758 31.5625Z\" fill=\"#ECB22E\"/>\\n<path d=\"M23.1242 5.3121C23.1242 2.72349 21.0257 0.625005 18.4371 0.625005C15.8485 0.625004 13.75 2.72369 13.75 5.3123C13.75 7.90114 15.8487 10 18.4375 10L23.1242 10L23.1242 5.3121ZM23.1242 18.4375C23.1242 15.8487 21.0255 13.75 18.4367 13.75L5.3125 13.75C2.72366 13.75 0.625 15.8487 0.625 18.4375C0.625 21.0263 2.72367 23.125 5.3125 23.125L18.4367 23.125C21.0255 23.125 23.1242 21.0263 23.1242 18.4375Z\" fill=\"#36C5F0\"/>\\n</svg>\\n',withExternalLayout:true}),visible3&&/*#__PURE__*/_jsx(SVG,{className:\"framer-8u3b3\",\"data-framer-name\":\"Confluence\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"lMLq3IyiY\",svg:'<svg width=\"70\" height=\"70\" viewBox=\"0 0 70 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.6538 48.8285C10.1108 49.7501 9.50103 50.8194 8.98312 51.6714C8.51954 52.4866 8.76841 53.5381 9.5428 54.036L20.4023 60.9909C20.7835 61.2358 21.2432 61.3111 21.6783 61.2C22.1134 61.0888 22.4874 60.8005 22.7162 60.3997C23.1506 59.6434 23.7103 58.661 24.3201 57.6091C28.6221 50.2195 32.9492 51.1237 40.7514 55.001L51.519 60.3301C51.9268 60.5322 52.3958 60.5537 52.8192 60.3899C53.2425 60.2262 53.5841 59.891 53.7661 59.4608L58.9369 47.2898C59.3022 46.4205 58.9305 45.4069 58.1015 45.0121C55.8294 43.8993 51.3102 41.6824 47.242 39.6394C32.6067 32.2412 20.1684 32.7194 10.6538 48.8285Z\" fill=\"url(#paint0_linear_8330_427)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.3456 21.2089C59.8885 20.2874 60.4983 19.2181 61.0162 18.3661C61.4798 17.5508 61.231 16.4994 60.4566 16.0015L49.597 9.04661C49.2127 8.77723 48.7382 8.68605 48.2868 8.79484C47.8354 8.90363 47.4477 9.20262 47.2163 9.62039C46.7819 10.3767 46.2222 11.3591 45.6124 12.411C41.3104 19.8006 36.9833 18.8964 29.1812 15.0191L18.447 9.71602C18.0391 9.51401 17.5701 9.49244 17.1468 9.65622C16.7234 9.82 16.3819 10.1552 16.1999 10.5854L11.0291 22.7564C10.6637 23.6256 11.0355 24.6392 11.8644 25.0341C14.1366 26.1469 18.6558 28.3637 22.7239 30.4067C37.3926 37.7963 49.8309 37.3007 59.3456 21.2089Z\" fill=\"url(#paint1_linear_8330_427)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_8330_427\" x1=\"58.6445\" y1=\"64.5813\" x2=\"45.6456\" y2=\"35.9267\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.18\" stop-color=\"#0052CC\"/>\\n<stop offset=\"1\" stop-color=\"#2684FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_8330_427\" x1=\"11.3549\" y1=\"5.44747\" x2=\"24.3741\" y2=\"34.1153\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.18\" stop-color=\"#0052CC\"/>\\n<stop offset=\"1\" stop-color=\"#2684FF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),visible4&&/*#__PURE__*/_jsx(SVG,{className:\"framer-10bnzqa\",\"data-framer-name\":\"Mailchimp\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"RXsm6lp8j\",svg:'<svg width=\"70\" height=\"70\" viewBox=\"0 0 70 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M35 4.375C18.1084 4.375 4.375 18.1084 4.375 35C4.375 51.8916 18.1084 65.625 35 65.625C51.8916 65.625 65.625 51.8916 65.625 35C65.625 18.1084 51.8916 4.375 35 4.375Z\" fill=\"#FDDD4C\"/>\\n<path d=\"M21.5881 42.9847C20.9184 41.9709 22.6027 40.4365 21.9177 39.1482C21.5228 38.4052 20.8773 37.9422 20.1021 37.845C19.3581 37.7516 18.5917 38.024 18.1032 38.5563C17.3319 39.3956 17.212 40.5381 17.3611 40.9423C17.4157 41.0905 17.5015 41.131 17.563 41.1396C17.9831 41.1949 18.2194 40.1167 18.3645 39.8922C18.7655 39.2733 19.676 39.086 20.3049 39.4928C21.4972 40.264 20.4633 41.5104 20.5526 42.5632C20.6393 43.5882 21.278 44.0002 21.8514 44.0435C22.4091 44.0647 22.7991 43.7547 22.8976 43.5285C23.1337 42.9886 22.1391 43.8189 21.5881 42.9847Z\" fill=\"#181C39\"/>\\n<path d=\"M46.5012 33.6784C46.1885 33.6351 45.8466 33.6362 45.491 33.6784C45.221 33.3377 44.9791 32.7861 44.8426 32.1423C44.5998 30.9969 44.6252 30.1672 45.3029 30.0594C45.9805 29.9516 46.3082 30.6446 46.551 31.79C46.7138 32.56 46.6826 33.2674 46.5012 33.6784Z\" fill=\"#181C39\"/>\\n<path d=\"M39.0788 34.3598C39.1056 34.6192 39.1151 34.8817 39.1075 35.1233C39.7632 35.1618 40.2277 35.4733 40.3513 35.6708C40.4147 35.7729 40.3894 35.8393 40.3689 35.8701C40.3011 35.9757 40.1556 35.9593 39.8508 35.9252C39.5847 35.8953 39.298 35.869 39.0001 35.8827C38.838 36.3798 38.3574 36.4264 38.0197 36.0587C37.7838 36.1306 37.3204 36.4265 37.1824 36.1049C37.1811 35.9454 37.348 35.7134 37.6502 35.5086C37.4439 35.1152 37.3057 34.6939 37.224 34.2577C36.7956 34.3349 36.4102 34.4549 36.1082 34.549C35.9663 34.5931 35.4052 34.8466 35.3395 34.5609C35.2956 34.3636 35.6028 34.0383 35.9275 33.8034C36.2903 33.5459 36.6928 33.3628 37.11 33.2571C37.1011 32.6359 37.2596 32.2025 37.7109 32.1307C38.2706 32.0417 38.6174 32.4725 38.8574 33.2704C39.5338 33.4583 40.2092 33.9243 40.5074 34.406C40.6234 34.5927 40.6458 34.7371 40.5708 34.8131C40.3833 35.0074 39.3448 34.4442 39.0788 34.3598Z\" fill=\"#181C39\"/>\\n<path d=\"M43.5262 37.152C43.9553 37.3599 44.4272 37.2781 44.5813 36.9692C44.7353 36.6602 44.512 36.2415 44.083 36.0336C43.654 35.8257 43.182 35.9075 43.028 36.2165C42.8739 36.5254 43.0972 36.9441 43.5262 37.152Z\" fill=\"#181C39\"/>\\n<path d=\"M45.6382 35.6178C45.646 35.1452 45.9356 34.7679 46.2837 34.7737C46.6318 34.7804 46.9077 35.1674 46.8999 35.639C46.8921 36.1106 46.6025 36.4879 46.2544 36.4821C45.9063 36.4764 45.6304 36.0894 45.6382 35.6178Z\" fill=\"#181C39\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.0779 41.4053C55.0751 41.3955 55.0848 41.4294 55.0779 41.4053C55.7771 41.4053 56.875 42.1984 56.875 44.1148C56.875 46.0215 56.0735 48.1813 55.8843 48.6606C52.9971 55.4905 46.1063 59.2924 37.8981 59.0517C30.2457 58.8275 23.7195 54.8418 20.8635 48.344C19.1367 48.3459 17.3562 47.5961 16.0028 46.4122C14.5763 45.1648 13.6967 43.5507 13.5251 41.8673C13.3915 40.5564 13.5544 39.3369 13.9707 38.2734L12.3667 36.9316C5.02638 30.814 27.9845 5.62548 35.3268 11.9472C35.3639 11.9789 37.825 14.3621 37.8308 14.3678C41.3711 12.8841 50.8569 10.059 50.8676 16.6355C50.8715 18.8194 49.4615 21.3661 47.2023 23.6771C49.8132 26.0672 49.1247 29.4623 49.5405 32.5773L50.4473 32.8256C52.1761 33.304 53.4057 33.9421 54.0073 34.5658C54.6089 35.1886 54.9073 35.792 55.0155 36.4995C55.1169 37.0702 55.1033 38.078 54.3408 39.2051C54.6154 39.9321 54.866 40.657 55.0779 41.4053ZM20.7339 46.572C20.9903 46.5778 21.2448 46.5614 21.4944 46.5191C24.1768 46.0677 24.8789 43.1917 24.4372 40.3678C23.938 37.179 21.7528 36.0548 20.2697 35.9749C19.8573 35.9537 19.4741 35.9903 19.1581 36.0529C16.5108 36.5794 15.016 38.8027 15.3105 41.6902C15.5767 44.3034 18.2542 46.5065 20.7339 46.572ZM14.7381 36.8364C15.6264 35.563 17.0783 34.6419 18.7262 34.3252C20.8236 28.7677 24.326 23.6473 28.9615 20.1236C32.4016 17.2909 36.1118 15.2591 36.1118 15.2591C36.1118 15.2591 34.1138 12.9722 33.5103 12.8038C29.7982 11.8143 21.7811 17.2717 16.6619 24.4827C14.5909 27.4 11.6257 32.5667 13.0434 35.2242C13.218 35.5533 14.2077 36.3994 14.7381 36.8364ZM44.8338 45.2957C44.8397 45.3554 44.8026 45.417 44.749 45.4391C44.749 45.4391 41.7662 46.8088 37.0283 45.3621C37.1987 46.7823 38.921 47.3205 40.1242 47.5152C45.9951 48.5124 51.4838 45.1985 52.7192 44.364C52.9314 44.2208 52.7166 44.5891 52.6783 44.6432C51.1659 46.5691 47.0999 48.7992 41.8101 48.7983C39.5031 48.7973 37.197 47.9955 36.3507 46.7626C35.0372 44.8501 36.2853 42.0579 38.4744 42.3486C42.1745 42.761 45.9679 42.4511 49.3933 40.8817C52.3799 39.5131 53.5081 38.0077 53.3384 36.7882C53.0753 34.8983 50.2733 34.6028 48.857 34.1433C48.2407 33.9421 47.9365 33.7814 47.8673 32.637C47.837 32.1374 47.7493 30.3944 47.7171 29.6735C47.6605 28.4116 47.5065 26.6859 46.4222 25.9736C46.1394 25.7879 45.8255 25.6983 45.4949 25.681C45.2313 25.6684 45.0751 25.7046 44.991 25.7241C44.9722 25.7285 44.9569 25.732 44.945 25.734C44.3595 25.8322 44.0007 26.1284 43.5776 26.4777C43.5532 26.4979 43.5287 26.5182 43.5038 26.5386C42.1514 27.6513 41.0096 27.8332 39.739 27.7793C39.3434 27.7627 38.9355 27.7232 38.5053 27.6815C38.1096 27.6431 37.695 27.603 37.2536 27.5771L36.7144 27.5463C34.5867 27.4385 32.3051 29.2519 31.9258 31.8275C31.502 34.7024 33.1089 36.4634 34.154 37.6086C34.4122 37.8916 34.6361 38.137 34.7866 38.3523C34.8832 38.4822 34.9953 38.6651 34.9953 38.8393C34.9953 39.0472 34.8588 39.2118 34.7252 39.3523C32.5547 41.5555 31.8604 45.0561 32.6785 47.9734C32.7809 48.3372 32.9106 48.6856 33.0637 49.0187C34.9826 53.4452 40.9364 55.5069 46.7518 53.6319C50.8275 52.3177 54.4285 49.1422 55.1618 44.7615C55.3363 43.62 55.0799 43.1792 54.7308 42.9665C54.3613 42.7422 53.9186 42.8202 53.9186 42.8202C53.9186 42.8202 53.7167 41.4563 53.1453 40.2166C51.4497 41.5372 49.2675 42.465 47.6059 42.9357C44.9439 43.6895 42.0683 43.983 39.3175 43.6276C38.2017 43.4834 37.452 43.3865 37.1307 44.417C40.7999 45.7433 44.6836 45.1754 44.6836 45.1754C44.7587 45.1677 44.826 45.2216 44.8338 45.2957ZM34.2474 19.5576C32.2407 20.5711 30 22.3758 28.1805 24.4519C28.1161 24.526 28.2117 24.628 28.2907 24.5713C29.8625 23.4423 32.0174 22.3931 34.8403 21.7136C38.0024 20.9523 41.0466 21.2718 42.9061 21.6924C42.9997 21.7136 43.0582 21.5548 42.9753 21.5086C41.7467 20.8281 39.8609 20.3661 38.5231 20.3565C38.4578 20.3555 38.4207 20.2804 38.4597 20.2285C38.6908 19.9214 39.0077 19.6183 39.2973 19.3988C39.3617 19.3488 39.3227 19.2458 39.2408 19.2506C37.5766 19.3515 33.7755 21.0846 33.7891 21.0216C33.8866 20.5596 34.1938 19.9494 34.3527 19.6645C34.3908 19.5971 34.3167 19.523 34.2474 19.5576Z\" fill=\"#181C39\"/>\\n</svg>\\n',withExternalLayout:true}),visible5&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1yhaztv\",\"data-framer-name\":\"Discord\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"D5obFyVGD\",svg:'<svg width=\"70\" height=\"70\" viewBox=\"0 0 70 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.375 25.375C4.375 18.0243 4.375 14.349 5.80554 11.5414C7.06388 9.07175 9.07175 7.06388 11.5414 5.80554C14.349 4.375 18.0243 4.375 25.375 4.375H44.625C51.9757 4.375 55.651 4.375 58.4586 5.80554C60.9283 7.06388 62.9361 9.07175 64.1945 11.5414C65.625 14.349 65.625 18.0243 65.625 25.375V44.625C65.625 51.9757 65.625 55.651 64.1945 58.4586C62.9361 60.9283 60.9283 62.9361 58.4586 64.1945C55.651 65.625 51.9757 65.625 44.625 65.625H25.375C18.0243 65.625 14.349 65.625 11.5414 64.1945C9.07175 62.9361 7.06388 60.9283 5.80554 58.4586C4.375 55.651 4.375 51.9757 4.375 44.625V25.375Z\" fill=\"url(#paint0_linear_8330_506)\"/>\\n<path d=\"M53.1021 21.9333C49.7907 19.1333 45.8171 17.7333 41.6227 17.5L40.9604 18.2C44.7133 19.1333 48.0247 21 51.1153 23.5667C47.3624 21.4667 43.168 20.0667 38.7529 19.6C37.4283 19.3667 36.3245 19.3667 35 19.3667C33.6755 19.3667 32.5717 19.3667 31.2471 19.6C26.832 20.0667 22.6376 21.4667 18.8847 23.5667C21.9753 21 25.2867 19.1333 29.0396 18.2L28.3773 17.5C24.1829 17.7333 20.2093 19.1333 16.8979 21.9333C13.1451 29.4 11.1583 37.8 10.9375 46.4333C14.2489 50.1667 18.8847 52.5 23.7414 52.5C23.7414 52.5 25.2867 50.6333 26.3905 49C23.5206 48.3 20.8716 46.6667 19.1055 44.1C20.6508 45.0333 22.1961 45.9667 23.7414 46.6667C25.7282 47.6 27.715 48.0667 29.7018 48.5333C31.4679 48.7667 33.2339 49 35 49C36.7661 49 38.5321 48.7667 40.2982 48.5333C42.285 48.0667 44.2718 47.6 46.2586 46.6667C47.8039 45.9667 49.3492 45.0333 50.8945 44.1C49.1284 46.6667 46.4794 48.3 43.6095 49C44.7133 50.6333 46.2586 52.5 46.2586 52.5C51.1153 52.5 55.7511 50.1667 59.0625 46.4333C58.8417 37.8 56.8549 29.4 53.1021 21.9333ZM27.715 42.2333C25.5075 42.2333 23.5206 40.1333 23.5206 37.5667C23.5206 35 25.5075 32.9 27.715 32.9C29.9226 32.9 31.9094 35 31.9094 37.5667C31.9094 40.1333 29.9226 42.2333 27.715 42.2333ZM42.285 42.2333C40.0774 42.2333 38.0906 40.1333 38.0906 37.5667C38.0906 35 40.0774 32.9 42.285 32.9C44.4925 32.9 46.4794 35 46.4794 37.5667C46.4794 40.1333 44.4925 42.2333 42.285 42.2333Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_8330_506\" x1=\"35\" y1=\"4.375\" x2=\"35\" y2=\"65.625\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#687EC9\"/>\\n<stop offset=\"1\" stop-color=\"#5971C3\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),visible6&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1m4pyq6\",\"data-framer-name\":\"Dropbox\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"w2TkjTi4U\",svg:'<svg width=\"70\" height=\"70\" viewBox=\"0 0 70 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"35\" cy=\"35\" r=\"30.625\" fill=\"#0F287F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.0625 17.5L13.125 24.0625L24.0625 30.625L13.125 37.1875L24.0625 43.75L35 37.1875L45.9375 43.75L56.875 37.1875L45.9375 30.625L56.875 24.0625L45.9375 17.5L35 24.0625L24.0625 17.5ZM35 24.0625L45.9375 30.625L35 37.1875L24.0625 30.625L35 24.0625Z\" fill=\"#DAF8FE\"/>\\n<path d=\"M24.0625 48.125L35 41.5625L45.9375 48.125L35 54.6875L24.0625 48.125Z\" fill=\"#DAF8FE\"/>\\n</svg>\\n',withExternalLayout:true}),visible7&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15g0x05\",\"data-framer-name\":\"Figma\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"vPh0Igdm8\",svg:'<svg width=\"70\" height=\"70\" viewBox=\"0 0 70 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35 35C35 29.5634 39.4072 25.1562 44.8438 25.1562C50.2803 25.1562 54.6875 29.5634 54.6875 35C54.6875 40.4366 50.2803 44.8438 44.8438 44.8438C39.4072 44.8438 35 40.4366 35 35Z\" fill=\"#1ABCFE\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.3125 54.6875C15.3125 49.2509 19.7197 44.8438 25.1562 44.8438H35V54.6875C35 60.1241 30.5928 64.5312 25.1562 64.5312C19.7197 64.5312 15.3125 60.1241 15.3125 54.6875Z\" fill=\"#0ACF83\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35 5.46875V25.1562H44.8438C50.2803 25.1562 54.6875 20.7491 54.6875 15.3125C54.6875 9.87595 50.2803 5.46875 44.8438 5.46875H35Z\" fill=\"#FF7262\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.3125 15.3125C15.3125 20.7491 19.7197 25.1562 25.1562 25.1562H35V5.46875H25.1562C19.7197 5.46875 15.3125 9.87595 15.3125 15.3125Z\" fill=\"#F24E1E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.3125 35C15.3125 40.4366 19.7197 44.8438 25.1562 44.8438H35V25.1562H25.1562C19.7197 25.1562 15.3125 29.5634 15.3125 35Z\" fill=\"#A259FF\"/>\\n</svg>\\n',withExternalLayout:true}),visible8&&/*#__PURE__*/_jsx(SVG,{className:\"framer-141dkvw\",\"data-framer-name\":\"Jira\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"QEcikScly\",svg:'<svg width=\"70\" height=\"70\" viewBox=\"0 0 70 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M64.8916 33.286L37.6414 6.92978L35 4.375L14.4871 24.215L5.10838 33.286C4.13054 34.233 4.13054 35.767 5.10838 36.714L23.8492 54.84L35 65.625L55.5129 45.785L55.8305 45.4778L64.8916 36.714C65.8695 35.767 65.8695 34.233 64.8916 33.286ZM35 44.0549L25.638 35L35 25.9451L44.362 35L35 44.0549Z\" fill=\"#2684FF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35 25.9451C28.8704 20.0159 28.8406 10.4125 34.9331 4.44775L14.4453 24.2554L25.5962 35.0404L35 25.9451Z\" fill=\"url(#paint0_linear_8330_486)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M44.3871 34.9756L35 44.0547C37.9585 46.9145 39.6208 50.7942 39.6208 54.8398C39.6208 58.8853 37.9585 62.7651 35 65.6248L55.538 45.7606L44.3871 34.9756Z\" fill=\"url(#paint1_linear_8330_486)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_8330_486\" x1=\"33.3282\" y1=\"16.7851\" x2=\"17.7111\" y2=\"23.6037\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.18\" stop-color=\"#0052CC\"/>\\n<stop offset=\"1\" stop-color=\"#2684FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_8330_486\" x1=\"36.7888\" y1=\"53.1097\" x2=\"52.3778\" y2=\"46.3394\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.18\" stop-color=\"#0052CC\"/>\\n<stop offset=\"1\" stop-color=\"#2684FF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),visible9&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12aucv4\",\"data-framer-name\":\"Drive\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"SH23BvSAa\",svg:'<svg width=\"70\" height=\"70\" viewBox=\"0 0 70 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_8330_450)\">\\n<path d=\"M4.375 26.1528C4.375 18.5298 4.375 14.7184 5.85852 11.8068C7.16347 9.2457 9.2457 7.16347 11.8068 5.85852C14.7184 4.375 18.5298 4.375 26.1528 4.375H43.8472C51.4702 4.375 55.2816 4.375 58.1932 5.85852C60.7543 7.16347 62.8365 9.2457 64.1415 11.8068C65.625 14.7184 65.625 18.5298 65.625 26.1528V43.8472C65.625 51.4702 65.625 55.2816 64.1415 58.1932C62.8365 60.7543 60.7543 62.8365 58.1932 64.1415C55.2816 65.625 51.4702 65.625 43.8472 65.625H26.1528C18.5298 65.625 14.7184 65.625 11.8068 64.1415C9.2457 62.8365 7.16347 60.7543 5.85852 58.1932C4.375 55.2816 4.375 51.4702 4.375 43.8472V26.1528Z\" fill=\"white\"/>\\n<path d=\"M35.0054 27.2364L27.4347 13.8757C27.6861 13.6198 27.9753 13.4519 28.2645 13.3391C26.0319 14.0739 25.0075 16.5809 25.0075 16.5809L11.1771 40.9823C10.9825 41.7473 10.9284 42.4381 10.9527 43.0462H26.0481L35.0054 27.2364Z\" fill=\"#34A853\"/>\\n<path d=\"M35.0039 27.2364L43.9612 43.0462H59.0566C59.0809 42.4381 59.0268 41.7473 58.8322 40.9823L45.0018 16.5809C45.0018 16.5809 43.9747 14.0739 41.7448 13.3391C42.0313 13.4519 42.3232 13.6198 42.5746 13.8757L35.0039 27.2364Z\" fill=\"#FBBC05\"/>\\n<path d=\"M35.0043 27.237L42.575 13.8764C42.3236 13.6204 42.0317 13.4526 41.7452 13.3397C41.4154 13.2324 41.0614 13.1609 40.6776 13.1416H40.2775H29.731H29.331C28.9499 13.1581 28.5931 13.2297 28.2634 13.3397C27.9769 13.4526 27.685 13.6204 27.4336 13.8764L35.0043 27.237Z\" fill=\"#188038\"/>\\n<path d=\"M26.0492 43.0464L18.565 56.2557C18.565 56.2557 18.3164 56.1346 17.9785 55.8842C19.0407 56.7015 20.0732 56.8749 20.0732 56.8749H49.4667C51.0885 56.8749 51.4263 56.2557 51.4263 56.2557C51.4317 56.2529 51.4344 56.2502 51.4398 56.2474L43.961 43.0464H26.0492Z\" fill=\"#4285F4\"/>\\n<path d=\"M26.0505 43.0464H10.9551C11.0308 44.8406 11.8092 45.8891 11.8092 45.8891L12.3768 46.8743C12.4173 46.9321 12.4416 46.9651 12.4416 46.9651L13.6769 49.1337L16.45 53.9606C16.5311 54.1559 16.6257 54.3348 16.7257 54.5054C16.7635 54.5632 16.7986 54.6265 16.8392 54.6816C16.85 54.6981 16.8608 54.7146 16.8716 54.7311C17.2149 55.2154 17.5987 55.5897 17.9825 55.8842C18.3203 56.1373 18.569 56.2557 18.569 56.2557L26.0505 43.0464Z\" fill=\"#1967D2\"/>\\n<path d=\"M43.9609 43.0464H59.0564C58.9807 44.8406 58.2023 45.8891 58.2023 45.8891L57.6347 46.8743C57.5941 46.9321 57.5698 46.9651 57.5698 46.9651L56.3346 49.1337L53.5615 53.9606C53.4804 54.1559 53.3858 54.3348 53.2858 54.5054C53.2479 54.5632 53.2128 54.6265 53.1722 54.6816C53.1614 54.6981 53.1506 54.7146 53.1398 54.7311C52.7965 55.2154 52.4127 55.5897 52.0289 55.8842C51.6911 56.1373 51.4424 56.2557 51.4424 56.2557L43.9609 43.0464Z\" fill=\"#EA4335\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_8330_450\" x=\"-2\" y=\"-1\" width=\"74\" height=\"74\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.05 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_8330_450\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_8330_450\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),visible10&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1lv5l35\",\"data-framer-name\":\"Intercom\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"JZYrulfAk\",svg:'<svg width=\"70\" height=\"70\" viewBox=\"0 0 70 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"35\" cy=\"35\" r=\"30.625\" fill=\"#3290E8\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.125 17.5H21.875C19.49 17.4963 17.5042 19.4944 17.5 21.875V48.125C17.5 50.541 19.4593 52.5 21.875 52.5H48.125C50.51 52.5037 52.4958 50.5056 52.5 48.125V21.875C52.5 19.459 50.5417 17.5 48.125 17.5ZM39.6657 23.9167C39.6657 23.2731 40.189 22.75 40.8333 22.75C41.4777 22.75 42 23.2731 42 23.9167V39.5043C42 40.1479 41.4767 40.671 40.8333 40.671C40.2157 40.6715 39.6682 40.124 39.6667 39.5043L39.6657 23.9167ZM33.8324 23.3265C33.8324 22.6819 34.3556 22.1599 35 22.1599C35.6444 22.1599 36.1676 22.6819 36.1676 23.3265V40.2432C36.1676 40.8878 35.6444 41.4099 35 41.4099C34.3823 41.4104 33.8349 40.8629 33.8333 40.2432L33.8324 23.3265ZM28 23.9167C28 23.2731 28.5233 22.75 29.1667 22.75C29.811 22.75 30.3333 23.2731 30.3333 23.9167V39.5043C30.3333 40.1479 29.811 40.671 29.1667 40.671C28.549 40.6715 28.0015 40.124 28 39.5043V23.9167ZM22.1667 26.25C22.1667 25.6054 22.689 25.0833 23.3333 25.0833C23.9777 25.0833 24.5 25.6054 24.5 26.25V36.7432C24.5 37.3878 23.9767 37.9099 23.3333 37.9099C22.6973 37.9109 22.1677 37.3781 22.1667 36.7432V26.25ZM47.4264 44.0456C47.2471 44.2011 42.9244 47.8265 35 47.8265C27.0756 47.8265 22.7558 44.2001 22.5736 44.0446C22.0916 43.6316 22.0346 42.8822 22.4477 42.4006C22.8504 41.9318 23.6189 41.8717 24.0891 42.2722C24.157 42.3296 28.0165 45.4932 34.999 45.4932C42.0688 45.4932 45.8692 42.3062 45.906 42.2751C46.3756 41.8716 47.147 41.9304 47.5504 42.4006C47.9662 42.8813 47.9099 43.6327 47.4264 44.0456ZM47.8333 36.7442C47.8333 37.3878 47.3101 37.9108 46.6667 37.9108C46.0306 37.9119 45.5011 37.3791 45.5 36.7442V26.25C45.5 25.6054 46.0223 25.0833 46.6657 25.0833C47.3101 25.0833 47.8333 25.6054 47.8333 26.25V36.7442Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),visible11&&/*#__PURE__*/_jsx(SVG,{className:\"framer-s9lr3z\",\"data-framer-name\":\"Whatsapp\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"Ql8gXiq6r\",svg:'<svg width=\"70\" height=\"70\" viewBox=\"0 0 70 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35 67.8125C51.9137 67.8125 65.625 54.1012 65.625 37.1875C65.625 20.2738 51.9137 6.5625 35 6.5625C18.0863 6.5625 4.375 20.2738 4.375 37.1875C4.375 42.68 5.82093 47.8349 8.35291 52.2921L4.375 67.8125L20.3763 64.1021C24.7218 66.4681 29.7039 67.8125 35 67.8125ZM35 63.101C49.3116 63.101 60.9135 51.4991 60.9135 37.1875C60.9135 22.8759 49.3116 11.274 35 11.274C20.6884 11.274 9.08654 22.8759 9.08654 37.1875C9.08654 42.7133 10.8161 47.8351 13.7634 52.0411L11.4423 60.7452L20.2998 58.5308C24.4767 61.4131 29.5413 63.101 35 63.101Z\" fill=\"#BFC8D0\"/>\\n<path d=\"M61.25 35C61.25 49.4975 49.4975 61.25 35 61.25C29.4704 61.25 24.3401 59.5402 20.1089 56.6205L11.1364 58.8636L13.4876 50.0465C10.502 45.7859 8.75 40.5975 8.75 35C8.75 20.5025 20.5025 8.75 35 8.75C49.4975 8.75 61.25 20.5025 61.25 35Z\" fill=\"url(#paint0_linear_8330_523)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35 65.625C51.9137 65.625 65.625 51.9137 65.625 35C65.625 18.0863 51.9137 4.375 35 4.375C18.0863 4.375 4.375 18.0863 4.375 35C4.375 40.4925 5.82093 45.6474 8.35291 50.1046L4.375 65.625L20.3763 61.9146C24.7218 64.2806 29.7039 65.625 35 65.625ZM35 60.9135C49.3116 60.9135 60.9135 49.3116 60.9135 35C60.9135 20.6884 49.3116 9.08654 35 9.08654C20.6884 9.08654 9.08654 20.6884 9.08654 35C9.08654 40.5258 10.8161 45.6476 13.7634 49.8536L11.4423 58.5577L20.2998 56.3433C24.4767 59.2256 29.5413 60.9135 35 60.9135Z\" fill=\"white\"/>\\n<path d=\"M27.3438 20.7813C26.6157 19.3188 25.4987 19.4482 24.3702 19.4482C22.3535 19.4482 19.209 21.8639 19.209 26.3595C19.209 30.044 20.8325 34.0772 26.3034 40.1105C31.5832 45.9331 38.5205 48.9452 44.2798 48.8426C50.0391 48.7401 51.224 43.784 51.224 42.1104C51.224 41.3685 50.7637 40.9984 50.4465 40.8978C48.4839 39.9559 44.8642 38.2009 44.0406 37.8712C43.2169 37.5414 42.7869 37.9874 42.5196 38.23C41.7727 38.9418 40.2921 41.0395 39.7852 41.5113C39.2783 41.9831 38.5225 41.7443 38.208 41.566C37.0506 41.1015 33.9127 39.7057 31.4113 37.281C28.3179 34.2823 28.1363 33.2506 27.5535 32.3322C27.0873 31.5975 27.4294 31.1467 27.6001 30.9497C28.2666 30.1807 29.1869 28.9934 29.5997 28.4033C30.0124 27.8133 29.6847 26.9175 29.4881 26.3596C28.6426 23.96 27.9263 21.9513 27.3438 20.7813Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_8330_523\" x1=\"57.9687\" y1=\"15.3125\" x2=\"8.75\" y2=\"61.25\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#5BD066\"/>\\n<stop offset=\"1\" stop-color=\"#27B43E\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2(visible12)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:41,intrinsicWidth:210,pixelHeight:41,pixelWidth:210,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jY3iMdGY3ej3MCueeJt1QiLis.png\"},className:\"framer-1ad4pts\",\"data-framer-appear-id\":\"1ad4pts\",\"data-framer-name\":\"Sony\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ktlwknKNj\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 0px 116px 0px rgba(0, 0, 0, 0.18000000715255737)\",transformPerspective:1200},variants:{IuY_C_bwP:{boxShadow:\"none\"},z293Y9i8G:{boxShadow:\"none\"}},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:41,intrinsicWidth:210,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:41,pixelWidth:210,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jY3iMdGY3ej3MCueeJt1QiLis.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:41,intrinsicWidth:210,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:41,pixelWidth:210,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jY3iMdGY3ej3MCueeJt1QiLis.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible13)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8qLOzyMsBYzpjQTLpuw4ARBXzDY.png\"},className:\"framer-wgaq8d\",\"data-framer-appear-id\":\"wgaq8d\",\"data-framer-name\":\"LG\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"wAOkPl3_S\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3zu1ruRFVjOVl0nfAZr1eTdrlM.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3zu1ruRFVjOVl0nfAZr1eTdrlM.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible14)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8qLOzyMsBYzpjQTLpuw4ARBXzDY.png\"},className:\"framer-qtfsq6\",\"data-framer-appear-id\":\"qtfsq6\",\"data-framer-name\":\"Samsung\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"UfdqoLDpU\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8qLOzyMsBYzpjQTLpuw4ARBXzDY.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8qLOzyMsBYzpjQTLpuw4ARBXzDY.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible15)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3Ocf0iiCFiYImMBtfoBMvmpPUTw.png\"},className:\"framer-yucq7y\",\"data-framer-appear-id\":\"yucq7y\",\"data-framer-name\":\"BrightSign\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ZcgbnStE2\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3Ocf0iiCFiYImMBtfoBMvmpPUTw.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3Ocf0iiCFiYImMBtfoBMvmpPUTw.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible16)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ET709T226SfkJbX6rXHYc7j2V8.png\"},className:\"framer-4nsri5\",\"data-framer-appear-id\":\"4nsri5\",\"data-framer-name\":\"Elo\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"x5ZfHWFRh\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ET709T226SfkJbX6rXHYc7j2V8.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ET709T226SfkJbX6rXHYc7j2V8.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible17)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Dor5VO1eFl7bcnx7C6iqPa9I3c.png\"},className:\"framer-l9hhz9\",\"data-framer-appear-id\":\"l9hhz9\",\"data-framer-name\":\"Sharp\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"QUM5WiSWR\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Dor5VO1eFl7bcnx7C6iqPa9I3c.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Dor5VO1eFl7bcnx7C6iqPa9I3c.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible18)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dS48MC6Gzqa3LWevXDMcN7Pc724.png\"},className:\"framer-8misuv\",\"data-framer-appear-id\":\"8misuv\",\"data-framer-name\":\"NEC\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"VqaYMFbIH\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dS48MC6Gzqa3LWevXDMcN7Pc724.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dS48MC6Gzqa3LWevXDMcN7Pc724.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible19)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ifgU8eBBse9McxUPhtW2Ym992jM.png\"},className:\"framer-1ddn635\",\"data-framer-appear-id\":\"1ddn635\",\"data-framer-name\":\"Vestel\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"tD42j4Jqc\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ifgU8eBBse9McxUPhtW2Ym992jM.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ifgU8eBBse9McxUPhtW2Ym992jM.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible20)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DFu970WmwmxqO9EAVnpk6XCRsU.png\"},className:\"framer-174bbk7\",\"data-framer-appear-id\":\"174bbk7\",\"data-framer-name\":\"Raspbery\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"tFNywepu1\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DFu970WmwmxqO9EAVnpk6XCRsU.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DFu970WmwmxqO9EAVnpk6XCRsU.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible21)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ABHoBCngIOifT6QQ2Xqh4MkMMcU.png\"},className:\"framer-15l4c5y\",\"data-framer-appear-id\":\"15l4c5y\",\"data-framer-name\":\"Pro\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"w5ukHmrcZ\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ABHoBCngIOifT6QQ2Xqh4MkMMcU.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ABHoBCngIOifT6QQ2Xqh4MkMMcU.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible22)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ReilFz97p8idm17vqIvcdwZXFOA.png\"},className:\"framer-6zd9k5\",\"data-framer-appear-id\":\"6zd9k5\",\"data-framer-name\":\"PPDS Philips\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"q2s_ItL2s\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ReilFz97p8idm17vqIvcdwZXFOA.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ReilFz97p8idm17vqIvcdwZXFOA.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible23)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LQxFahHJpX3xnjN26D2mI3j8ZIU.png\"},className:\"framer-ewzj83\",\"data-framer-appear-id\":\"ewzj83\",\"data-framer-name\":\"Chrome\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"rTHa7oS8c\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LQxFahHJpX3xnjN26D2mI3j8ZIU.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LQxFahHJpX3xnjN26D2mI3j8ZIU.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible24)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JClKrsdpyvbT2zCOopZoC67WkU.png\"},className:\"framer-17uo3sc\",\"data-framer-appear-id\":\"17uo3sc\",\"data-framer-name\":\"Panasonic\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"t38KcSszN\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JClKrsdpyvbT2zCOopZoC67WkU.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JClKrsdpyvbT2zCOopZoC67WkU.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible25)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ictgyJUklEPnVtf1FK8VSpMYxc.png\"},className:\"framer-sqo50s\",\"data-framer-appear-id\":\"sqo50s\",\"data-framer-name\":\"Benq\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"izAezAfAD\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ictgyJUklEPnVtf1FK8VSpMYxc.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ictgyJUklEPnVtf1FK8VSpMYxc.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible26)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yFHhASTACJE040uXHVWeCZtIchI.png\"},className:\"framer-dmzk74\",\"data-framer-appear-id\":\"dmzk74\",\"data-framer-name\":\"Giada\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"m7Rl7NQEy\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yFHhASTACJE040uXHVWeCZtIchI.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yFHhASTACJE040uXHVWeCZtIchI.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible27)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YYRmZSlOZxBDXfd7oyCIUKjm23k.png\"},className:\"framer-1rtw96l\",\"data-framer-appear-id\":\"1rtw96l\",\"data-framer-name\":\"Nexmo\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"XMNLZor7_\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YYRmZSlOZxBDXfd7oyCIUKjm23k.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YYRmZSlOZxBDXfd7oyCIUKjm23k.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible28)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/crrftMEUwLly4Jhne3KKxsXgOk.png\"},className:\"framer-pvlevt\",\"data-framer-appear-id\":\"pvlevt\",\"data-framer-name\":\"Adobe\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Ky2lQuNBO\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/crrftMEUwLly4Jhne3KKxsXgOk.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/crrftMEUwLly4Jhne3KKxsXgOk.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible29)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zJm4nWkHcMONlY4b6tTA5qe2u8I.png\"},className:\"framer-x6npcb\",\"data-framer-appear-id\":\"x6npcb\",\"data-framer-name\":\"CRI\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"PHYrEWTTM\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zJm4nWkHcMONlY4b6tTA5qe2u8I.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zJm4nWkHcMONlY4b6tTA5qe2u8I.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible30)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/aGuyofB9iNzm7koaHSt6yLmjs.png\"},className:\"framer-1n8jvc2\",\"data-framer-appear-id\":\"1n8jvc2\",\"data-framer-name\":\"Coates\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"fcOfv6X5B\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/aGuyofB9iNzm7koaHSt6yLmjs.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/aGuyofB9iNzm7koaHSt6yLmjs.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible31)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OYoqXaOMmWcTjkRUhINDu6Sh2zk.png\"},className:\"framer-1prwf1e\",\"data-framer-appear-id\":\"1prwf1e\",\"data-framer-name\":\"Sita\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"BFP2T7045\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OYoqXaOMmWcTjkRUhINDu6Sh2zk.png\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:310,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:160,pixelWidth:310,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OYoqXaOMmWcTjkRUhINDu6Sh2zk.png\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible32)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,pixelHeight:667,pixelWidth:1292,src:\"https://framerusercontent.com/images/wVk3qZXklaSLbVAxclpXqX24M7w.png\",srcSet:\"https://framerusercontent.com/images/wVk3qZXklaSLbVAxclpXqX24M7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/wVk3qZXklaSLbVAxclpXqX24M7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wVk3qZXklaSLbVAxclpXqX24M7w.png 1292w\"},className:\"framer-flx5ti\",\"data-framer-appear-id\":\"flx5ti\",\"data-framer-name\":\"Cineplex\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"p1khvNKnA\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1034,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:667,pixelWidth:1034,sizes:\"201px\",src:\"https://framerusercontent.com/images/1klux49kLeA386xFYmzTCA19YBA.png\",srcSet:\"https://framerusercontent.com/images/1klux49kLeA386xFYmzTCA19YBA.png?scale-down-to=512 512w,https://framerusercontent.com/images/1klux49kLeA386xFYmzTCA19YBA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1klux49kLeA386xFYmzTCA19YBA.png 1034w\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1034,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:667,pixelWidth:1034,sizes:\"201px\",src:\"https://framerusercontent.com/images/1klux49kLeA386xFYmzTCA19YBA.png\",srcSet:\"https://framerusercontent.com/images/1klux49kLeA386xFYmzTCA19YBA.png?scale-down-to=512 512w,https://framerusercontent.com/images/1klux49kLeA386xFYmzTCA19YBA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1klux49kLeA386xFYmzTCA19YBA.png 1034w\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible33)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,pixelHeight:667,pixelWidth:1292,src:\"https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png\",srcSet:\"https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png 1292w\"},className:\"framer-1h9du6b\",\"data-framer-appear-id\":\"1h9du6b\",\"data-framer-name\":\"Heineking\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"w_HkgPxRQ\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:667,pixelWidth:1292,sizes:\"201px\",src:\"https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png\",srcSet:\"https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png 1292w\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:667,pixelWidth:1292,sizes:\"201px\",src:\"https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png\",srcSet:\"https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png?scale-down-to=512 512w,https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4cqeSaRf0oBmB4yrNABXIn7Njbk.png 1292w\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible34)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,pixelHeight:667,pixelWidth:1292,src:\"https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png\",srcSet:\"https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png 1292w\"},className:\"framer-4d4ab8\",\"data-framer-appear-id\":\"4d4ab8\",\"data-framer-name\":\"MoodMedia\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"KfsLbuOef\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:667,pixelWidth:1292,sizes:\"201px\",src:\"https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png\",srcSet:\"https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png 1292w\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:667,pixelWidth:1292,sizes:\"201px\",src:\"https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png\",srcSet:\"https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NOIwYwlAf4Ac0zzvVXkdGESL3E.png 1292w\"}}},baseVariant,gestureVariant)}),isDisplayed2(visible35)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,pixelHeight:667,pixelWidth:1292,src:\"https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png\",srcSet:\"https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png 1292w\"},className:\"framer-19au5g3\",\"data-framer-appear-id\":\"19au5g3\",\"data-framer-name\":\"PatientPoint\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"SeIpVwIED\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:667,pixelWidth:1292,sizes:\"201px\",src:\"https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png\",srcSet:\"https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png 1292w\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:667,pixelWidth:1292,sizes:\"201px\",src:\"https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png\",srcSet:\"https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ag42qw6y9EmFzBFpi3FfUw6nfp0.png 1292w\"}}},baseVariant,gestureVariant)}),isDisplayed3(visible36)&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,pixelHeight:667,pixelWidth:1292,src:\"https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png\",srcSet:\"https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png?scale-down-to=512 512w,https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png 1292w\"},className:\"framer-1lfkfm9\",\"data-framer-appear-id\":\"1lfkfm9\",\"data-framer-name\":\"Pixee\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"iEw4Y9yZI\",optimized:true,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,transformPerspective:1200},...addPropertyOverrides({IuY_C_bwP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:667,pixelWidth:1292,sizes:\"201px\",src:\"https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png\",srcSet:\"https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png?scale-down-to=512 512w,https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/W1zL6ZbNpRz6F7RB6L8463pZe0.png 1292w\"}},z293Y9i8G:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:667,intrinsicWidth:1292,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||183)-60-123)/2+0+0)+0+0+0),pixelHeight:667,pixelWidth:1292,sizes:\"201px\",...toResponsiveImage(ItdYSljzp)}}},baseVariant,gestureVariant)})]}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1wwwhz\",\"data-styles-preset\":\"MkSCk43yp\",children:\"Slack\"})}),className:\"framer-zqhnhe\",\"data-framer-name\":\"Intigration Card Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UOLVpb6Mo\",text:I9_qemBsE,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-i88e0r\",\"data-styles-preset\":\"cfTGOfvZv\",children:\"Slack is an instant messaging program designed by owned by Salesforce.\"})}),className:\"framer-qh1kkh\",\"data-framer-name\":\"Intigration Card  Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VZM3BQYGD\",text:S8SQjo20i,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9q82fe\",\"data-styles-preset\":\"Ebxe8QW0r\",children:\"FramerBite gives you the truly  blocks on needed to create a truly website.\"})}),className:\"framer-g37v0l\",\"data-framer-name\":\"Intigration Card  Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"knJNE2rK6\",text:m5Q1vWvmc,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed6(v_8ewVQOq)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tqeacs\",layoutDependency:layoutDependency,layoutId:\"l_sBFSHr8\",children:[isDisplayed6(visible37)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pipm1v-container\",layoutDependency:layoutDependency,layoutId:\"MFr52Fjpu-container\",children:/*#__PURE__*/_jsx(Download,{fontControl:{},height:\"100%\",id:\"MFr52Fjpu\",layoutId:\"MFr52Fjpu\",srcFile:dWfO39qsi,srcType:i8Ak8p3Yw,srcURL:\"\",styleOptions:{backgroundColor:\"rgb(17, 17, 17)\",borderRadius:50,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:V8hIV48Tv,width:\"100%\"})})}),isDisplayed7(visible38)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1le21h4-container\",layoutDependency:layoutDependency,layoutId:\"fTfnhBpaA-container\",children:/*#__PURE__*/_jsx(Download,{fontControl:{},height:\"100%\",id:\"fTfnhBpaA\",layoutId:\"fTfnhBpaA\",srcFile:dWfO39qsi,srcType:i8Ak8p3Yw,srcURL:\"\",styleOptions:{backgroundColor:\"rgb(17, 17, 17)\",borderRadius:50,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:V8hIV48Tv,width:\"100%\",...addPropertyOverrides({eqFh1fMJW:{srcFile:undefined,srcType:\"URL\",srcURL:NGA2wXa0C}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZYEBd.framer-1w83hlm, .framer-ZYEBd .framer-1w83hlm { display: block; }\",\".framer-ZYEBd.framer-a5c0qj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 329px; }\",\".framer-ZYEBd .framer-1wmk7g0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYEBd .framer-1nytsff { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 70px; }\",\".framer-ZYEBd .framer-96bfa0 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: 0px; position: absolute; right: 0px; }\",\".framer-ZYEBd .framer-i5y9yh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 5px; position: absolute; right: 5px; top: 5px; }\",\".framer-ZYEBd .framer-1i65zmi { aspect-ratio: 1 / 1; bottom: 7px; flex: none; height: var(--framer-aspect-ratio-supported, 56px); left: 7px; position: absolute; right: 7px; }\",\".framer-ZYEBd .framer-8u3b3, .framer-ZYEBd .framer-10bnzqa { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: 0px; position: absolute; top: 0px; width: 70px; }\",\".framer-ZYEBd .framer-1yhaztv, .framer-ZYEBd .framer-1m4pyq6, .framer-ZYEBd .framer-15g0x05, .framer-ZYEBd .framer-141dkvw, .framer-ZYEBd .framer-12aucv4, .framer-ZYEBd .framer-1lv5l35, .framer-ZYEBd .framer-s9lr3z { flex: none; height: 70px; left: 0px; position: absolute; top: 0px; width: 70px; }\",\".framer-ZYEBd .framer-1ad4pts, .framer-ZYEBd .framer-wgaq8d, .framer-ZYEBd .framer-qtfsq6, .framer-ZYEBd .framer-yucq7y, .framer-ZYEBd .framer-4nsri5, .framer-ZYEBd .framer-l9hhz9, .framer-ZYEBd .framer-8misuv, .framer-ZYEBd .framer-1ddn635, .framer-ZYEBd .framer-174bbk7, .framer-ZYEBd .framer-15l4c5y, .framer-ZYEBd .framer-6zd9k5, .framer-ZYEBd .framer-ewzj83, .framer-ZYEBd .framer-17uo3sc, .framer-ZYEBd .framer-sqo50s, .framer-ZYEBd .framer-dmzk74, .framer-ZYEBd .framer-1rtw96l, .framer-ZYEBd .framer-pvlevt, .framer-ZYEBd .framer-x6npcb, .framer-ZYEBd .framer-1n8jvc2, .framer-ZYEBd .framer-1prwf1e, .framer-ZYEBd .framer-flx5ti, .framer-ZYEBd .framer-1h9du6b, .framer-ZYEBd .framer-4d4ab8, .framer-ZYEBd .framer-19au5g3, .framer-ZYEBd .framer-1lfkfm9 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: -41px; overflow: visible; padding: 10px; position: absolute; right: -37px; top: 0px; z-index: 1; }\",\".framer-ZYEBd .framer-zqhnhe { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYEBd .framer-qh1kkh, .framer-ZYEBd .framer-g37v0l { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYEBd .framer-tqeacs { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYEBd .framer-1pipm1v-container, .framer-ZYEBd .framer-1le21h4-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZYEBd.framer-a5c0qj, .framer-ZYEBd .framer-1wmk7g0, .framer-ZYEBd .framer-1ad4pts, .framer-ZYEBd .framer-wgaq8d, .framer-ZYEBd .framer-qtfsq6, .framer-ZYEBd .framer-yucq7y, .framer-ZYEBd .framer-4nsri5, .framer-ZYEBd .framer-l9hhz9, .framer-ZYEBd .framer-8misuv, .framer-ZYEBd .framer-1ddn635, .framer-ZYEBd .framer-174bbk7, .framer-ZYEBd .framer-15l4c5y, .framer-ZYEBd .framer-6zd9k5, .framer-ZYEBd .framer-ewzj83, .framer-ZYEBd .framer-17uo3sc, .framer-ZYEBd .framer-sqo50s, .framer-ZYEBd .framer-dmzk74, .framer-ZYEBd .framer-1rtw96l, .framer-ZYEBd .framer-pvlevt, .framer-ZYEBd .framer-x6npcb, .framer-ZYEBd .framer-1n8jvc2, .framer-ZYEBd .framer-1prwf1e, .framer-ZYEBd .framer-flx5ti, .framer-ZYEBd .framer-1h9du6b, .framer-ZYEBd .framer-4d4ab8, .framer-ZYEBd .framer-19au5g3, .framer-ZYEBd .framer-1lfkfm9, .framer-ZYEBd .framer-tqeacs { gap: 0px; } .framer-ZYEBd.framer-a5c0qj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ZYEBd.framer-a5c0qj > :first-child { margin-top: 0px; } .framer-ZYEBd.framer-a5c0qj > :last-child { margin-bottom: 0px; } .framer-ZYEBd .framer-1wmk7g0 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-ZYEBd .framer-1wmk7g0 > :first-child, .framer-ZYEBd .framer-1ad4pts > :first-child, .framer-ZYEBd .framer-wgaq8d > :first-child, .framer-ZYEBd .framer-qtfsq6 > :first-child, .framer-ZYEBd .framer-yucq7y > :first-child, .framer-ZYEBd .framer-4nsri5 > :first-child, .framer-ZYEBd .framer-l9hhz9 > :first-child, .framer-ZYEBd .framer-8misuv > :first-child, .framer-ZYEBd .framer-1ddn635 > :first-child, .framer-ZYEBd .framer-174bbk7 > :first-child, .framer-ZYEBd .framer-15l4c5y > :first-child, .framer-ZYEBd .framer-6zd9k5 > :first-child, .framer-ZYEBd .framer-ewzj83 > :first-child, .framer-ZYEBd .framer-17uo3sc > :first-child, .framer-ZYEBd .framer-sqo50s > :first-child, .framer-ZYEBd .framer-dmzk74 > :first-child, .framer-ZYEBd .framer-1rtw96l > :first-child, .framer-ZYEBd .framer-pvlevt > :first-child, .framer-ZYEBd .framer-x6npcb > :first-child, .framer-ZYEBd .framer-1n8jvc2 > :first-child, .framer-ZYEBd .framer-1prwf1e > :first-child, .framer-ZYEBd .framer-flx5ti > :first-child, .framer-ZYEBd .framer-1h9du6b > :first-child, .framer-ZYEBd .framer-4d4ab8 > :first-child, .framer-ZYEBd .framer-19au5g3 > :first-child, .framer-ZYEBd .framer-1lfkfm9 > :first-child, .framer-ZYEBd .framer-tqeacs > :first-child { margin-left: 0px; } .framer-ZYEBd .framer-1wmk7g0 > :last-child, .framer-ZYEBd .framer-1ad4pts > :last-child, .framer-ZYEBd .framer-wgaq8d > :last-child, .framer-ZYEBd .framer-qtfsq6 > :last-child, .framer-ZYEBd .framer-yucq7y > :last-child, .framer-ZYEBd .framer-4nsri5 > :last-child, .framer-ZYEBd .framer-l9hhz9 > :last-child, .framer-ZYEBd .framer-8misuv > :last-child, .framer-ZYEBd .framer-1ddn635 > :last-child, .framer-ZYEBd .framer-174bbk7 > :last-child, .framer-ZYEBd .framer-15l4c5y > :last-child, .framer-ZYEBd .framer-6zd9k5 > :last-child, .framer-ZYEBd .framer-ewzj83 > :last-child, .framer-ZYEBd .framer-17uo3sc > :last-child, .framer-ZYEBd .framer-sqo50s > :last-child, .framer-ZYEBd .framer-dmzk74 > :last-child, .framer-ZYEBd .framer-1rtw96l > :last-child, .framer-ZYEBd .framer-pvlevt > :last-child, .framer-ZYEBd .framer-x6npcb > :last-child, .framer-ZYEBd .framer-1n8jvc2 > :last-child, .framer-ZYEBd .framer-1prwf1e > :last-child, .framer-ZYEBd .framer-flx5ti > :last-child, .framer-ZYEBd .framer-1h9du6b > :last-child, .framer-ZYEBd .framer-4d4ab8 > :last-child, .framer-ZYEBd .framer-19au5g3 > :last-child, .framer-ZYEBd .framer-1lfkfm9 > :last-child, .framer-ZYEBd .framer-tqeacs > :last-child { margin-right: 0px; } .framer-ZYEBd .framer-1ad4pts > *, .framer-ZYEBd .framer-wgaq8d > *, .framer-ZYEBd .framer-qtfsq6 > *, .framer-ZYEBd .framer-yucq7y > *, .framer-ZYEBd .framer-4nsri5 > *, .framer-ZYEBd .framer-l9hhz9 > *, .framer-ZYEBd .framer-8misuv > *, .framer-ZYEBd .framer-1ddn635 > *, .framer-ZYEBd .framer-174bbk7 > *, .framer-ZYEBd .framer-15l4c5y > *, .framer-ZYEBd .framer-6zd9k5 > *, .framer-ZYEBd .framer-ewzj83 > *, .framer-ZYEBd .framer-17uo3sc > *, .framer-ZYEBd .framer-sqo50s > *, .framer-ZYEBd .framer-dmzk74 > *, .framer-ZYEBd .framer-1rtw96l > *, .framer-ZYEBd .framer-pvlevt > *, .framer-ZYEBd .framer-x6npcb > *, .framer-ZYEBd .framer-1n8jvc2 > *, .framer-ZYEBd .framer-1prwf1e > *, .framer-ZYEBd .framer-flx5ti > *, .framer-ZYEBd .framer-1h9du6b > *, .framer-ZYEBd .framer-4d4ab8 > *, .framer-ZYEBd .framer-19au5g3 > *, .framer-ZYEBd .framer-1lfkfm9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZYEBd .framer-tqeacs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-ZYEBd.framer-v-1nxk2ci .framer-1wmk7g0, .framer-ZYEBd.framer-v-1hcamb9 .framer-1wmk7g0 { flex-direction: column; }\",\".framer-ZYEBd.framer-v-1nxk2ci .framer-1nytsff, .framer-ZYEBd.framer-v-1hcamb9 .framer-1nytsff { height: 123px; width: var(--framer-aspect-ratio-supported, 123px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZYEBd.framer-v-1nxk2ci .framer-1wmk7g0 { gap: 0px; } .framer-ZYEBd.framer-v-1nxk2ci .framer-1wmk7g0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ZYEBd.framer-v-1nxk2ci .framer-1wmk7g0 > :first-child { margin-top: 0px; } .framer-ZYEBd.framer-v-1nxk2ci .framer-1wmk7g0 > :last-child { margin-bottom: 0px; } }\",\".framer-ZYEBd.framer-v-xjcg9g.framer-a5c0qj { justify-content: flex-start; }\",\".framer-ZYEBd.framer-v-xjcg9g .framer-1wmk7g0 { align-content: flex-start; align-items: flex-start; }\",\".framer-ZYEBd.framer-v-1hcamb9.framer-a5c0qj { text-decoration: none; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZYEBd.framer-v-1hcamb9 .framer-1wmk7g0 { gap: 0px; } .framer-ZYEBd.framer-v-1hcamb9 .framer-1wmk7g0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ZYEBd.framer-v-1hcamb9 .framer-1wmk7g0 > :first-child { margin-top: 0px; } .framer-ZYEBd.framer-v-1hcamb9 .framer-1wmk7g0 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-ZYEBd[data-border=\"true\"]::after, .framer-ZYEBd [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 235\n * @framerIntrinsicWidth 329\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IuY_C_bwP\":{\"layout\":[\"fixed\",\"auto\"]},\"eqFh1fMJW\":{\"layout\":[\"fixed\",\"auto\"]},\"z293Y9i8G\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"aDrtw2l7J\":\"icon\",\"I9_qemBsE\":\"title\",\"S8SQjo20i\":\"text\",\"V8hIV48Tv\":\"cTADownloadLink\",\"i8Ak8p3Yw\":\"downloadLink\",\"m5Q1vWvmc\":\"validFrom\",\"dWfO39qsi\":\"file\",\"NGA2wXa0C\":\"link\",\"v_8ewVQOq\":\"hideButton\",\"ItdYSljzp\":\"logoImage\",\"tMoNl7clG\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFwt845cAu=withCSS(Component,css,\"framer-ZYEBd\");export default FramerFwt845cAu;FramerFwt845cAu.displayName=\"Integration Card version 2\";FramerFwt845cAu.defaultProps={height:235,width:329};addPropertyControls(FramerFwt845cAu,{variant:{options:[\"xzesx2r4y\",\"IuY_C_bwP\",\"eqFh1fMJW\",\"z293Y9i8G\"],optionTitles:[\"Intigration Card \",\"Partners Logo only\",\"Legal\",\"Supported devices\"],title:\"Variant\",type:ControlType.Enum},aDrtw2l7J:{defaultValue:\"XicHgW0WP\",options:[\"XicHgW0WP\",\"fxoUrustB\",\"HdL6iZeLk\",\"XZFzV37yH\",\"MBSIymR3O\",\"ltLLClPC6\",\"B6wDWO9dx\",\"AsxAVACaa\",\"VFH8NcYNF\",\"phAhJbkk6\",\"E6CFuc36d\",\"J55Ne1yyP\",\"TifJXomDX\",\"t9JdlrqpL\",\"xd2IXBc4f\",\"DtLNBolBG\",\"PaScq3pE8\",\"QdtZrA8ks\",\"yWWYZzcX9\",\"XBZQITo1N\",\"F3nSFIYun\",\"pida4gsxE\",\"UI22IGnJ9\",\"EF2PXbXpi\",\"XB5MbcQF9\",\"DfafjBhF2\",\"hMUE6MeZz\",\"cWO5OlDlW\",\"KqzVIKlWA\",\"oCO9pxmZM\",\"R_Vg6VoG4\",\"hjX1Z56uI\",\"vzdpIn48w\",\"RrY13FA_3\",\"NW1TpG3yq\",\"vBSYzgc5u\",\"hOn0GJ2ss\",\"SUYYqG14O\",\"xk0ZQy5L5\",\"pEzCdaew2\",\"PhPSjV6ao\"],optionTitles:[\"Slack\",\"Zapier\",\"Nation\",\"Confluence\",\"Mailchimp\",\"Discord\",\"Dropbox\",\"Figma\",\"Jira\",\"Drive\",\"Intercom\",\"Whatsapp\",\"Sony\",\"Samsung\",\"LG\",\"Sharp\",\"NEC\",\"Vestel\",\"BrightSign\",\"Philips\",\"Prodvx\",\"Panasonic\",\"BenQ\",\"Raspberry\",\"Elo\",\"Giada\",\"Nexmo\",\"Chrome\",\"Ubuntu\",\"Fedora\",\"Windows\",\"Android\",\"Adobe\",\"Coates\",\"CRI\",\"Sita\",\"Cineplex\",\"MoodMedia\",\"PatientPoint\",\"Heineking\",\"Pixee\"],title:\"Icon\",type:ControlType.Enum},I9_qemBsE:{defaultValue:\"Slack\",displayTextArea:false,title:\"Title\",type:ControlType.String},S8SQjo20i:{defaultValue:\"FramerBite gives you the truly  blocks on needed to create a truly website.\",displayTextArea:false,title:\"Text\",type:ControlType.String},V8hIV48Tv:{defaultValue:\"Download\",title:\"CTA Download link\",type:ControlType.String},i8Ak8p3Yw:DownloadControls?.[\"srcType\"]&&{...DownloadControls[\"srcType\"],defaultValue:\"Upload\",description:undefined,hidden:undefined,title:\"Download link\"},m5Q1vWvmc:{defaultValue:\"This version enter into force and becomes effective as of 1st June 2023.\",displayTextArea:false,title:\"Valid from\",type:ControlType.String},dWfO39qsi:DownloadControls?.[\"srcFile\"]&&{...DownloadControls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"File\"},NGA2wXa0C:{defaultValue:\"\",placeholder:\"../example.pdf\",title:\"Link\",type:ControlType.String},v_8ewVQOq:{defaultValue:true,title:\"HideButton\",type:ControlType.Boolean},ItdYSljzp:{__defaultAssetReference:\"data:framer/asset-reference,W1zL6ZbNpRz6F7RB6L8463pZe0.png?originalFilename=pixee+frame.png&preferredSize=auto\",title:\"Logo image\",type:ControlType.ResponsiveImage},tMoNl7clG:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramerFwt845cAu,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...DownloadFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFwt845cAu\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"329\",\"framerIntrinsicHeight\":\"235\",\"framerVariables\":\"{\\\"aDrtw2l7J\\\":\\\"icon\\\",\\\"I9_qemBsE\\\":\\\"title\\\",\\\"S8SQjo20i\\\":\\\"text\\\",\\\"V8hIV48Tv\\\":\\\"cTADownloadLink\\\",\\\"i8Ak8p3Yw\\\":\\\"downloadLink\\\",\\\"m5Q1vWvmc\\\":\\\"validFrom\\\",\\\"dWfO39qsi\\\":\\\"file\\\",\\\"NGA2wXa0C\\\":\\\"link\\\",\\\"v_8ewVQOq\\\":\\\"hideButton\\\",\\\"ItdYSljzp\\\":\\\"logoImage\\\",\\\"tMoNl7clG\\\":\\\"link2\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IuY_C_bwP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eqFh1fMJW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z293Y9i8G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Fwt845cAu.map"],
  "mappings": "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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "DownloadFonts", "getFonts", "Download", "DownloadControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "equals", "a", "b", "transition2", "animation", "animation1", "toResponsiveImage", "value", "isSet", "negate", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "cTADownloadLink", "downloadLink", "file", "height", "hideButton", "icon", "id", "link", "link2", "logoImage", "text", "title", "validFrom", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "aDrtw2l7J", "I9_qemBsE", "S8SQjo20i", "V8hIV48Tv", "i8Ak8p3Yw", "m5Q1vWvmc", "dWfO39qsi", "NGA2wXa0C", "v_8ewVQOq", "ItdYSljzp", "tMoNl7clG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "visible", "visible1", "visible2", "isDisplayed1", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "isDisplayed2", "visible13", "visible14", "visible15", "visible16", "visible17", "visible18", "visible19", "visible20", "visible21", "visible22", "visible23", "visible24", "visible25", "visible26", "visible27", "visible28", "visible29", "visible30", "visible31", "visible32", "visible33", "visible34", "visible35", "visible36", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "visible37", "visible38", "isDisplayed7", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "SVG", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "FramerFwt845cAu", "withCSS", "Fwt845cAu_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
