{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/FZjYlw33eNo8pxLbSFLX/NS2M1g7qVI7y5CFDNb6m/SuperfieldsShared.js", "ssg:https://framerusercontent.com/modules/wzF1aUkHoslINE1PWbP0/qhB83x3iUbFnEMsNrwn1/Shared.js", "ssg:https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/e5Fa41jFxd3ezoZBjy3n/SocialShare.js", "ssg:https://framerusercontent.com/modules/4MFHIqYmnr1SlQ6gx9Si/Vw5m9ibGzwQVhUac27IN/SocialShare.js", "ssg:https://framerusercontent.com/modules/jTDs6JqXziTSQo9tcPD9/HaNvHvhQCnjKOvo5krAT/AAQNIi6sM.js", "ssg:https://framerusercontent.com/modules/B5N5EznnbG4COdF8pSXz/RRiJxl56QUvIOLRYl4IO/l7fHyLKXe.js", "ssg:https://framerusercontent.com/modules/qthNV7PJdIQypICnspz3/IB6MCGxH5jOSo3PqCMst/RUC7eV4vc.js", "ssg:https://framerusercontent.com/modules/Opo0QIV7rsgNipRPkoAW/guX9WyT4wd7DVHPN1D9Q/Oo7Hn2NJD.js"],
  "sourcesContent": ["// @ts-ignore\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType,useRouter,PathVariablesContext}from\"framer\";import{motion}from\"framer-motion\";import{cloneElement,useContext,useId}from\"react\";export const DEFAULT_SORTING_ID=\"[{(DEFAULT_SORTING)}]\";export const FAVOURITES_FILTER_ID=\"[{(FAVOURITES)}]\";export const DELIMITER=\"_&%#|_\"// Used for multi-select items and multiple options field names\n;export var FieldType;(function(FieldType){FieldType[\"String\"]=\"string\";FieldType[\"Number\"]=\"number\";FieldType[\"Boolean\"]=\"boolean\";FieldType[\"Enum\"]=\"enum\";FieldType[\"Date\"]=\"date\";})(FieldType||(FieldType={}));export var FilterFieldType;(function(FilterFieldType){FilterFieldType[\"Option\"]=\"option\";FilterFieldType[\"Toggle\"]=\"toggle\";FilterFieldType[\"Text\"]=\"text\";FilterFieldType[\"Reference\"]=\"reference\";FilterFieldType[\"MultiReference\"]=\"multiReference\";FilterFieldType[\"MultipleOptions\"]=\"multipleOptions\";})(FilterFieldType||(FilterFieldType={}));export var FilterTextCondition;(function(FilterTextCondition){FilterTextCondition[\"Equals\"]=\"equals\";FilterTextCondition[\"Contains\"]=\"contains\";})(FilterTextCondition||(FilterTextCondition={}));export function useSlug(){const{currentPathVariables}=useRouter();const pathVariables=useContext(PathVariablesContext);let slug=null;let slugFieldId=null;if(pathVariables){slugFieldId=Object.keys(pathVariables)[0];slug=pathVariables[slugFieldId];}if(currentPathVariables&&!slug&&!slugFieldId){slugFieldId=Object.keys(currentPathVariables)[0];slug=currentPathVariables[slugFieldId];}return{slug,slugFieldId};}export const calculateTotalPages=(totalItems,itemsPerPage)=>{if(itemsPerPage<=0){return 0;}return Math.ceil(totalItems/itemsPerPage);};export const useInstanceId=()=>{const id=useId();const cleanId=id.replace(/:/g,\"\");const instanceId=`superfields-${cleanId}`;return instanceId;};export const superfieldsId=({hidden=undefined}={})=>({superfieldsId:{type:ControlType.Number,defaultValue:0,min:0,step:1,displayStepper:true,title:\"CMS ID\",description:\"Match with ID on Superfields component\",hidden}});export const buttonPropertyControls=({text=\"\"})=>({appearance:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true},customLayer:{type:ControlType.ComponentInstance,title:\"Layer\",description:\"Connect a custom layer from outside the breakpoint\",hidden:props=>props.appearance!==\"custom\"},text:{type:ControlType.String,defaultValue:text,hidden:props=>props.appearance!==\"default\"},fill:fillProp({color:\"#000\",gradientColorA:\"#8C8C8C\",gradientColorB:\"#000\",hidden:props=>props.appearance!==\"default\"}),fontColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.appearance!==\"default\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.4},hidden:props=>props.appearance!==\"default\"},padding:{type:ControlType.FusedNumber,defaultValue:12,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,hidden:props=>props.appearance!==\"default\"},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,hidden:props=>props.appearance!==\"default\"},border:borderPropertyControl({hidden:props=>props.appearance!==\"default\"}),shadows:{type:ControlType.BoxShadow,hidden:props=>props.appearance!==\"default\"},bgBlur:{type:ControlType.Number,min:0,max:100,step:1,displayStepper:true,title:\"BG Blur\",hidden:props=>props.appearance!==\"default\"}});export function Button({props,onClick,onMouseEnter=null}){if(props.appearance==\"custom\"){let layer=props.customLayer?.[0];const width=props.style?.width;const height=props.style?.height;if(layer&&props.style&&(width||height)){layer=/*#__PURE__*/cloneElement(layer,{style:{...layer.props.style,...width&&{width:width},...height&&{height:height}}});}return /*#__PURE__*/_jsx(\"div\",{\"data-superfields\":true,style:{display:\"contents\"},onClick:onClick,children:layer});}return /*#__PURE__*/_jsxs(\"div\",{\"data-superfields\":true,onClick:onClick,style:{position:\"relative\",display:\"flex\",justifyContent:props.font?.textAlign||\"center\",alignItems:\"center\",...createBackground(props.fill),color:props.fontColor,padding:props.paddingIsMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.padding}px`,borderRadius:props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`,userSelect:\"none\",cursor:\"pointer\",flex:props.sizing==\"fill\"?\"1 0 0\":undefined,textWrap:props.style?.width==\"100%\"?undefined:\"nowrap\",boxShadow:props.shadows,backdropFilter:props.bgBlur?`blur(${props.bgBlur}px)`:undefined,...props.font,...props.style},children:[props.text,/*#__PURE__*/_jsx(Border,{...props.border})]});}Button.displayName=\"Superfields/Button\";export const borderPropertyControl=(props={})=>({type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}},...props});export function Border({width,widthIsMixed,widthTop,widthRight,widthBottom,widthLeft,style,color,transition,animate,radius=\"inherit\"}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor:color,...animate},style:{position:\"absolute\",inset:0,borderWidth:widthIsMixed?`${widthTop}px ${widthRight}px ${widthBottom}px ${widthLeft}px`:`${width}px`,borderStyle:style,borderRadius:radius,pointerEvents:\"none\"},initial:false,transition:transition});}Border.displayName=\"Superfields/Border\";export function Message({title,subtitle}){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",gap:16,backgroundColor:\"rgba(136, 85, 255, 0.1)\",borderRadius:6,border:\"1px dashed rgb(136, 85, 255)\",color:\"rgb(136, 85, 255)\",fontSize:16,padding:20,minHeight:200,textWrap:\"balance\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,textAlign:\"center\"},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{margin:0,opacity:.7,lineHeight:1.5,textAlign:\"center\"},children:subtitle})]});}Message.displayName=\"Superfields/Message\";export const EmptyState=Message;export function createBackground(fill,on=null){if(fill){let{color,colorA,colorB}=fill;if(typeof on==\"boolean\"){if(on){color=fill.colorOn;colorA=fill.colorAOn;colorB=fill.colorBOn;}else{color=fill.colorOff;colorA=fill.colorAOff;colorB=fill.colorBOff;}}if(fill.type==\"color\"){return{backgroundColor:color,backgroundImage:\"none\"};}else{return{backgroundColor:\"none\",backgroundImage:`linear-gradient(${fill.gradientAngle}deg, ${colorB}, ${colorA})`};}}return{};}export function fillProp({color=\"#FFF\",gradientColorA=\"#FFF\",gradientColorB=\"#BDBDBD\",noDefault=false,...props}){return{type:ControlType.Object,optional:true,defaultValue:noDefault?undefined:{type:\"color\",color,colorA:gradientColorA,colorB:gradientColorB,gradientAngle:0},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"gradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:color,hidden:props=>props.type!=\"color\"},colorA:{type:ControlType.Color,defaultValue:gradientColorA,title:\"Colors\",hidden:props=>props.type!=\"gradient\"},colorB:{type:ControlType.Color,defaultValue:gradientColorB,title:\" \",hidden:props=>props.type!=\"gradient\"},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"gradient\"}},...props};}export function fillPropOnOff({colorOn=\"#FFF\",colorAOn=\"#FFF\",colorBOn=\"#000\",colorOff=\"#FFF\",colorAOff=\"#FFF\",colorBOff=\"#000\",noDefault=false,...props}){return{type:ControlType.Object,optional:true,defaultValue:noDefault?undefined:{type:\"color\",colorOn,colorAOn,colorBOn,colorOff,colorAOff,colorBOff,gradientAngle:0},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"gradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},colorOn:{type:ControlType.Color,defaultValue:colorOn,hidden:props=>props.type!=\"color\"},colorAOn:{type:ControlType.Color,defaultValue:colorAOn,title:\"Colors On\",hidden:props=>props.type!=\"gradient\"},colorBOn:{type:ControlType.Color,defaultValue:colorBOn,title:\" \",hidden:props=>props.type!=\"gradient\"},colorOff:{type:ControlType.Color,defaultValue:colorOff,hidden:props=>props.type!=\"color\"},colorAOff:{type:ControlType.Color,defaultValue:colorAOff,title:\"Colors Off\",hidden:props=>props.type!=\"gradient\"},colorBOff:{type:ControlType.Color,defaultValue:colorBOff,title:\" \",hidden:props=>props.type!=\"gradient\"},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"gradient\"}},...props};}export function parsePadding(padding){if(typeof padding!==\"string\"){return[0,0,0,0];}const values=padding.split(\" \");const parsedValues=values.map(value=>parseInt(value.replace(\"px\",\"\"),10));switch(parsedValues.length){case 1:const p=parsedValues[0];return[p,p,p,p];case 4:return parsedValues;}return[0,0,0,0];}export function sortingControls({defaultSorting=false,hidden=null}={}){return{sortBy:{type:ControlType.Enum,defaultValue:\"field\",options:[\"field\",\"favourites\",...defaultSorting?[\"defaultSorting\"]:[]],optionTitles:[\"CMS Field\",\"Favourites\",...defaultSorting?[\"Default Sorting\"]:[]],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",hidden},fieldName:{type:ControlType.String,defaultValue:\"\",placeholder:\"CMS Field Name\",hidden:props=>props.sortBy!==\"field\"||hidden?.(props)},fieldType:{type:ControlType.Enum,defaultValue:\"string\",options:[\"string\",\"number\",\"date\",\"boolean\",\"enum\",\"reference\"],optionTitles:[\"Text\",\"Number\",\"Date\",\"Toggle\",\"Option\",\"Reference\"],hidden:props=>props.sortBy!==\"field\"||hidden?.(props)},referenceFieldName:{type:ControlType.String,defaultValue:\"Title\",placeholder:\"Reference Field Name\",hidden:props=>props.sortBy!==\"field\"||props.fieldType!==\"reference\"||hidden?.(props)},referenceFieldType:{type:ControlType.Enum,defaultValue:\"string\",options:[\"string\",\"number\",\"date\",\"boolean\",\"enum\"],optionTitles:[\"Text\",\"Number\",\"Date\",\"Toggle\",\"Option\"],hidden:props=>props.sortBy!==\"field\"||props.fieldType!==\"reference\"||hidden?.(props)},stringSort:{type:ControlType.Enum,defaultValue:\"ascending\",options:[\"ascending\",\"descending\"],optionTitles:[\"A \u2192 Z\",\"Z \u2192 A\"],displaySegmentedControl:true,title:\"Sort\",hidden:props=>sortFieldType(props)!==\"string\"||hidden?.(props)},numberSort:{type:ControlType.Enum,defaultValue:\"ascending\",options:[\"ascending\",\"descending\"],optionTitles:[\"Ascending \u2191\",\"Descending \u2193\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",title:\"Sort\",hidden:props=>sortFieldType(props)!==\"number\"||hidden?.(props)},dateSort:{type:ControlType.Enum,defaultValue:\"ascending\",options:[\"ascending\",\"descending\"],optionTitles:[\"Ascending \u2191\",\"Descending \u2193\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",title:\"Sort\",hidden:props=>sortFieldType(props)!==\"date\"||hidden?.(props)},booleanSort:{type:ControlType.Enum,defaultValue:\"ascending\",options:[\"yesNo\",\"noYes\"],optionTitles:[\"Yes, No\",\"No, Yes\"],displaySegmentedControl:true,title:\"Sort\",hidden:props=>sortFieldType(props)!==\"boolean\"||hidden?.(props)},enumSort:{type:ControlType.Enum,defaultValue:\"ascending\",options:[\"optionOrder\",\"reverseOptionOrder\",\"ascending\",\"descending\"],optionTitles:[\"Option Order\",\"Reverse Order\",\"A \u2192 Z\",\"Z \u2192 A\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",title:\"Sort\",hidden:props=>sortFieldType(props)!==\"enum\"||hidden?.(props)},favouritesSort:{type:ControlType.Enum,defaultValue:\"favouritesFirst\",options:[\"favouritesFirst\",\"favouritesLast\"],optionTitles:[\"Favourites First\",\"Favourites Last\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",title:\"Sort\",hidden:props=>props.sortBy!==\"favourites\"||hidden?.(props)}};}const sortFieldType=props=>{return props.sortBy===\"field\"?props.fieldType===\"reference\"?props.referenceFieldType:props.fieldType:false;};\nexport const __FramerMetadata__ = {\"exports\":{\"Button\":{\"type\":\"reactComponent\",\"name\":\"Button\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"Message\":{\"type\":\"reactComponent\",\"name\":\"Message\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"FAVOURITES_FILTER_ID\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DELIMITER\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FilterFieldType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useInstanceId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_SORTING_ID\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderPropertyControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"FilterTextCondition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sortingControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"buttonPropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useSlug\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillPropOnOff\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"calculateTotalPages\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FieldType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"superfieldsId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"EmptyState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SuperfieldsShared.map", "import{addPropertyControls,ControlType}from\"framer\";import{fillProp}from\"https://framerusercontent.com/modules/FZjYlw33eNo8pxLbSFLX/NS2M1g7qVI7y5CFDNb6m/SuperfieldsShared.js\";const MODE_CONTROL={mode:{type:ControlType.Enum,defaultValue:\"basic\",options:[\"basic\",\"advanced\"],optionTitles:[\"Basic\",\"Advanced\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"}};const SUPPORT_CONTROL={needHelp:{type:ControlType.Object,title:\"Need help?\",buttonTitle:\"Get Support\",icon:\"interaction\",controls:{info:{type:ControlType.Enum,defaultValue:\"info\",options:[\"info\"],optionTitles:[\"Support \uD83D\uDEDF\"],displaySegmentedControl:true,title:\"Get Support\",description:\"We're here to help! The best place to get support is to visit our documentation to find your answers. We're also available on live chat.\\n\\n[Visit Superfields docs](https://insertframe.io/docs/superfields)\"}}}};export function addPropertyControlsV2(component,controls){let showModeControl=false;for(const id of Object.keys(controls)){const control=controls[id];if(control.advanced){showModeControl=true;if(control.hidden){control.hidden=props=>props.mode!==\"advanced\"||control.hidden(props);}else{control.hidden=props=>props.mode!==\"advanced\";}}}addPropertyControls(component,{...showModeControl?MODE_CONTROL:{},...controls,...SUPPORT_CONTROL});}export function buttonPropertyControlsV2({text=\"\",stylingDescription=\"Update the button styling.\",showAppearance=true,stylingPropsStart={},stylingPropsEnd={}}){const hiddenAppearance=showAppearance?props=>props.appearance!==\"default\":undefined;const hiddenAppearanceOutside=showAppearance?props=>props.styling.appearance===\"default\":undefined;return{styling:{type:ControlType.Object,title:\"Styling \uD83C\uDFA8\",buttonTitle:\"Options\",description:stylingDescription,controls:{...showAppearance?{appearance:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true}}:{},text:{type:ControlType.String,defaultValue:text,hidden:hiddenAppearance},...stylingPropsStart,fill:fillProp({color:\"#000\",gradientColorA:\"#8C8C8C\",gradientColorB:\"#000\",hidden:hiddenAppearance}),font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.4},hidden:hiddenAppearance},fontColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:hiddenAppearance},padding:{type:ControlType.Padding,defaultValue:\"10px 16px 10px 16px\",hidden:hiddenAppearance},radius:{type:ControlType.BorderRadius,defaultValue:\"8px\",hidden:hiddenAppearance},border:{type:ControlType.Border,optional:true,hidden:hiddenAppearance},shadows:{type:ControlType.BoxShadow,hidden:hiddenAppearance},bgBlur:{type:ControlType.Number,min:0,max:100,step:1,displayStepper:true,title:\"BG Blur\",hidden:hiddenAppearance},...stylingPropsEnd}},...showAppearance?{customLayer:{type:ControlType.ComponentInstance,title:\"Layer\",description:\"Connect a custom layer from outside the breakpoint\",hidden:hiddenAppearanceOutside}}:{}};}export function parseButtonPropertyControlsV2(props){const{styling,customLayer}=props;const{radius,padding,text,...otherStyling}=styling;return{...otherStyling,...parsePadding(padding),...parseRadius(radius),text,customLayer};}export const idControl={type:ControlType.Number,defaultValue:0,step:1,min:0,displayStepper:true,title:\"ID\",description:\"If using multiple collections on the same page, set a specific ID to match.\"};export function parsePadding(padding,property=\"padding\"){if(padding&&typeof padding===\"string\"){// Split the input string by spaces and convert each to an integer\nconst values=padding.trim().split(/\\s+/).map(val=>parseInt(val,10));// If only one value is provided, replicate it four times\nif(values.length===1){return{[property]:values[0],[`${property}IsMixed`]:false};}else if(values.length===4){return{[property]:null,[`${property}IsMixed`]:true,[`${property}Top`]:values[0],[`${property}Right`]:values[1],[`${property}Bottom`]:values[2],[`${property}Left`]:values[3]};}}return{[property]:0,[`${property}IsMixed`]:false};}export function parseRadius(radius,property=\"radius\"){if(radius&&typeof radius===\"string\"){// Split the input string by spaces and convert each to an integer\nconst values=radius.trim().split(/\\s+/).map(val=>parseInt(val,10));// If only one value is provided, replicate it four times\nif(values.length===1){return{[property]:values[0],[`${property}IsMixed`]:false};}else if(values.length===4){return{[property]:null,[`${property}IsMixed`]:true,[`${property}TopLeft`]:values[0],[`${property}TopRight`]:values[1],[`${property}BottomRight`]:values[2],[`${property}BottomLeft`]:values[3]};}}return{[property]:0,[`${property}IsMixed`]:false};}\nexport const __FramerMetadata__ = {\"exports\":{\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"addPropertyControlsV2\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"buttonPropertyControlsV2\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parseRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"idControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parseButtonPropertyControlsV2\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType,Color}from\"framer\";const BRAND_COLORS={facebook:\"#0866FF\",twitter:\"#000\",linkedIn:\"#0A66C2\",reddit:\"#FF4500\",pinterest:\"#BD081C\",whatsApp:\"#25D366\",email:\"#000\",copyUrl:\"#000\"};export const PLATFORM_NAMES=[\"Facebook\",\"Twitter / X\",\"LinkedIn\",\"Reddit\",\"Pinterest\",\"WhatsApp\",\"Email\",\"Copy URL\"];/**\n * @framerDisableUnlink\n */export default function SocialShare(props){const{type,colors,iconSize,border}=props;const[shareUrl,setShareUrl]=useState(props.shareLink==\"url\"?props.shareUrl:\"\");const encodedUrl=encodeURIComponent(shareUrl);const borderRadius=props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`;useEffect(()=>{if(props.shareLink==\"currentPage\"){setShareUrl(window.location.href);}},[]);let linkUrl=\"\";switch(type){case\"facebook\":linkUrl=`https://www.facebook.com/sharer/sharer.php?u=${encodedUrl}`;break;case\"twitter\":linkUrl=`https://twitter.com/share?url=${encodedUrl}`;break;case\"linkedIn\":linkUrl=`https://www.linkedin.com/sharing/share-offsite/?url=${encodedUrl}`;break;case\"reddit\":linkUrl=`https://www.reddit.com/submit?url=${encodedUrl}`;break;case\"pinterest\":linkUrl=`https://pinterest.com/pin/create/link/?url=${encodedUrl}`;break;case\"whatsApp\":linkUrl=`https://wa.me/?text=${encodedUrl}`;break;case\"email\":linkUrl=`mailto:?body=${encodedUrl}`;break;}const copyToClipboard=()=>{navigator.clipboard.writeText(shareUrl).then(()=>{alert(\"URL copied to clipboard!\");}).catch(err=>{alert(\"Failed to copy URL\");});};return /*#__PURE__*/_jsxs(\"a\",{\"data-superfields\":true,href:linkUrl.length?linkUrl:undefined,target:props.newTab?\"_blank\":\"_self\",rel:props.newTab?\"noopener noreferrer\":undefined,\"aria-label\":PLATFORM_NAMES[type],onClick:type==\"copyUrl\"&&copyToClipboard,style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:colors.fillColorType==\"custom\"?colors.fillColor:Color.toString(Color.alpha(Color(BRAND_COLORS[type]),colors.fillOpacity)),borderRadius:borderRadius,padding:props.paddingIsMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.padding}px`,cursor:\"pointer\",...props.style},children:[/*#__PURE__*/_jsx(SocialIcon,{type:type,size:iconSize,color:colors.iconColorType==\"custom\"?colors.iconColor:BRAND_COLORS[type],customIcon:props.customIcon}),border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.colorType==\"custom\"?border.color:BRAND_COLORS[type],borderRadius:borderRadius,pointerEvents:\"none\"}})]});}SocialShare.displayName=\"Social Share\";addPropertyControls(SocialShare,{shareLink:{type:ControlType.Enum,defaultValue:\"currentPage\",options:[\"currentPage\",\"url\"],optionTitles:[\"Current Page\",\"Custom URL\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},shareUrl:{type:ControlType.String,defaultValue:\"\",placeholder:\"https://example.com\",title:\"URL\",preventLocalization:true,hidden:props=>props.shareLink!=\"url\"},type:{type:ControlType.Enum,defaultValue:\"facebook\",options:[\"facebook\",\"twitter\",\"linkedIn\",\"reddit\",\"pinterest\",\"whatsApp\",\"email\",\"copyUrl\"],optionTitles:PLATFORM_NAMES,title:\"Platform\"},newTab:{type:ControlType.Boolean,defaultValue:true},colors:{type:ControlType.Object,buttonTitle:\"Icon & Fill\",controls:{iconColorType:{type:ControlType.Enum,defaultValue:\"custom\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Icon Color\"},iconColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.iconColorType!=\"custom\",title:\" \"},fillColorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Fill\"},fillColor:{type:ControlType.Color,defaultValue:\"#000\",optional:true,hidden:props=>props.fillColorType!=\"custom\",title:\" \"},fillOpacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01,hidden:props=>props.fillColorType!=\"brand\"}}},iconSize:{type:ControlType.Number,defaultValue:24,min:1,step:1},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},padding:{type:ControlType.FusedNumber,defaultValue:12,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},border:{type:ControlType.Object,optional:true,controls:{colorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Color\"},color:{type:ControlType.Color,defaultValue:\"#FFF\",title:\" \",hidden:props=>props.colorType!=\"custom\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},customIcon:{type:ControlType.Object,optional:true,buttonTitle:\"Icon\",controls:{type:{type:ControlType.Enum,defaultValue:\"svg\",options:[\"svg\",\"image\"],optionTitles:[\"SVG\",\"Image\"],displaySegmentedControl:true},svg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"SVG\",preventLocalization:true,hidden:props=>props.type!=\"svg\"},image:{type:ControlType.ResponsiveImage,hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"cover\",\"contain\",\"fill\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}}}});function SocialIcon(props){const{size,color,customIcon}=props;const contents=[];let fill=true;let stroke=false;if(customIcon){if(customIcon.type==\"svg\"){return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"superfields-social-share-icon\",style:{width:size,height:size,opacity:customIcon.opacity,color:color,pointerEvents:\"none\"},dangerouslySetInnerHTML:customIcon.type==\"svg\"?{__html:customIcon.svg.replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}:undefined}),customIcon?.type==\"svg\"&&/*#__PURE__*/_jsx(\"style\",{children:`.superfields-social-share-icon svg { display: block; }`})]});}else if(customIcon.type==\"image\"){return /*#__PURE__*/_jsx(\"img\",{src:customIcon.image?.src,alt:customIcon.image?.alt,style:{display:\"block\",width:size,height:size,opacity:customIcon.opacity,color:color,objectFit:customIcon.sizing,objectPosition:\"center\",pointerEvents:\"none\"}});}}switch(props.type){case\"facebook\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z\"}));break;case\"twitter\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z\"}));break;case\"linkedIn\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z\"}));break;case\"reddit\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm5.01 4.744c.688 0 1.25.561 1.25 1.249a1.25 1.25 0 0 1-2.498.056l-2.597-.547-.8 3.747c1.824.07 3.48.632 4.674 1.488.308-.309.73-.491 1.207-.491.968 0 1.754.786 1.754 1.754 0 .716-.435 1.333-1.01 1.614a3.111 3.111 0 0 1 .042.52c0 2.694-3.13 4.87-7.004 4.87-3.874 0-7.004-2.176-7.004-4.87 0-.183.015-.366.043-.534A1.748 1.748 0 0 1 4.028 12c0-.968.786-1.754 1.754-1.754.463 0 .898.196 1.207.49 1.207-.883 2.878-1.43 4.744-1.487l.885-4.182a.342.342 0 0 1 .14-.197.35.35 0 0 1 .238-.042l2.906.617a1.214 1.214 0 0 1 1.108-.701zM9.25 12C8.561 12 8 12.562 8 13.25c0 .687.561 1.248 1.25 1.248.687 0 1.248-.561 1.248-1.249 0-.688-.561-1.249-1.249-1.249zm5.5 0c-.687 0-1.248.561-1.248 1.25 0 .687.561 1.248 1.249 1.248.688 0 1.249-.561 1.249-1.249 0-.687-.562-1.249-1.25-1.249zm-5.466 3.99a.327.327 0 0 0-.231.094.33.33 0 0 0 0 .463c.842.842 2.484.913 2.961.913.477 0 2.105-.056 2.961-.913a.361.361 0 0 0 .029-.463.33.33 0 0 0-.464 0c-.547.533-1.684.73-2.512.73-.828 0-1.979-.196-2.512-.73a.326.326 0 0 0-.232-.095z\"}));break;case\"pinterest\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z\"}));break;case\"whatsApp\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z\"}));break;case\"email\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M3 7l9 6l9 -6\"}));fill=false;stroke=true;break;case\"copyUrl\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M7 7m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M4.012 16.737a2.005 2.005 0 0 1 -1.012 -1.737v-10c0 -1.1 .9 -2 2 -2h10c.75 0 1.158 .385 1.5 1\"}));fill=false;stroke=true;break;}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",color:color,\"stroke-width\":stroke?\"2\":undefined,stroke:stroke?\"currentColor\":undefined,fill:fill?\"currentColor\":\"none\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{display:\"block\"},children:contents});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SocialShare\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"PLATFORM_NAMES\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SocialShare.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{addPropertyControlsV2,parsePadding,parseRadius}from\"https://framerusercontent.com/modules/wzF1aUkHoslINE1PWbP0/qhB83x3iUbFnEMsNrwn1/Shared.js\";import OriginalSocialShare,{PLATFORM_NAMES}from\"https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/e5Fa41jFxd3ezoZBjy3n/SocialShare.js\";/**\n * @framerDisableUnlink\n */export default function SocialShare(props){return /*#__PURE__*/_jsx(OriginalSocialShare,{type:props.type,shareLink:props.setUp.shareLink,shareUrl:props.setUp.shareUrl,newTab:props.setUp.newTab,colors:{iconColorType:props.styling.icon.iconColorType,iconColor:props.styling.icon.iconColor,fillColorType:props.styling.fillColorType,fillColor:props.styling.fillColor,fillOpacity:props.styling.fillOpacity},iconSize:props.styling.icon.iconSize,radius:props.styling.radius,...parsePadding(props.styling.padding),...parseRadius(props.styling.radius),border:props.styling.border,style:props.style});}SocialShare.displayName=\"Social Share\";addPropertyControlsV2(SocialShare,{type:{type:ControlType.Enum,defaultValue:\"facebook\",options:[\"facebook\",\"twitter\",\"linkedIn\",\"reddit\",\"pinterest\",\"whatsApp\",\"email\",\"copyUrl\"],optionTitles:PLATFORM_NAMES,title:\"Platform\",description:\"Select the platform you wish to use for social sharing.\"},setUp:{type:ControlType.Object,title:\"Set Up\",description:\"Configure your social share.\",controls:{shareLink:{type:ControlType.Enum,defaultValue:\"currentPage\",options:[\"currentPage\",\"url\"],optionTitles:[\"Current Page\",\"Custom URL\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",description:\"Select whether the URL is generated from the current page or a custom URL.\"},shareUrl:{type:ControlType.String,defaultValue:\"\",placeholder:\"https://example.com\",title:\"URL\",preventLocalization:true,hidden:props=>props.shareLink!=\"url\"},newTab:{type:ControlType.Boolean,defaultValue:true}}},styling:{title:\"Styling \uD83C\uDFA8\",type:ControlType.Object,description:\"Update the button styling.\",controls:{icon:{title:\"Icon\",type:ControlType.Object,controls:{iconColorType:{type:ControlType.Enum,defaultValue:\"custom\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Color\"},iconColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.iconColorType!=\"custom\",title:\" \"},iconSize:{type:ControlType.Number,defaultValue:24,min:1,step:1,displayStepper:true,title:\"Size\"},customIcon:{type:ControlType.Object,optional:true,buttonTitle:\"Icon\",controls:{type:{type:ControlType.Enum,defaultValue:\"svg\",options:[\"svg\",\"image\"],optionTitles:[\"SVG\",\"Image\"],displaySegmentedControl:true},svg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"SVG\",preventLocalization:true,hidden:props=>props.type!=\"svg\"},image:{type:ControlType.ResponsiveImage,hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"cover\",\"contain\",\"fill\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}}}}},fillColorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Background\"},fillColor:{type:ControlType.Color,defaultValue:\"#000\",optional:true,hidden:props=>props.fillColorType!=\"custom\",title:\" \"},fillOpacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01,displayStepper:true,title:\"BG Opacity\",hidden:props=>props.fillColorType!=\"brand\"},border:{type:ControlType.Object,optional:true,controls:{colorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Color\"},color:{type:ControlType.Color,defaultValue:\"#FFF\",title:\" \",hidden:props=>props.colorType!=\"custom\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},radius:{type:ControlType.BorderRadius,defaultValue:\"8px\"},padding:{type:ControlType.Padding,defaultValue:\"12px\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SocialShare\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SocialShare from\"https://framerusercontent.com/modules/4MFHIqYmnr1SlQ6gx9Si/Vw5m9ibGzwQVhUac27IN/SocialShare.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/QIPCbWv742vdGmKiaDjW/tbraGnMqq2SS61Prn6J0/nQqTY9L3R.js\";const SocialShareFonts=getFonts(SocialShare);const serializationHash=\"framer-vJdpP\";const variantClassNames={SxTBx3oLT:\"framer-v-1d668s7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"SxTBx3oLT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1d668s7\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"SxTBx3oLT\",ref:refBinding,style:{backgroundColor:\"rgb(19, 18, 21)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-blqzcq\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"Qtwg_R0L6\",style:{rotate:-21},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-v1xtkv\",\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"zaUrNx98j\",style:{background:\"linear-gradient(180deg, rgb(248, 102, 2) 0%, rgb(54, 138, 255) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",filter:\"blur(100px)\",rotate:18,WebkitFilter:\"blur(100px)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17imh93\",\"data-framer-name\":\"Shadow\",layoutDependency:layoutDependency,layoutId:\"ZfHczaOOC\",style:{backgroundColor:\"rgb(214, 222, 232)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",filter:\"blur(100px)\",rotate:18,WebkitFilter:\"blur(100px)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uhnuge\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"x4hzOfiZb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18wpn30\",\"data-styles-preset\":\"nQqTY9L3R\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-68baec3e-e750-446b-b083-9abd13cf6dda, rgb(214, 222, 232)))\"},children:\"Share this post\"})}),className:\"framer-1i06c7x\",\"data-framer-name\":\"Share this post\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YdT1wS7Y7\",style:{\"--extracted-r6o4lv\":\"var(--token-68baec3e-e750-446b-b083-9abd13cf6dda, rgb(214, 222, 232))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hhut1\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"jNNlXQvqu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15nig8s-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mbm3KthVS-container\",nodeId:\"mbm3KthVS\",rendersWithMotion:true,scopeId:\"AAQNIi6sM\",children:/*#__PURE__*/_jsx(SocialShare,{height:\"100%\",id:\"mbm3KthVS\",layoutId:\"mbm3KthVS\",needHelp:{info:\"info\"},setUp:{newTab:true,shareLink:\"currentPage\",shareUrl:\"\"},styling:{fillColorType:\"custom\",fillOpacity:1,icon:{iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\",iconSize:28},padding:\"0px\",radius:\"8px\"},type:\"facebook\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-txt6x9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fh0Lhpg0w-container\",nodeId:\"fh0Lhpg0w\",rendersWithMotion:true,scopeId:\"AAQNIi6sM\",children:/*#__PURE__*/_jsx(SocialShare,{height:\"100%\",id:\"fh0Lhpg0w\",layoutId:\"fh0Lhpg0w\",needHelp:{info:\"info\"},setUp:{newTab:true,shareLink:\"currentPage\",shareUrl:\"\"},styling:{fillColorType:\"custom\",fillOpacity:1,icon:{iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\",iconSize:28},padding:\"0px\",radius:\"8px\"},type:\"linkedIn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z270d2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zalmR6ILG-container\",nodeId:\"zalmR6ILG\",rendersWithMotion:true,scopeId:\"AAQNIi6sM\",children:/*#__PURE__*/_jsx(SocialShare,{height:\"100%\",id:\"zalmR6ILG\",layoutId:\"zalmR6ILG\",needHelp:{info:\"info\"},setUp:{newTab:true,shareLink:\"currentPage\",shareUrl:\"\"},styling:{fillColorType:\"custom\",fillOpacity:1,icon:{iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\",iconSize:28},padding:\"0px\",radius:\"8px\"},type:\"twitter\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r2dxt6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QFBt9OpBK-container\",nodeId:\"QFBt9OpBK\",rendersWithMotion:true,scopeId:\"AAQNIi6sM\",children:/*#__PURE__*/_jsx(SocialShare,{height:\"100%\",id:\"QFBt9OpBK\",layoutId:\"QFBt9OpBK\",needHelp:{info:\"info\"},setUp:{newTab:true,shareLink:\"currentPage\",shareUrl:\"\"},styling:{fillColorType:\"custom\",fillOpacity:1,icon:{iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\",iconSize:28},padding:\"0px\",radius:\"8px\"},type:\"whatsApp\",width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vJdpP.framer-xziu13, .framer-vJdpP .framer-xziu13 { display: block; }\",\".framer-vJdpP.framer-1d668s7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 334px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vJdpP .framer-blqzcq { flex: none; height: 255px; overflow: visible; position: absolute; right: -172px; top: -198px; width: 426px; z-index: 1; }\",\".framer-vJdpP .framer-v1xtkv { flex: none; height: 140px; left: 12px; position: absolute; top: 58px; width: 403px; }\",\".framer-vJdpP .framer-17imh93 { flex: none; height: 79px; left: 115px; mix-blend-mode: lighten; position: absolute; top: 88px; width: 228px; }\",\".framer-vJdpP .framer-uhnuge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-vJdpP .framer-1i06c7x { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vJdpP .framer-hhut1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vJdpP .framer-15nig8s-container, .framer-vJdpP .framer-txt6x9-container, .framer-vJdpP .framer-z270d2-container, .framer-vJdpP .framer-r2dxt6-container { flex: none; height: auto; position: relative; width: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 119\n * @framerIntrinsicWidth 334\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAAQNIi6sM=withCSS(Component,css,\"framer-vJdpP\");export default FramerAAQNIi6sM;FramerAAQNIi6sM.displayName=\"Contact Card\";FramerAAQNIi6sM.defaultProps={height:119,width:334};addFonts(FramerAAQNIi6sM,[{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\"}]},...SocialShareFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAAQNIi6sM\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"119\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"334\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AAQNIi6sM.map", "// Generated by Framer (5351ffe)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Noto Sans-700\",\"GF;Noto Sans-900\",\"GF;Noto Sans-900italic\",\"GF;Noto Sans-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAaBN9Y41P6zHtY.woff2\",weight:\"700\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyBUBN9Y41P6zHtY.woff2\",weight:\"900\"},{family:\"Noto Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QJ4Z6VLYyWtY1rI.woff2\",weight:\"900\"},{family:\"Noto Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0kIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevHtVtX57DGjDU1QNAZ6VLYyWtY1rI.woff2\",weight:\"700\"}]}];export const css=['.framer-HzyED .framer-styles-preset-aquwbm:not(.rich-text-wrapper), .framer-HzyED .framer-styles-preset-aquwbm.rich-text-wrapper p { --framer-font-family: \"Noto Sans\", \"Noto Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans\", sans-serif; --framer-font-family-bold-italic: \"Noto Sans\", sans-serif; --framer-font-family-italic: \"Noto Sans\", \"Noto Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -1px; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #6e717b; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-HzyED\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dc53115)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-hqo60 .framer-styles-preset-1awkkfa:not(.rich-text-wrapper), .framer-hqo60 .framer-styles-preset-1awkkfa.rich-text-wrapper a { --framer-link-current-text-color: var(--token-7b55e653-8501-41e0-99ef-9b9f5e0d8bd1, #f86602); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-7b55e653-8501-41e0-99ef-9b9f5e0d8bd1, #f86602); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-7b55e653-8501-41e0-99ef-9b9f5e0d8bd1, #f86602); --framer-link-text-decoration: underline; }\"];export const className=\"framer-hqo60\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4458791)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import ContactCard from\"#framer/local/canvasComponent/AAQNIi6sM/AAQNIi6sM.js\";import Header from\"#framer/local/canvasComponent/DFCPGLP3U/DFCPGLP3U.js\";import InsightCard from\"#framer/local/canvasComponent/hkDNB39hm/hkDNB39hm.js\";import FooterSection from\"#framer/local/canvasComponent/jGorTrxZe/jGorTrxZe.js\";import TagLine from\"#framer/local/canvasComponent/k_24NJq04/k_24NJq04.js\";import Insight from\"#framer/local/collection/nrTqVMFLW/nrTqVMFLW.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle6 from\"#framer/local/css/b2vuULU0k/b2vuULU0k.js\";import*as sharedStyle3 from\"#framer/local/css/bxvOFU3MR/bxvOFU3MR.js\";import*as sharedStyle5 from\"#framer/local/css/DRTGXkYp8/DRTGXkYp8.js\";import*as sharedStyle from\"#framer/local/css/JB7U7Rehs/JB7U7Rehs.js\";import*as sharedStyle2 from\"#framer/local/css/kX12pBLwQ/kX12pBLwQ.js\";import*as sharedStyle11 from\"#framer/local/css/l7fHyLKXe/l7fHyLKXe.js\";import*as sharedStyle12 from\"#framer/local/css/nQqTY9L3R/nQqTY9L3R.js\";import*as sharedStyle10 from\"#framer/local/css/oK8JUGnou/oK8JUGnou.js\";import*as sharedStyle1 from\"#framer/local/css/QFzlATpls/QFzlATpls.js\";import*as sharedStyle7 from\"#framer/local/css/RUC7eV4vc/RUC7eV4vc.js\";import*as sharedStyle8 from\"#framer/local/css/sGpkEYFLK/sGpkEYFLK.js\";import*as sharedStyle13 from\"#framer/local/css/u1v8nnsaj/u1v8nnsaj.js\";import*as sharedStyle4 from\"#framer/local/css/uqeQLm8QM/uqeQLm8QM.js\";import*as sharedStyle9 from\"#framer/local/css/W4jX4MvcJ/W4jX4MvcJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/Oo7Hn2NJD/Oo7Hn2NJD.js\";const HeaderFonts=getFonts(Header);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const ContactCardFonts=getFonts(ContactCard);const TagLineFonts=getFonts(TagLine);const ContainerWithFX=withFX(Container);const InsightCardFonts=getFonts(InsightCard);const MotionAWithFX=withFX(motion.a);const FooterSectionFonts=getFonts(FooterSection);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={rxcaTzM8t:\"(min-width: 810px) and (max-width: 1199px)\",x_ywSqzb3:\"(min-width: 1200px)\",XVOUjvsmK:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-6YaHw\";const variantClassNames={rxcaTzM8t:\"framer-v-px02td\",x_ywSqzb3:\"framer-v-4vf7ei\",XVOUjvsmK:\"framer-v-uypkqg\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition1={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:80,delay:.2,mass:1,stiffness:400,type:\"spring\"};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"long\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition3={damping:90,delay:.4,mass:.1,stiffness:400,type:\"spring\"};const transition4={damping:80,delay:.3,mass:1,stiffness:400,type:\"spring\"};const transition5={damping:80,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:346,y:0};const transition6={damping:80,delay:.5,mass:1,stiffness:400,type:\"spring\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"qlP1mEKV8\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"x_ywSqzb3\",Phone:\"XVOUjvsmK\",Tablet:\"rxcaTzM8t\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"x_ywSqzb3\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Oo7Hn2NJD\",data:Insight,type:\"Collection\"},select:[{collection:\"Oo7Hn2NJD\",name:\"rg3hITGbg\",type:\"Identifier\"},{collection:\"Oo7Hn2NJD\",name:\"l1oJvybdp\",type:\"Identifier\"},{collection:\"Oo7Hn2NJD\",name:\"Ez1Xe8oQw\",type:\"Identifier\"},{collection:\"Oo7Hn2NJD\",name:\"jvZbE76TS\",type:\"Identifier\"},{collection:\"Oo7Hn2NJD\",name:\"qZf_6_xvu\",type:\"Identifier\"},{collection:\"Oo7Hn2NJD\",name:\"G0iZa2U5g\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"Oo7Hn2NJD\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,rg3hITGbg=getFromCurrentRouteData(\"rg3hITGbg\")??\"\",fum0HeheFronFalls4,Ez1Xe8oQw=getFromCurrentRouteData(\"Ez1Xe8oQw\"),qZf_6_xvu=getFromCurrentRouteData(\"qZf_6_xvu\"),jvZbE76TS=getFromCurrentRouteData(\"jvZbE76TS\")??\"\",l1oJvybdp=getFromCurrentRouteData(\"l1oJvybdp\"),G0iZa2U5g=getFromCurrentRouteData(\"G0iZa2U5g\")??\"\",Fq7mVZugqWs_BcKr90,rg3hITGbgWs_BcKr90,BAY1y3lvLWs_BcKr90,idWs_BcKr90,Fq7mVZugqqlP1mEKV8,rg3hITGbgqlP1mEKV8,l1oJvybdpqlP1mEKV8,Ez1Xe8oQwqlP1mEKV8,idqlP1mEKV8,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"W9agVZrdK\");const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(fum0HeheFronFalls4,activeLocaleCode);const textContent1=toDateString(l1oJvybdp,activeLocaleCode);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"x_ywSqzb3\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-3357ea89-1709-4d04-a0b3-f4d817c0e612, rgb(19, 18, 21)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-4vf7ei\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:111,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-73vwzv-container\",layoutScroll:true,nodeId:\"rKbcQ3fO7\",scopeId:\"Oo7Hn2NJD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rxcaTzM8t:{variant:\"hCnNmD9kP\"},XVOUjvsmK:{variant:\"hCnNmD9kP\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"rKbcQ3fO7\",layoutId:\"rKbcQ3fO7\",style:{width:\"100%\"},variant:\"hljr2yru0\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1k35472\",\"data-framer-name\":\"Hero Section \",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-76e4bg\",\"data-border\":true,\"data-framer-name\":\"Container\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7nx0it\",\"data-framer-name\":\"Section Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ekdb3p\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-111rhwz\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11zxyiu\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-inyckr\",\"data-framer-name\":\"Breadcrumbs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fac67h\",\"data-styles-preset\":\"JB7U7Rehs\",style:{\"--framer-text-color\":\"var(--token-7cdf007d-21a7-47aa-95c9-53612efd972e, rgb(110, 113, 123))\"},children:\"Home \"})}),className:\"framer-1v6kgps\",\"data-framer-name\":\"Home\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s2pfwn\",\"data-framer-name\":\"Vector 121\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"18\" viewBox=\"-1 -1 8 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0L6 16\" stroke=\"#6E717B\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ye9dr2\",\"data-styles-preset\":\"QFzlATpls\",style:{\"--framer-text-color\":\"var(--token-7cdf007d-21a7-47aa-95c9-53612efd972e, rgb(110, 113, 123))\"},children:\"Insight\"})}),className:\"framer-dcxfri\",\"data-framer-name\":\"Terms & conditions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1bpox6k\",\"data-styles-preset\":\"kX12pBLwQ\",style:{\"--framer-text-color\":\"var(--token-68baec3e-e750-446b-b083-9abd13cf6dda, rgb(214, 222, 232))\"},children:\"Terms & conditions\"})}),className:\"framer-bx6yob\",\"data-framer-name\":\"Title \",fonts:[\"Inter\"],text:rg3hITGbg,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w163yj\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1surnil\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fac67h\",\"data-styles-preset\":\"JB7U7Rehs\",style:{\"--framer-text-color\":\"var(--token-68baec3e-e750-446b-b083-9abd13cf6dda, rgb(214, 222, 232))\"},children:\"Content\"})}),className:\"framer-1raqky4\",\"data-framer-name\":\"Last Update: January 13, 2025\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h6npgx\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sepddq\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rxcaTzM8t:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px) - 414px, 1px), 772px)`,...toResponsiveImage(Ez1Xe8oQw)}},XVOUjvsmK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+0+0+0+0+0+150.4+0+0+0+0),sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1170px), 772px)`,...toResponsiveImage(Ez1Xe8oQw)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px) - 398px, 1px), 772px)`,...toResponsiveImage(Ez1Xe8oQw)},className:\"framer-18479l6\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h8ii7c\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ctzagt\",\"data-framer-name\":\"User \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XVOUjvsmK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+0+0+0+0+0+150.4+0+0+0+416+0+0+0),pixelHeight:140,pixelWidth:141,sizes:\"36px\",...toResponsiveImage(qZf_6_xvu),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:140,pixelWidth:141,sizes:\"36px\",...toResponsiveImage(qZf_6_xvu),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-v5tob6\",\"data-framer-name\":\"Icon \"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fac67h\",\"data-styles-preset\":\"JB7U7Rehs\",style:{\"--framer-text-color\":\"var(--token-7cdf007d-21a7-47aa-95c9-53612efd972e, rgb(110, 113, 123))\"},children:\"by Techkooks\"})}),className:\"framer-ormnmf\",\"data-framer-name\":\"by Techkooks\",fonts:[\"Inter\"],text:jvZbE76TS,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wm4sxg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fac67h\",\"data-styles-preset\":\"JB7U7Rehs\",style:{\"--framer-text-color\":\"var(--token-7cdf007d-21a7-47aa-95c9-53612efd972e, rgb(110, 113, 123))\"},children:\"Published: \"})}),className:\"framer-1v8viye\",\"data-framer-name\":\"Published: December 4, 2024\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fac67h\",\"data-styles-preset\":\"JB7U7Rehs\",style:{\"--framer-text-color\":\"var(--token-68baec3e-e750-446b-b083-9abd13cf6dda, rgb(214, 222, 232))\"},children:\"December 4, 2024\"})}),className:\"framer-j4hn6l\",\"data-framer-name\":\"Published: December 4, 2024\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"vcGQjZN39\"]},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:G0iZa2U5g,className:\"framer-1tqheow\",\"data-framer-name\":\"Digital transformation is necessary for all businesses that want to thrive in today\u2019s competitive market. It helps businesses like yours win new customers, improve efficiency and increase profits. However, due to several misconceptions, many business owners hesitate to take the digital plunge. In this blog, we\u2019ll discuss the most common digital transformation misconceptions and share insights to help you make more informed decisions and drive business growth. Differentiating between misconception and truth Here are the top misconceptions that keep businesses from achieving their full potential: \\xa0\\xa0 Misconception #1 Digital transformation is all about technology upgrades. Truth Technology is just one aspect of digital transformation, which goes beyond upgrading your tech stack. It\u2019s about harnessing technology to streamline your business processes, enhance customer experience and stay agile. However, it is essential to note that digital transformation also requires changing your work culture, business processes and general outlook. Misconception #2 Digital transformation is a one-time fix. Truth Digital transformation is not a check-in-the-box with a defined endpoint. It\u2019s a continuous adaptive process that helps you keep up with evolving market dynamics and customer needs. To succeed, you must consistently evaluate your digital strategies and business technology solutions, making adjustments as necessary. Misconception #3 Digital transformation is expensive. Truth Gone are the days when digital transformation used to be abhorrently expensive. Today\u2019s businesses can manage their expenses by adopting affordable technologies and solutions. Similarly, strategically and gradually implementing and scaling transformation initiatives can help you make the most of your investments. Hiring an IT service provider has also helped businesses make significant savings. Misconception #4 Digital transformation requires a complete modernization of your IT systems and processes. Truth\\xa0 Making drastic changes to your existing processes that require a complete overhaul of your IT can be counterproductive. That\u2019s why we recommend adopting an incremental approach to fare well in the long run and make sustainable transformations without significant disruptions. Steps to success It can be challenging to keep up with evolving technologies, IT requirements and compliance laws while focusing on growing your business. Consider partnering with an experienced IT service provider like us to ensure the success of your digital transformation initiative. Contact us now! Download our infographic, \u201CHow Digital Transformation Drives Business Success\u201D and discover how you can successfully integrate digital technology into all aspects of your business.\",fonts:[\"GF;Noto Sans-regular\",\"GF;Noto Sans-700\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1awkkfa\",code:\"framer-styles-preset-1v3ymkp\",h1:\"framer-styles-preset-1bpox6k\",h2:\"framer-styles-preset-2rogj\",h3:\"framer-styles-preset-115tvd7\",h4:\"framer-styles-preset-12mm9rq\",h5:\"framer-styles-preset-7ivp1l\",img:\"framer-styles-preset-vdud83\",p:\"framer-styles-preset-1fac67h\",table:\"framer-styles-preset-6o7tkd\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kmcsut\",\"data-framer-name\":\"Frame 2147223308\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-115tvd7\",\"data-styles-preset\":\"uqeQLm8QM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-68baec3e-e750-446b-b083-9abd13cf6dda, rgb(214, 222, 232))\"},children:\"You might also like\"})}),className:\"framer-1bhmct\",\"data-framer-name\":\"Table Of Contents\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-113wzbr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Ws_BcKr90\",data:Insight,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"Ws_BcKr90\",name:\"Fq7mVZugq\",type:\"Identifier\"},{collection:\"Ws_BcKr90\",name:\"rg3hITGbg\",type:\"Identifier\"},{collection:\"Ws_BcKr90\",name:\"BAY1y3lvL\",type:\"Identifier\"},{collection:\"Ws_BcKr90\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({BAY1y3lvL:BAY1y3lvLWs_BcKr90,Fq7mVZugq:Fq7mVZugqWs_BcKr90,id:idWs_BcKr90,rg3hITGbg:rg3hITGbgWs_BcKr90},index)=>{Fq7mVZugqWs_BcKr90??=\"\";rg3hITGbgWs_BcKr90??=\"\";BAY1y3lvLWs_BcKr90??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Ws_BcKr90-${idWs_BcKr90}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Fq7mVZugq:Fq7mVZugqWs_BcKr90},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Fq7mVZugq:Fq7mVZugqWs_BcKr90},webPageId:\"Oo7Hn2NJD\"},motionChild:true,nodeId:\"YiOapdMwS\",openInNewTab:false,scopeId:\"Oo7Hn2NJD\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1fp73j4 framer-1djiygg\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2fgdjv\",\"data-framer-name\":\"Title \",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aquwbm\",\"data-styles-preset\":\"l7fHyLKXe\",style:{\"--framer-text-color\":\"var(--token-7cdf007d-21a7-47aa-95c9-53612efd972e, rgb(110, 113, 123))\"},children:\"BLOG POST\"})}),className:\"framer-hcx7s3\",\"data-framer-name\":\"BLOG POST\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18wpn30\",\"data-styles-preset\":\"nQqTY9L3R\",style:{\"--framer-text-color\":\"var(--token-68baec3e-e750-446b-b083-9abd13cf6dda, rgb(214, 222, 232))\"},children:\"Turn Your App Into Revenue: Building Paywalls in Android With Jetpack...\"})}),className:\"framer-v564pi\",\"data-framer-name\":\"Turn Your App Into Revenue: Building Paywalls in Android With Jetpack...\",fonts:[\"Inter\"],text:rg3hITGbgWs_BcKr90,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18ztkil\",\"data-styles-preset\":\"u1v8nnsaj\",style:{\"--framer-text-color\":\"var(--token-7cdf007d-21a7-47aa-95c9-53612efd972e, rgb(110, 113, 123))\"},children:\"In this article, you'll learn how to seamlessly implement in-app subscriptions and payw...\"})}),className:\"framer-1xlg337\",\"data-framer-name\":\"In this article, you'll learn how to seamlessly implement in-app subscriptions and payw...\",fonts:[\"Inter\"],text:BAY1y3lvLWs_BcKr90,verticalAlignment:\"top\",withExternalLayout:true})]})})})},idWs_BcKr90);})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XVOUjvsmK:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1170px) - 32px)`,y:(componentViewport?.y||0)+0+0+100+0+0+0+0+777.4+16+419.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:\"334px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kt1s9a-container\",nodeId:\"yFJ6VIrW8\",scopeId:\"Oo7Hn2NJD\",children:/*#__PURE__*/_jsx(ContactCard,{height:\"100%\",id:\"yFJ6VIrW8\",layoutId:\"yFJ6VIrW8\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rxcaTzM8t:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1644,pixelWidth:3200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg\",srcSet:\"https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg 3200w\"}},XVOUjvsmK:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6),pixelHeight:1644,pixelWidth:3200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg\",srcSet:\"https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg 3200w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"section\",background:{alt:\"\",fit:\"fill\",pixelHeight:1644,pixelWidth:3200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg\",srcSet:\"https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Jfx8n6YIgmSmkkX3jxOMxqqAxE.jpg 3200w\"},className:\"framer-fzkbxf\",\"data-framer-name\":\"Insight Section \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19a7yjv\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2g5o0k\",\"data-framer-name\":\"Section Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ixfvbl\",\"data-framer-name\":\"Section Title \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XVOUjvsmK:{y:(componentViewport?.y||0)+0+1507.6+0+0+60+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b1b2td-container\",nodeId:\"adIZ0STr_\",rendersWithMotion:true,scopeId:\"Oo7Hn2NJD\",children:/*#__PURE__*/_jsx(TagLine,{EyLDYLHxE:\"More From the Kooks\",height:\"100%\",id:\"adIZ0STr_\",layoutId:\"adIZ0STr_\",variant:\"QzbuXJZf4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15fsxp9\",\"data-framer-name\":\"Texts\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1bpox6k\",\"data-styles-preset\":\"kX12pBLwQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-68baec3e-e750-446b-b083-9abd13cf6dda, rgb(214, 222, 232))\"},children:\"Still Curious? Read On.\"})}),className:\"framer-1ehoe6b\",\"data-framer-name\":\"We Fix. We Automate. You Level Up.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oomo6o\",\"data-framer-name\":\"Bottom Content \",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pfsrts\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:3,query:{from:{alias:\"qlP1mEKV8\",data:Insight,type:\"Collection\"},select:[{collection:\"qlP1mEKV8\",name:\"Fq7mVZugq\",type:\"Identifier\"},{collection:\"qlP1mEKV8\",name:\"rg3hITGbg\",type:\"Identifier\"},{collection:\"qlP1mEKV8\",name:\"l1oJvybdp\",type:\"Identifier\"},{collection:\"qlP1mEKV8\",name:\"Ez1Xe8oQw\",type:\"Identifier\"},{collection:\"qlP1mEKV8\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"qlP1mEKV8\",name:\"rg3hITGbg\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:rg3hITGbg},type:\"BinaryOperation\"}}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({Ez1Xe8oQw:Ez1Xe8oQwqlP1mEKV8,Fq7mVZugq:Fq7mVZugqqlP1mEKV8,id:idqlP1mEKV8,l1oJvybdp:l1oJvybdpqlP1mEKV8,rg3hITGbg:rg3hITGbgqlP1mEKV8},index1)=>{Fq7mVZugqqlP1mEKV8??=\"\";rg3hITGbgqlP1mEKV8??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qlP1mEKV8-${idqlP1mEKV8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Fq7mVZugq:Fq7mVZugqqlP1mEKV8},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Fq7mVZugq:Fq7mVZugqqlP1mEKV8},webPageId:\"Oo7Hn2NJD\"},motionChild:true,nodeId:\"e7kgF31T4\",scopeId:\"Oo7Hn2NJD\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uuoqy4 framer-1djiygg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rxcaTzM8t:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px) * 0.48, 1px)`},XVOUjvsmK:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1170px), 1px)`,y:(componentViewport?.y||0)+0+1507.6+0+0+60+141.4+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qe3uk7-container\",nodeId:\"VPIQGbUHT\",scopeId:\"Oo7Hn2NJD\",children:/*#__PURE__*/_jsx(InsightCard,{fBf7FGOR1:toDateString(l1oJvybdpqlP1mEKV8,activeLocaleCode),height:\"100%\",id:\"VPIQGbUHT\",layoutId:\"VPIQGbUHT\",S_O6pdzQH:toResponsiveImage(Ez1Xe8oQwqlP1mEKV8),style:{width:\"100%\"},width:\"100%\",xEo5dNJeo:rg3hITGbgqlP1mEKV8})})})})})})})},idqlP1mEKV8);})})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XVOUjvsmK:{y:(componentViewport?.y||0)+0+2160}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:561,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g0xy7t-container\",nodeId:\"mmUfuoqNQ\",scopeId:\"Oo7Hn2NJD\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rxcaTzM8t:{variant:\"Gn2NB2vIg\"},XVOUjvsmK:{variant:\"bejSno4hX\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"mmUfuoqNQ\",layoutId:\"mmUfuoqNQ\",style:{width:\"100%\"},variant:\"Xg5w4PyxP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-apcxqj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JyuJPDeGL\",scopeId:\"Oo7Hn2NJD\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"JyuJPDeGL\",intensity:20,layoutId:\"JyuJPDeGL\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6YaHw.framer-1djiygg, .framer-6YaHw .framer-1djiygg { display: block; }\",\".framer-6YaHw.framer-4vf7ei { align-content: center; align-items: center; background-color: var(--token-3357ea89-1709-4d04-a0b3-f4d817c0e612, #131215); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-6YaHw .framer-73vwzv-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-6YaHw .framer-1k35472 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 190px 30px 94px 30px; position: relative; width: 100%; z-index: 5; }\",\".framer-6YaHw .framer-76e4bg { --border-bottom-width: 0px; --border-color: var(--token-68b3a7b3-a0b5-48c5-9b52-db54c222dc1b, #1e1c21); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1170px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-6YaHw .framer-7nx0it { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 8; }\",\".framer-6YaHw .framer-1ekdb3p { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 772px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-6YaHw .framer-111rhwz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-11zxyiu, .framer-6YaHw .framer-w163yj, .framer-6YaHw .framer-1sepddq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-inyckr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6YaHw .framer-1v6kgps, .framer-6YaHw .framer-dcxfri, .framer-6YaHw .framer-1raqky4, .framer-6YaHw .framer-ormnmf, .framer-6YaHw .framer-1v8viye, .framer-6YaHw .framer-j4hn6l { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6YaHw .framer-s2pfwn { flex: none; height: 18px; position: relative; width: 8px; }\",\".framer-6YaHw .framer-bx6yob, .framer-6YaHw .framer-1bhmct, .framer-6YaHw .framer-hcx7s3, .framer-6YaHw .framer-v564pi, .framer-6YaHw .framer-1xlg337, .framer-6YaHw .framer-1ehoe6b { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6YaHw .framer-1surnil { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6YaHw .framer-1h6npgx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-18479l6 { aspect-ratio: 1.93 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 104px); position: relative; width: 100%; }\",\".framer-6YaHw .framer-1h8ii7c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-ctzagt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6YaHw .framer-v5tob6 { align-content: center; align-items: center; aspect-ratio: 1.0285714285714285 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 35px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 36px; }\",\".framer-6YaHw .framer-wm4sxg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-6YaHw .framer-1tqheow { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6YaHw .framer-kmcsut { align-content: flex-start; align-items: flex-start; background-color: var(--token-fdb046b8-9233-4979-a5d9-3b8467e2d70a, #1e1c21); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: sticky; top: 20px; width: 374px; will-change: var(--framer-will-change-override, transform); z-index: 8; }\",\".framer-6YaHw .framer-113wzbr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-1fp73j4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-6YaHw .framer-2fgdjv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-kt1s9a-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6YaHw .framer-fzkbxf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 2; }\",\".framer-6YaHw .framer-19a7yjv { --border-bottom-width: 0px; --border-color: var(--token-68b3a7b3-a0b5-48c5-9b52-db54c222dc1b, #1e1c21); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1170px; overflow: visible; padding: 70px 0px 90px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-6YaHw .framer-2g5o0k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-ixfvbl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 722px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-1b1b2td-container, .framer-6YaHw .framer-apcxqj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-6YaHw .framer-15fsxp9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-1oomo6o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-pfsrts { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-6YaHw .framer-uuoqy4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-6YaHw .framer-1qe3uk7-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-6YaHw .framer-1g0xy7t-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,'.framer-6YaHw[data-border=\"true\"]::after, .framer-6YaHw [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-6YaHw.framer-4vf7ei { justify-content: center; width: 810px; } .framer-6YaHw .framer-1k35472 { padding: 140px 30px 94px 30px; } .framer-6YaHw .framer-76e4bg { gap: 32px; } .framer-6YaHw .framer-7nx0it { gap: 40px; justify-content: center; } .framer-6YaHw .framer-1h8ii7c { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; justify-content: flex-start; } .framer-6YaHw .framer-19a7yjv { gap: 32px; padding: 70px 0px 80px 0px; } .framer-6YaHw .framer-2g5o0k { gap: 40px; } .framer-6YaHw .framer-uuoqy4 { flex: none; width: 48%; }}\",\"@media (max-width: 809px) { .framer-6YaHw.framer-4vf7ei { overflow: hidden; width: 390px; } .framer-6YaHw .framer-1k35472 { padding: 100px 20px 60px 20px; } .framer-6YaHw .framer-76e4bg, .framer-6YaHw .framer-2g5o0k { gap: 30px; } .framer-6YaHw .framer-7nx0it { flex-direction: column; gap: 24px; justify-content: center; } .framer-6YaHw .framer-1ekdb3p, .framer-6YaHw .framer-uuoqy4 { flex: none; width: 100%; } .framer-6YaHw .framer-111rhwz { gap: 24px; } .framer-6YaHw .framer-1h8ii7c { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 8px; justify-content: flex-start; } .framer-6YaHw .framer-kmcsut { padding: 16px; position: relative; top: unset; width: 100%; } .framer-6YaHw .framer-113wzbr { align-content: center; align-items: center; } .framer-6YaHw .framer-fzkbxf { padding: 0px 20px 0px 20px; } .framer-6YaHw .framer-19a7yjv { gap: 30px; padding: 60px 0px 60px 0px; } .framer-6YaHw .framer-1oomo6o { gap: 23px; } .framer-6YaHw .framer-pfsrts { align-content: center; align-items: center; flex-direction: column; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3425\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rxcaTzM8t\":{\"layout\":[\"fixed\",\"auto\"]},\"XVOUjvsmK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"W9agVZrdK\":{\"pattern\":\":W9agVZrdK\",\"name\":\"scroll\"}}\n * @framerResponsiveScreen\n */const FramerOo7Hn2NJD=withCSS(Component,css,\"framer-6YaHw\");export default FramerOo7Hn2NJD;FramerOo7Hn2NJD.displayName=\"Insight\";FramerOo7Hn2NJD.defaultProps={height:3425,width:1200};addFonts(FramerOo7Hn2NJD,[{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\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2\",weight:\"400\"},{family:\"Noto Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAaBN9Y41P6zHtY.woff2\",weight:\"700\"}]},...HeaderFonts,...ContactCardFonts,...TagLineFonts,...InsightCardFonts,...FooterSectionFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...componentPresets.fonts?.[\"vcGQjZN39\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"vcGQjZN39\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOo7Hn2NJD\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"3425\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"W9agVZrdK\\\":{\\\"pattern\\\":\\\":W9agVZrdK\\\",\\\"name\\\":\\\"scroll\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rxcaTzM8t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XVOUjvsmK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["FieldType", "FilterFieldType", "FilterTextCondition", "Button", "props", "onClick", "onMouseEnter", "layer", "width", "height", "q", "p", "u", "createBackground", "Border", "Border", "width", "widthIsMixed", "widthTop", "widthRight", "widthBottom", "widthLeft", "style", "color", "transition", "animate", "radius", "p", "motion", "Message", "title", "subtitle", "u", "createBackground", "fill", "on", "color", "colorA", "colorB", "MODE_CONTROL", "ControlType", "SUPPORT_CONTROL", "addPropertyControlsV2", "component", "controls", "showModeControl", "id", "control", "props", "addPropertyControls", "idControl", "ControlType", "parsePadding", "padding", "property", "values", "val", "parseRadius", "radius", "BRAND_COLORS", "PLATFORM_NAMES", "SocialShare", "props", "type", "colors", "iconSize", "border", "shareUrl", "setShareUrl", "ye", "encodedUrl", "borderRadius", "ue", "window", "linkUrl", "copyToClipboard", "navigator", "err", "u", "Color", "p", "SocialIcon", "addPropertyControls", "ControlType", "size", "color", "customIcon", "contents", "fill", "stroke", "l", "SocialShare", "props", "p", "parsePadding", "parseRadius", "addPropertyControlsV2", "ControlType", "PLATFORM_NAMES", "SocialShareFonts", "getFonts", "SocialShare", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "SocialShare", "css", "FramerAAQNIi6sM", "withCSS", "AAQNIi6sM_default", "addFonts", "SocialShareFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "HeaderFonts", "getFonts", "DFCPGLP3U_default", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText", "ImageWithFX", "Image2", "ContactCardFonts", "AAQNIi6sM_default", "TagLineFonts", "k_24NJq04_default", "ContainerWithFX", "Container", "InsightCardFonts", "hkDNB39hm_default", "MotionAWithFX", "FooterSectionFonts", "jGorTrxZe_default", "SmoothScrollFonts", "SmoothScroll_Prod_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "sharedDateFormatter", "value", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "toResponsiveImage", "animation1", "transition3", "transition4", "transition5", "animation2", "transition6", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "QueryData1", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "nrTqVMFLW_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "rg3hITGbg", "fum0HeheFronFalls4", "Ez1Xe8oQw", "qZf_6_xvu", "jvZbE76TS", "l1oJvybdp", "G0iZa2U5g", "Fq7mVZugqWs_BcKr90", "rg3hITGbgWs_BcKr90", "BAY1y3lvLWs_BcKr90", "idWs_BcKr90", "Fq7mVZugqqlP1mEKV8", "rg3hITGbgqlP1mEKV8", "l1oJvybdpqlP1mEKV8", "Ez1Xe8oQwqlP1mEKV8", "idqlP1mEKV8", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "DFCPGLP3U_default", "MotionDivWithFX", "RichText", "x", "SVG", "RichTextWithFX", "getLoadingLazyAtYPosition", "ImageWithFX", "Image2", "ComponentPresetsProvider", "ChildrenCanSuspend", "collection", "l", "index", "PathVariablesContext", "Link", "AAQNIi6sM_default", "ContainerWithFX", "k_24NJq04_default", "collection1", "paginationInfo1", "loadMore1", "index1", "MotionAWithFX", "hkDNB39hm_default", "jGorTrxZe_default", "SmoothScroll_Prod_default", "css", "FramerOo7Hn2NJD", "withCSS", "Oo7Hn2NJD_default", "addFonts", "HeaderFonts", "ContactCardFonts", "TagLineFonts", "InsightCardFonts", "FooterSectionFonts", "SmoothScrollFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
