{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/4lPJUInr9BbZwDYdxSgD/MtDBVuDoZ2YXDgn8MBbB/StaggeredTextCycle_Prod.js", "ssg:https://framerusercontent.com/modules/kLfBn9uW68rRM9Sg1wXE/kJjJwNKOtfTPTbWnsFgy/Counter1.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/gOKCtu3cQqvGztZgU6fB/cbaAYqFveDeIa7Cv4UrE/jO__jlR0E.js", "ssg:https://framerusercontent.com/modules/Zsfh9ueXZW5mxMBbRX3I/ngF5aFIuuXo6IZzbYH0u/ukdNjtG4C.js", "ssg:https://framerusercontent.com/modules/ACyeqcxKi80WrA91kzdm/B7d81ncAIH5ldoyDFZyO/y8lpjkB9D.js", "ssg:https://framerusercontent.com/modules/Ry98KA07WsitKdygYWnK/KFP6Ya4JGQ34gAwWbJMs/Preloader.js", "ssg:https://framerusercontent.com/modules/68Jeam05mUYqE6WsY3XU/u1ZmBuo7hIZI4sCZUMGq/A5c7nVJe_.js", "ssg:https://framerusercontent.com/modules/EUhK4QQMYELZTQfESgC1/dmlmqnbWTHYX61xwEm0t/PN1Yl910b.js", "ssg:https://framerusercontent.com/modules/V2NkWXzHCnT4unZCqbA0/oKSKWgN8rY1wpwkBZBwt/U8QVsnd1i.js", "ssg:https://framerusercontent.com/modules/UKOcvkCp2QUxtnPRgWSu/LiVammurw1MXYpoWgDLG/Z7Wi5e8zS.js", "ssg:https://framerusercontent.com/modules/5VBGDMbExXnGLUth7YFi/d0vVEFdcN1BsVJQql3Qk/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";const MAX_SPEED=20;const defaultTransition={// ease: \"power4.out\",\nease:[.11,.72,0,1]};/**\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function StaggeredTextCycleV2({text,speed,delay,font,userSelect,color,alignment,tag,loop,stagger}){const Tag=tag;const content=text.split(\", \").map(phrase=>phrase.replace(/\\s+/g,\" \").trim());const[iteration,setIteration]=useState(0);const speedFormatted=(MAX_SPEED-speed+1)/MAX_SPEED*5;const delayFormattedMs=delay*1e3;const speedFormattedMs=speedFormatted*1e3;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[isFirstRender,setIsFirstRender]=useState(true);useEffect(()=>{const timeout=isFirstRender?speedFormattedMs/3+delayFormattedMs:speedFormattedMs+delayFormattedMs;const interval=setInterval(()=>{setIsFirstRender(false);if(iteration<content.length-1){setIteration(prev=>prev+1);}else if(loop){setIteration(0);}},timeout);return()=>clearInterval(interval);},[iteration,loop,isFirstRender]);return /*#__PURE__*/_jsxs(\"div\",{style:{userSelect:userSelect?\"auto\":\"none\",position:\"relative\",display:\"flex\",flexDirection:\"row\",overflow:\"visible\",justifyContent:alignment===\"center\"?\"center\":alignment===\"right\"?\"flex-end\":\"flex-start\"},children:[/*#__PURE__*/_jsx(Tag,{\"aria-hidden\":true,style:{fontSize:\"24px\",...font,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",pointerEvents:\"none\",opacity:0,whiteSpace:\"pre-wrap\",width:\"100%\",textAlign:alignment},children:content.reduce((longest,current)=>current.length>longest.length?current:longest)}),isCanvas&&/*#__PURE__*/_jsx(Tag,{style:{fontSize:\"24px\",...font,color,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",whiteSpace:\"pre-wrap\",position:\"absolute\",top:0,left:0,width:\"100%\",textAlign:alignment},children:content[0]}),!isCanvas&&/*#__PURE__*/_jsx(_Fragment,{children:content.map((sentence,sentenceIndex)=>{let charIndex=0;// Split sentence into segments\nconst segments=sentence.split(/(\\s+|\\b)/).map(segment=>({text:segment,chars:segment.split(\"\").map(char=>({char,originalIndex:charIndex++}))}));console.log(segments);return /*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:0,left:0,overflow:\"visible\",width:\"100%\",textAlign:alignment},children:/*#__PURE__*/_jsx(AnimatePresence,{mode:\"sync\",children:iteration===sentenceIndex&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexWrap:\"wrap\",width:\"100%\",justifyContent:alignment===\"center\"?\"center\":alignment===\"right\"?\"flex-end\":\"flex-start\",gap:0},children:segments.map((segment,segmentIndex)=>/*#__PURE__*/_jsx(\"div\",{style:{display:\"inline-flex\",flexWrap:\"nowrap\",whiteSpace:\"pre\",overflow:\"hidden\"},children:segment.chars.map(({char,originalIndex})=>{const baseDelay=originalIndex/(sentence.length-1);const delayInitial=baseDelay*(speedFormatted*.3)// 30% of speed\n    ;const delayAnimate=baseDelay*(speedFormatted*.4)// 40% of speed\n    ;const delayExit=baseDelay*(speedFormatted*.3)// 30% of speed\n    ;const itemTransition={initial:{transform:`translate(0px, 150%)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayInitial*stagger}},animate:{transform:`translate(0px, 0px)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayAnimate*stagger}},exit:{transform:`translate(0px, -150%)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayExit*stagger}}};return /*#__PURE__*/_jsx(motion.div,{variants:itemTransition,initial:isFirstRender?false:\"initial\",animate:isFirstRender?false:\"animate\",exit:\"exit\",style:{display:\"inline-block\"},children:/*#__PURE__*/_jsx(Tag,{style:{fontSize:\"24px\",...font,color,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",opacity:1},children:char})},sentence+originalIndex);})},segmentIndex))})})},sentenceIndex);})})]});}StaggeredTextCycleV2.displayName=\"Staggered Cycle\";addPropertyControls(StaggeredTextCycleV2,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"DESIGNER, DEVELOPER\",description:\"Divide the words with a comma (,) if you want to display them separately.\"},speed:{type:ControlType.Number,title:\"Speed\",defaultValue:MAX_SPEED/2,min:1,max:MAX_SPEED},delay:{type:ControlType.Number,title:\"Delay\",defaultValue:1,min:0,max:10,unit:\"s\"},stagger:{title:\"Stagger\",description:\"The delay between each word.\",type:ControlType.Number,defaultValue:.5,step:.1,min:0,max:1},font:{title:\"Font\",type:ControlType.Font,controls:\"extended\"},alignment:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Alignment\",defaultValue:\"left\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"]},userSelect:{title:\"User Select\",type:ControlType.Boolean,defaultValue:false},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#ffffff\"},tag:{type:ControlType.Enum,title:\"Tag\",defaultValue:\"p\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"]},loop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"StaggeredTextCycleV2\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./StaggeredTextCycle_Prod.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};const applyGradient=(text,gradientEnabled,angle,color1,color2)=>{if(gradientEnabled){const gradient=`linear-gradient(${angle}deg, ${color1}, ${color2})`;return /*#__PURE__*/_jsx(\"span\",{style:{backgroundImage:gradient,WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",display:\"inline-block\"},children:text});}else{return text;}};export function Counter(props){const{start,end,speed,gapSize,prefixEnabled,prefixText,prefixFont,prefixColor,prefixGradientEnabled,prefixGradientAngle,prefixGradientColor1,prefixGradientColor2,suffixEnabled,suffixText,suffixFont,suffixColor,suffixGradientEnabled,suffixGradientAngle,suffixGradientColor1,suffixGradientColor2,textGradientEnabled,textGradientAngle,textGradientColor1,textGradientColor2,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;if(count<end){setCount(prevCount=>parseFloat((prevCount+increment).toFixed(1)));}else if(loop){setCount(start);}};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[prefixEnabled&&applyGradient(/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixGradientEnabled?\"transparent\":prefixColor},children:prefixText}),prefixGradientEnabled,prefixGradientAngle,prefixGradientColor1,prefixGradientColor2),applyGradient(formatNumber(count),textGradientEnabled,textGradientAngle,textGradientColor1,textGradientColor2),suffixEnabled&&applyGradient(/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixGradientEnabled?\"transparent\":suffixColor},children:suffixText}),suffixGradientEnabled,suffixGradientAngle,suffixGradientColor1,suffixGradientColor2)]});}Counter.defaultProps={start:0,end:100,speed:100,prefixEnabled:false,suffixEnabled:false,loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\",textGradientEnabled:false,textGradientAngle:90,textGradientColor1:\"#000\",textGradientColor2:\"#fff\",prefixText:\"\",prefixFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},prefixColor:\"#000\",prefixGradientEnabled:false,prefixGradientAngle:90,prefixGradientColor1:\"#000\",prefixGradientColor2:\"#fff\",suffixText:\"\",suffixFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},suffixColor:\"#000\",suffixGradientEnabled:false,suffixGradientAngle:90,suffixGradientColor1:\"#000\",suffixGradientColor2:\"#fff\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},textGradientEnabled:{type:ControlType.Boolean,title:\"Text Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},textGradientAngle:{type:ControlType.Number,title:\"Text Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.textGradientEnabled},textGradientColor1:{type:ControlType.Color,title:\"Text Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.textGradientEnabled},textGradientColor2:{type:ControlType.Color,title:\"Text Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.textGradientEnabled},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixEnabled:{type:ControlType.Boolean,title:\"Prefix\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},prefixText:{type:ControlType.String,title:\"Prefix Text\",defaultValue:\"\",hidden:props=>!props.prefixEnabled},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},hidden:props=>!props.prefixEnabled},prefixColor:{type:ControlType.Color,title:\"Prefix Color\",hidden:props=>!props.prefixEnabled},prefixGradientEnabled:{type:ControlType.Boolean,title:\"Prefix Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",hidden:props=>!props.prefixEnabled},prefixGradientAngle:{type:ControlType.Number,title:\"Prefix Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},prefixGradientColor1:{type:ControlType.Color,title:\"Prefix Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},prefixGradientColor2:{type:ControlType.Color,title:\"Prefix Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.prefixEnabled||!props.prefixGradientEnabled},suffixEnabled:{type:ControlType.Boolean,title:\"Suffix\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},suffixText:{type:ControlType.String,title:\"Suffix Text\",defaultValue:\"\",hidden:props=>!props.suffixEnabled},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},hidden:props=>!props.suffixEnabled},suffixColor:{type:ControlType.Color,title:\"Suffix Color\",hidden:props=>!props.suffixEnabled},suffixGradientEnabled:{type:ControlType.Boolean,title:\"Suffix Gradient\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",hidden:props=>!props.suffixEnabled},suffixGradientAngle:{type:ControlType.Number,title:\"Suffix Gradient Angle\",min:0,max:360,defaultValue:90,hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},suffixGradientColor1:{type:ControlType.Color,title:\"Suffix Gradient Color 1\",defaultValue:\"#000\",hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},suffixGradientColor2:{type:ControlType.Color,title:\"Suffix Gradient Color 2\",defaultValue:\"#fff\",hidden:props=>!props.suffixEnabled||!props.suffixGradientEnabled},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const RichTextWithFX=withFX(RichText);const serializationHash=\"framer-SwEhk\";const variantClassNames={k5RQMgPUn:\"framer-v-9polgx\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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=({body,height,id,image,title,width,...props})=>{return{...props,NnFRsMwS7:body??props.NnFRsMwS7??\"Streamlined production processes ensure rapid turnaround times and cost-effective solutions.\",OM8bviDrT:title??props.OM8bviDrT??\"Operate efficiency\",pYkSuiTwK:image??props.pYkSuiTwK??{alt:\"\",pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/uN2yCULiE4jDIy1ii26lIIw70UM.svg\"}};};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,OM8bviDrT,NnFRsMwS7,pYkSuiTwK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"k5RQMgPUn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9polgx\",className,classNames),\"data-framer-name\":\"benefit-item\",layoutDependency:layoutDependency,layoutId:\"k5RQMgPUn\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12bxqpr\",\"data-framer-name\":\"icon_wrapper\",layoutDependency:layoutDependency,layoutId:\"elWlSjXeD\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:30,pixelWidth:30,sizes:\"30px\",...toResponsiveImage(pYkSuiTwK)},className:\"framer-1u81lh8\",layoutDependency:layoutDependency,layoutId:\"RQ3S_F5oS\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m52vs9\",\"data-framer-name\":\"benefit_text\",layoutDependency:layoutDependency,layoutId:\"sYF4TXaln\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUczU2VtaUJvbGQtSXRhbGljIEl0YWxpYw==\",\"--framer-font-family\":'\"TabacGlamG3SemiBold-Italic Italic\", \"TabacGlamG3SemiBold-Italic Italic Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-c63c5632-2d92-4593-a80f-4d310866cb5e, rgb(24, 24, 24)))\"},children:\"Operate efficiency\"})}),className:\"framer-1txah2l\",\"data-framer-name\":\"Coating\",fonts:[\"CUSTOM;TabacGlamG3SemiBold-Italic Italic\"],layoutDependency:layoutDependency,layoutId:\"yvOXZG0Ca\",style:{\"--extracted-a0htzi\":\"var(--token-c63c5632-2d92-4593-a80f-4d310866cb5e, rgb(24, 24, 24))\",\"--framer-paragraph-spacing\":\"0px\"},text:OM8bviDrT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8)))\"},children:\"Streamlined production processes ensure rapid turnaround times and cost-effective solutions.\"})}),className:\"framer-18imkd9\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"SF6gYP9Ov\",style:{\"--extracted-r6o4lv\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NnFRsMwS7,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SwEhk.framer-1qjwgit, .framer-SwEhk .framer-1qjwgit { display: block; }\",\".framer-SwEhk.framer-9polgx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 254px; }\",\".framer-SwEhk .framer-12bxqpr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SwEhk .framer-1u81lh8 { aspect-ratio: 1 / 1; flex: none; gap: 10px; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 30px); }\",\".framer-SwEhk .framer-m52vs9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SwEhk .framer-1txah2l, .framer-SwEhk .framer-18imkd9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 236\n * @framerIntrinsicWidth 254\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"OM8bviDrT\":\"title\",\"NnFRsMwS7\":\"body\",\"pYkSuiTwK\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjO__jlR0E=withCSS(Component,css,\"framer-SwEhk\");export default FramerjO__jlR0E;FramerjO__jlR0E.displayName=\"benefit item\";FramerjO__jlR0E.defaultProps={height:236,width:254};addPropertyControls(FramerjO__jlR0E,{OM8bviDrT:{defaultValue:\"Operate efficiency\",displayTextArea:false,title:\"Title\",type:ControlType.String},NnFRsMwS7:{defaultValue:\"Streamlined production processes ensure rapid turnaround times and cost-effective solutions.\",displayTextArea:false,title:\"body\",type:ControlType.String},pYkSuiTwK:{__defaultAssetReference:\"data:framer/asset-reference,uN2yCULiE4jDIy1ii26lIIw70UM.svg?originalFilename=benefit-icon.svg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,uN2yCULiE4jDIy1ii26lIIw70UM.svg?originalFilename=benefit-icon.svg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerjO__jlR0E,[{explicitInter:true,fonts:[{family:\"TabacGlamG3SemiBold-Italic Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/01o5QL8FRby1lrhA5PKetIvpYA.woff2\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjO__jlR0E\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"254\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"OM8bviDrT\\\":\\\"title\\\",\\\"NnFRsMwS7\\\":\\\"body\\\",\\\"pYkSuiTwK\\\":\\\"image\\\"}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"236\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jO__jlR0E.map", "// Generated by Framer (ab692b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-zeATr .framer-styles-preset-1ibyzrm:not(.rich-text-wrapper), .framer-zeATr .framer-styles-preset-1ibyzrm.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-zeATr\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Zsfh9ueXZW5mxMBbRX3I/ngF5aFIuuXo6IZzbYH0u/ukdNjtG4C.js\";const cycleOrder=[\"jm4ojp42E\",\"j79gMx2Vv\",\"p2hKtg7Qo\",\"kv2YAKnZB\"];const serializationHash=\"framer-Bd8eu\";const variantClassNames={j79gMx2Vv:\"framer-v-1u2sjwh\",jm4ojp42E:\"framer-v-h3qauz\",kv2YAKnZB:\"framer-v-3s53ku\",p2hKtg7Qo:\"framer-v-1fw5zxp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"kv2YAKnZB\",Desktop:\"jm4ojp42E\",Phone:\"p2hKtg7Qo\",Tablet:\"j79gMx2Vv\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"jm4ojp42E\"};};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({cycleOrder,defaultVariant:\"jm4ojp42E\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapbi19mt=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kv2YAKnZB\"),200);});const onTap17kywv4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"p2hKtg7Qo\"),200);});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"p2hKtg7Qo\",\"kv2YAKnZB\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"p2hKtg7Qo\")return true;return false;};const isDisplayed2=()=>{if([\"p2hKtg7Qo\",\"kv2YAKnZB\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"kv2YAKnZB\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"p2hKtg7Qo\")return false;return true;};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-h3qauz\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"jm4ojp42E\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0.57)\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,boxShadow:\"0px -2px 15px 2px rgba(0, 0, 0, 0.25)\",...style},...addPropertyOverrides({j79gMx2Vv:{\"data-framer-name\":\"Tablet\"},kv2YAKnZB:{\"data-framer-name\":\"Phone Open\"},p2hKtg7Qo:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bn66ro\",layoutDependency:layoutDependency,layoutId:\"XIiEM6qPN\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s8f1h\",layoutDependency:layoutDependency,layoutId:\"OJBHQQU3I\",style:{backgroundColor:\"rgb(122, 122, 122)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},variants:{kv2YAKnZB:{backgroundColor:\"rgba(184, 164, 127, 0)\"},p2hKtg7Qo:{backgroundColor:\"rgba(184, 164, 127, 0)\"}},...addPropertyOverrides({kv2YAKnZB:{\"data-highlight\":true,onTap:onTap17kywv4},p2hKtg7Qo:{\"data-highlight\":true,onTap:onTapbi19mt}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y0b0cj\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"NZ_GatzgN\",style:{backgroundColor:\"rgb(212, 212, 212)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotate:0},variants:{kv2YAKnZB:{backgroundColor:\"rgb(255, 255, 255)\",rotate:45},p2hKtg7Qo:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gqks86\",\"data-framer-name\":\"Middle\",layoutDependency:layoutDependency,layoutId:\"k9rMh3JQa\",style:{backgroundColor:\"rgb(212, 212, 212)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},variants:{kv2YAKnZB:{backgroundColor:\"rgb(255, 255, 255)\"},p2hKtg7Qo:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ysbs0n\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"wYd3e0Q18\",style:{backgroundColor:\"rgb(212, 212, 212)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotate:0},variants:{kv2YAKnZB:{backgroundColor:\"rgb(255, 255, 255)\",rotate:-45},p2hKtg7Qo:{backgroundColor:\"rgb(255, 255, 255)\"}}})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/AXrS78j9Fwz8iaVRh3Kf81v88.png\"},className:\"framer-ti6m6e\",\"data-framer-name\":\"Colossum Logo White Transparent\",layoutDependency:layoutDependency,layoutId:\"c6PlaacTf\",...addPropertyOverrides({p2hKtg7Qo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||74)-48-46)/2)+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/AXrS78j9Fwz8iaVRh3Kf81v88.png\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||74)-48-69)/2)+0),pixelHeight:500,pixelWidth:1500,sizes:\"207px\",src:\"https://framerusercontent.com/images/GMARIYixnVwzLM0w3oRskgugkpk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/GMARIYixnVwzLM0w3oRskgugkpk.png?scale-down-to=512 512w,https://framerusercontent.com/images/GMARIYixnVwzLM0w3oRskgugkpk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GMARIYixnVwzLM0w3oRskgugkpk.png 1500w\"},className:\"framer-j7361v\",\"data-framer-name\":\"Colossum full logo white transp.\",layoutDependency:layoutDependency,layoutId:\"U9QOm784V\"}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/AXrS78j9Fwz8iaVRh3Kf81v88.png\"},className:\"framer-12fh0wn\",\"data-framer-name\":\"Colossum Logo White Transparent\",layoutDependency:layoutDependency,layoutId:\"SoSMg7Fj_\",...addPropertyOverrides({kv2YAKnZB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+(((componentViewport?.height||228)-64-164)/2+0+0)+0),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/AXrS78j9Fwz8iaVRh3Kf81v88.png\"}}},baseVariant,gestureVariant)})]}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUczTWVkaXVtIFJlZ3VsYXI=\",\"--framer-font-family\":'\"TabacGlamG3Medium Regular\", \"TabacGlamG3Medium Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":s9LdDQph5\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"UCWP2GqnJ\",openInNewTab:false,scopeId:\"y8lpjkB9D\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ibyzrm\",\"data-styles-preset\":\"ukdNjtG4C\",children:\"About\"})})})}),className:\"framer-1qoyi8t\",fonts:[\"CUSTOM;TabacGlamG3Medium Regular\"],layoutDependency:layoutDependency,layoutId:\"UCWP2GqnJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUczTWVkaXVtIFJlZ3VsYXI=\",\"--framer-font-family\":'\"TabacGlamG3Medium Regular\", \"TabacGlamG3Medium Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":XQZkRfpMb\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"aXWcFLiUU\",openInNewTab:false,scopeId:\"y8lpjkB9D\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ibyzrm\",\"data-styles-preset\":\"ukdNjtG4C\",children:\"Services\"})})})}),className:\"framer-cfz93t\",\"data-framer-name\":\"Services\",fonts:[\"CUSTOM;TabacGlamG3Medium Regular\"],layoutDependency:layoutDependency,layoutId:\"aXWcFLiUU\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUczTWVkaXVtIFJlZ3VsYXI=\",\"--framer-font-family\":'\"TabacGlamG3Medium Regular\", \"TabacGlamG3Medium Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":VJNaefd1H\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"nuGcreg4r\",openInNewTab:false,scopeId:\"y8lpjkB9D\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ibyzrm\",\"data-styles-preset\":\"ukdNjtG4C\",children:\"Contact\"})})})}),className:\"framer-1yh4efa\",fonts:[\"CUSTOM;TabacGlamG3Medium Regular\"],layoutDependency:layoutDependency,layoutId:\"nuGcreg4r\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Bd8eu.framer-14ey22j, .framer-Bd8eu .framer-14ey22j { display: block; }\",\".framer-Bd8eu.framer-h3qauz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 74px; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1136px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Bd8eu .framer-1bn66ro { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 10px; position: relative; width: 1px; }\",\".framer-Bd8eu .framer-1s8f1h { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); overflow: hidden; position: relative; width: 43px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Bd8eu .framer-1y0b0cj { bottom: 10px; flex: none; height: 4px; left: calc(51.162790697674446% - 34px / 2); overflow: hidden; position: absolute; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Bd8eu .framer-gqks86 { flex: none; height: 4px; left: calc(51.162790697674446% - 34px / 2); overflow: hidden; position: absolute; top: calc(48.837209302325604% - 4px / 2); width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Bd8eu .framer-1ysbs0n { flex: none; height: 4px; left: calc(51.162790697674446% - 34px / 2); overflow: hidden; position: absolute; top: 9px; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Bd8eu .framer-ti6m6e, .framer-Bd8eu .framer-12fh0wn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 46px; }\",\".framer-Bd8eu .framer-j7361v { aspect-ratio: 3 / 1; flex: none; height: 69px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 207px); }\",\".framer-Bd8eu .framer-1qoyi8t, .framer-Bd8eu .framer-cfz93t, .framer-Bd8eu .framer-1yh4efa { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Bd8eu.framer-v-1u2sjwh.framer-h3qauz { width: 767px; }\",\".framer-Bd8eu.framer-v-1fw5zxp.framer-h3qauz { width: 390px; }\",\".framer-Bd8eu.framer-v-1fw5zxp .framer-1s8f1h, .framer-Bd8eu.framer-v-3s53ku .framer-1s8f1h { cursor: pointer; }\",\".framer-Bd8eu.framer-v-3s53ku.framer-h3qauz { flex-direction: column; gap: 8px; height: min-content; padding: 24px 24px 40px 24px; width: 390px; }\",\".framer-Bd8eu.framer-v-3s53ku .framer-1bn66ro { flex: none; order: 0; padding: 0px 0px 10px 10px; width: 100%; }\",\".framer-Bd8eu.framer-v-3s53ku .framer-1y0b0cj { bottom: unset; top: calc(48.837209302325604% - 4px / 2); }\",\".framer-Bd8eu.framer-v-3s53ku .framer-gqks86 { left: calc(51.162790697674446% - 0px / 2); width: 0px; }\",\".framer-Bd8eu.framer-v-3s53ku .framer-1ysbs0n { top: calc(48.837209302325604% - 4px / 2); }\",\".framer-Bd8eu.framer-v-3s53ku .framer-1qoyi8t { order: 1; }\",\".framer-Bd8eu.framer-v-3s53ku .framer-cfz93t { order: 2; }\",\".framer-Bd8eu.framer-v-3s53ku .framer-1yh4efa { order: 3; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 1136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"j79gMx2Vv\":{\"layout\":[\"fixed\",\"fixed\"]},\"p2hKtg7Qo\":{\"layout\":[\"fixed\",\"fixed\"]},\"kv2YAKnZB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framery8lpjkB9D=withCSS(Component,css,\"framer-Bd8eu\");export default Framery8lpjkB9D;Framery8lpjkB9D.displayName=\"navi\";Framery8lpjkB9D.defaultProps={height:74,width:1136};addPropertyControls(Framery8lpjkB9D,{variant:{options:[\"jm4ojp42E\",\"j79gMx2Vv\",\"p2hKtg7Qo\",\"kv2YAKnZB\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framery8lpjkB9D,[{explicitInter:true,fonts:[{family:\"TabacGlamG3Medium Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/g7v5JuVVH7hIDFmJc2SL3hmpbE.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery8lpjkB9D\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j79gMx2Vv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p2hKtg7Qo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kv2YAKnZB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"74\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1136\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./y8lpjkB9D.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";export function PreLoader(props){const{duration,backgroundColor,exitAnimation,exitSpeed,connectedFrame}=props;const[isLoading,setIsLoading]=React.useState(true);const[isVisible,setIsVisible]=React.useState(false);React.useEffect(()=>{// Apply background color to body to ensure visual consistency\ndocument.body.style.backgroundColor=backgroundColor;setIsVisible(true);setIsLoading(false);const timer=setTimeout(()=>{setIsVisible(false);},duration*1e3);return()=>clearTimeout(timer);},[duration,backgroundColor]);const exitVariants={fadeOut:{opacity:0,transition:{duration:exitSpeed}},swipeUp:{y:\"-100vh\",transition:{duration:exitSpeed}},scaleDown:{scale:0,transition:{duration:exitSpeed}},slideLeft:{x:\"-100vw\",transition:{duration:exitSpeed}},slideRight:{x:\"100vw\",transition:{duration:exitSpeed}},rotateOut:{rotate:90,opacity:0,transition:{duration:exitSpeed}},swipeUpRound:{y:\"-100vh\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",transition:{duration:exitSpeed}},swipeDownRound:{y:\"100vh\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",transition:{duration:exitSpeed}}};const containerStyle={display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",position:\"absolute\",top:\"0\",left:\"0\"};return /*#__PURE__*/_jsx(AnimatePresence,{children:!isLoading&&isVisible&&/*#__PURE__*/_jsx(motion.div,{initial:{opacity:1},exit:exitVariants[exitAnimation],style:{position:\"fixed\",top:0,left:0,width:\"100vw\",height:\"100vh\",margin:0,padding:0,backgroundColor:backgroundColor,zIndex:9999,boxSizing:\"border-box\",overflow:\"hidden\",border:\"none\"},children:/*#__PURE__*/_jsx(\"div\",{style:containerStyle,children:connectedFrame?.length>0&&connectedFrame.map((frame,index)=>/*#__PURE__*/_jsx(React.Fragment,{children:frame},index))})})});}addPropertyControls(PreLoader,{duration:{type:ControlType.Number,title:\"Duration\",defaultValue:3,min:1,max:10,unit:\"s\",step:.1,displayStepper:true},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"#FFFFFF\"},exitAnimation:{type:ControlType.Enum,title:\"Exit Animation\",options:[\"fadeOut\",\"swipeUp\",\"scaleDown\",\"slideLeft\",\"slideRight\",\"rotateOut\",\"swipeUpRound\",\"swipeDownRound\"],optionTitles:[\"Fade Out\",\"Swipe Up\",\"Scale Down\",\"Slide Left\",\"Slide Right\",\"Rotate Out\",\"Swipe Up Round\",\"Swipe Down Round\"],defaultValue:\"fadeOut\"},exitSpeed:{type:ControlType.Number,title:\"Exit Speed\",defaultValue:.5,min:.1,max:2,unit:\"s\",step:.1,displayStepper:true},connectedFrame:{type:ControlType.Array,title:\"Connect Frame\",propertyControl:{type:ControlType.ComponentInstance}}});\nexport const __FramerMetadata__ = {\"exports\":{\"PreLoader\":{\"type\":\"reactComponent\",\"name\":\"PreLoader\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Preloader.map", "// Generated by Framer (2306ade)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;TabacGlamG1-Italic Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"TabacGlamG1-Italic Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/CydTqgOlsuaAQJgCEzGAGs1IOc.woff2\"}]}];export const css=['.framer-mojRh .framer-styles-preset-1lx7p8n:not(.rich-text-wrapper), .framer-mojRh .framer-styles-preset-1lx7p8n.rich-text-wrapper h4 { --framer-font-family: \"TabacGlamG1-Italic Italic\", \"TabacGlamG1-Italic Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 29px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-92c197dd-0cc3-40e5-b48a-ce5f994df3b0, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-mojRh .framer-styles-preset-1lx7p8n:not(.rich-text-wrapper), .framer-mojRh .framer-styles-preset-1lx7p8n.rich-text-wrapper h4 { --framer-font-family: \"TabacGlamG1-Italic Italic\", \"TabacGlamG1-Italic Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 23px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-92c197dd-0cc3-40e5-b48a-ce5f994df3b0, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-mojRh .framer-styles-preset-1lx7p8n:not(.rich-text-wrapper), .framer-mojRh .framer-styles-preset-1lx7p8n.rich-text-wrapper h4 { --framer-font-family: \"TabacGlamG1-Italic Italic\", \"TabacGlamG1-Italic Italic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-92c197dd-0cc3-40e5-b48a-ce5f994df3b0, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-mojRh\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;TabacGlamG1Medium Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"TabacGlamG1Medium Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ynudfh8frb82YSeybKvrsKhZHWs.woff2\"}]}];export const css=['.framer-EUYeF .framer-styles-preset-18ika3j:not(.rich-text-wrapper), .framer-EUYeF .framer-styles-preset-18ika3j.rich-text-wrapper h1 { --framer-font-family: \"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 81px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-EUYeF .framer-styles-preset-18ika3j:not(.rich-text-wrapper), .framer-EUYeF .framer-styles-preset-18ika3j.rich-text-wrapper h1 { --framer-font-family: \"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 59px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-EUYeF .framer-styles-preset-18ika3j:not(.rich-text-wrapper), .framer-EUYeF .framer-styles-preset-18ika3j.rich-text-wrapper h1 { --framer-font-family: \"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 33px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-EUYeF\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Instrument Sans-regular\",\"GF;Instrument Sans-700\",\"GF;Instrument Sans-700italic\",\"GF;Instrument Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkywN2u7YUwU.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kywN2u7YUwU.woff2\",weight:\"400\"}]}];export const css=['.framer-8W9Hi .framer-styles-preset-11laaha:not(.rich-text-wrapper), .framer-8W9Hi .framer-styles-preset-11laaha.rich-text-wrapper p { --framer-font-family: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-8W9Hi .framer-styles-preset-11laaha:not(.rich-text-wrapper), .framer-8W9Hi .framer-styles-preset-11laaha.rich-text-wrapper p { --framer-font-family: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --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: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-8W9Hi .framer-styles-preset-11laaha:not(.rich-text-wrapper), .framer-8W9Hi .framer-styles-preset-11laaha.rich-text-wrapper p { --framer-font-family: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-8W9Hi\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;TabacGlamG1Medium Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"TabacGlamG1Medium Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ynudfh8frb82YSeybKvrsKhZHWs.woff2\"}]}];export const css=['.framer-MhPhO .framer-styles-preset-h6epri:not(.rich-text-wrapper), .framer-MhPhO .framer-styles-preset-h6epri.rich-text-wrapper h2 { --framer-font-family: \"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 41px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c63c5632-2d92-4593-a80f-4d310866cb5e, #181818); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-MhPhO .framer-styles-preset-h6epri:not(.rich-text-wrapper), .framer-MhPhO .framer-styles-preset-h6epri.rich-text-wrapper h2 { --framer-font-family: \"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 35px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c63c5632-2d92-4593-a80f-4d310866cb5e, #181818); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-MhPhO .framer-styles-preset-h6epri:not(.rich-text-wrapper), .framer-MhPhO .framer-styles-preset-h6epri.rich-text-wrapper h2 { --framer-font-family: \"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c63c5632-2d92-4593-a80f-4d310866cb5e, #181818); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-MhPhO\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import StaggeredCycle from\"https://framerusercontent.com/modules/4lPJUInr9BbZwDYdxSgD/MtDBVuDoZ2YXDgn8MBbB/StaggeredTextCycle_Prod.js\";import{Counter}from\"https://framerusercontent.com/modules/kLfBn9uW68rRM9Sg1wXE/kJjJwNKOtfTPTbWnsFgy/Counter1.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import BenefitItem from\"#framer/local/canvasComponent/jO__jlR0E/jO__jlR0E.js\";import Navi from\"#framer/local/canvasComponent/y8lpjkB9D/y8lpjkB9D.js\";import{PreLoader}from\"#framer/local/codeFile/KHVG9Vf/Preloader.js\";import*as sharedStyle2 from\"#framer/local/css/A5c7nVJe_/A5c7nVJe_.js\";import*as sharedStyle from\"#framer/local/css/PN1Yl910b/PN1Yl910b.js\";import*as sharedStyle1 from\"#framer/local/css/U8QVsnd1i/U8QVsnd1i.js\";import*as sharedStyle3 from\"#framer/local/css/Z7Wi5e8zS/Z7Wi5e8zS.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const VideoFonts=getFonts(Video);const PreLoaderFonts=getFonts(PreLoader);const NaviFonts=getFonts(Navi);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const StaggeredCycleFonts=getFonts(StaggeredCycle);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CounterFonts=getFonts(Counter);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const BenefitItemFonts=getFonts(BenefitItem);const breakpoints={IHw4m_0ge:\"(min-width: 810px) and (max-width: 1439px)\",j1ejVTfyk:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-5eHfI\";const variantClassNames={IHw4m_0ge:\"framer-v-mougp4\",j1ejVTfyk:\"framer-v-l0fbme\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.2,delay:4.2,duration:.6,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect={effect:animation3,tokenization:\"character\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const transition4={bounce:.2,delay:.2,duration:.5,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={delay:.5,duration:.4,ease:[.77,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation7={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:50,y:0};const transition7={delay:.1,duration:.65,ease:[.64,0,.44,.99],type:\"tween\"};const textEffect1={effect:animation7,tokenization:\"word\",transition:transition7,trigger:\"onMount\",type:\"appear\"};const animation8={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition8={delay:.05,duration:.8,ease:[.44,0,.1,1.02],type:\"tween\"};const textEffect2={effect:animation8,repeat:false,startDelay:.2,threshold:0,tokenization:\"word\",transition:transition8,trigger:\"onInView\",type:\"appear\"};const transition9={delay:0,duration:1.2,ease:[.44,0,.1,1.02],type:\"tween\"};const textEffect3={effect:animation8,repeat:false,startDelay:.1,tokenization:\"word\",transition:transition9,trigger:\"onInView\",type:\"appear\"};const textEffect4={effect:animation8,repeat:false,startDelay:.2,tokenization:\"element\",transition:transition8,trigger:\"onInView\",type:\"appear\"};const textEffect5={effect:animation8,repeat:false,startDelay:.7,tokenization:\"element\",transition:transition8,trigger:\"onInView\",type:\"appear\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"j1ejVTfyk\",Tablet:\"IHw4m_0ge\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"j1ejVTfyk\")return false;return true;};const elementId=useRouteElementId(\"s9LdDQph5\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"d3cFJWYwf\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"XQZkRfpMb\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"SxtAzPH_b\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"qwfFAYKll\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"F6BuoXrH7\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"VJNaefd1H\");const ref7=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p0inch-container hidden-l0fbme\",isAuthoredByUser:true,nodeId:\"MKKiR_7rV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PreLoader,{backgroundColor:\"rgb(55, 49, 35)\",connectedFrame:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c6hwu2-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TNCSSAvzH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"TNCSSAvzH\",isMixedBorderRadius:false,layoutId:\"TNCSSAvzH\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/zIm1AZwMf3Pf8kGHaOGYW3wOnKE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})],duration:4.2,exitAnimation:\"slideLeft\",exitSpeed:.3,height:\"100%\",id:\"MKKiR_7rV\",layoutId:\"MKKiR_7rV\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mvtqtk\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9469)`},j1ejVTfyk:{y:(componentViewport?.y||0)+0+0+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+0+200+20,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j1ejVTfyk:{animate:animation2}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-5ac6h4-container\",\"data-framer-appear-id\":\"5ac6h4\",initial:animation1,nodeId:\"TlaN3Zb0E\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{variant:\"j79gMx2Vv\"},j1ejVTfyk:{variant:\"p2hKtg7Qo\"}},children:/*#__PURE__*/_jsx(Navi,{height:\"100%\",id:\"TlaN3Zb0E\",layoutId:\"TlaN3Zb0E\",style:{height:\"100%\",width:\"100%\"},variant:\"jm4ojp42E\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j1ejVTfyk:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1yrv62k\",\"data-framer-appear-id\":\"1yrv62k\",\"data-framer-name\":\"hero_text\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a502ce\",\"data-framer-name\":\"Text Slide\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-18ika3j\",\"data-styles-preset\":\"PN1Yl910b\",style:{\"--framer-text-alignment\":\"center\"},children:\"M&A Matchmaking For\"})}),className:\"framer-1asgryk\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{animate:animation5}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1xdtwk-container\",\"data-framer-appear-id\":\"1xdtwk\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AZ06piyTF\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{font:{fontFamily:'\"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif',fontSize:\"59px\",letterSpacing:\"-0.03em\",lineHeight:\"1.2em\"}},j1ejVTfyk:{font:{fontFamily:'\"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif',fontSize:\"33px\",letterSpacing:\"0em\",lineHeight:\"1.1em\"}}},children:/*#__PURE__*/_jsx(StaggeredCycle,{alignment:\"center\",color:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",delay:.7,font:{fontFamily:'\"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif',fontSize:\"81px\",letterSpacing:\"-0.03em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"AZ06piyTF\",layoutId:\"AZ06piyTF\",loop:true,speed:10,stagger:.15,style:{width:\"100%\"},tag:\"p\",text:\"Lower-Middle Market Firms, Early Stage Companies, Capital Placement Agents, Single Family Offices, Early-Stage Private Equity, Owner-Led Companies, Cashflow Generating Ventures\",userSelect:true,width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1kab674\",\"data-framer-appear-id\":\"1kab674\",initial:animation1,optimized:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUcxLUl0YWxpYyBJdGFsaWM=\",\"--framer-font-family\":'\"TabacGlamG1-Italic Italic\", \"TabacGlamG1-Italic Italic Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-92c197dd-0cc3-40e5-b48a-ce5f994df3b0, rgb(255, 255, 255))\"},children:\"The First AI-Powered M&A Service For Sellers & Buyers\"})})},j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUcxLUl0YWxpYyBJdGFsaWM=\",\"--framer-font-family\":'\"TabacGlamG1-Italic Italic\", \"TabacGlamG1-Italic Italic Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-92c197dd-0cc3-40e5-b48a-ce5f994df3b0, rgb(255, 255, 255))\"},children:\"Capital Advisors, Deal Origination Experts & Strategic Partners Driving Enterprise Value Through M&A\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUcxLUl0YWxpYyBJdGFsaWM=\",\"--framer-font-family\":'\"TabacGlamG1-Italic Italic\", \"TabacGlamG1-Italic Italic Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-92c197dd-0cc3-40e5-b48a-ce5f994df3b0, rgb(255, 255, 255))\"},children:\"The First AI-Powered M&A Service For Sellers & Buyers\"})}),className:\"framer-1eg3830\",effect:textEffect1,fonts:[\"CUSTOM;TabacGlamG1-Italic Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j1ejVTfyk:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ofhfpa\",\"data-framer-appear-id\":\"1ofhfpa\",\"data-framer-name\":\"hero_bg\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-tg21pr\",\"data-framer-name\":\"bg_gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1875,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+0+1e3-1015),pixelHeight:3750,pixelWidth:6e3,sizes:`calc(${componentViewport?.width||\"100vw\"} + 1187px)`,src:\"https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg 6000w\"}},j1ejVTfyk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1875,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+-7),pixelHeight:3750,pixelWidth:6e3,sizes:`calc(${componentViewport?.width||\"100vw\"} * 3.7462)`,src:\"https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1875,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+0+1e3-1066),pixelHeight:3750,pixelWidth:6e3,sizes:`calc(${componentViewport?.width||\"100vw\"} + 623px)`,src:\"https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/AcU4jqg6dN7ymEv9s7jAUbKH6ps.jpg 6000w\"},className:\"framer-1kdjsm0\",\"data-framer-name\":\"San Francisco Photo\"})})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-5of36o\",\"data-framer-name\":\"who-section\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tqjb4r\",\"data-framer-name\":\"padding-global\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j9awrv\",\"data-framer-name\":\"who_text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v1goc0\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-992z3a\",\"data-framer-appear-id\":\"992z3a\",\"data-framer-name\":\"who_dot\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1f7uj77\",\"data-framer-appear-id\":\"1f7uj77\",\"data-framer-name\":\"dot\",initial:animation1,optimized:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FncmFuZGlyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Agrandir Regular\", \"Agrandir Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:\"About us\"})}),className:\"framer-fx3ue7\",effect:textEffect2,fonts:[\"CUSTOM;Agrandir Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r7v7g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUcxTWVkaXVtIFJlZ3VsYXI=\",\"--framer-font-family\":'\"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c63c5632-2d92-4593-a80f-4d310866cb5e, rgb(24, 24, 24))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Revolutionizing The M&A Landscape With Artificial Intelligence\"})})})},j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUcxTWVkaXVtIFJlZ3VsYXI=\",\"--framer-font-family\":'\"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c63c5632-2d92-4593-a80f-4d310866cb5e, rgb(24, 24, 24))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Revolutionizing The M&A Landscape With Artificial Intelligence\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUcxTWVkaXVtIFJlZ3VsYXI=\",\"--framer-font-family\":'\"TabacGlamG1Medium Regular\", \"TabacGlamG1Medium Regular Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c63c5632-2d92-4593-a80f-4d310866cb5e, rgb(24, 24, 24))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Revolutionizing The M&A Landscape With Artificial Intelligence\"})})}),className:\"framer-13z9tq0\",effect:textEffect3,fonts:[\"CUSTOM;TabacGlamG1Medium Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ikeph\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v2r6iw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11laaha\",\"data-styles-preset\":\"U8QVsnd1i\",children:\"Colossum Group is a boutique deal origination firm focused solely on mergers and acquisitions. Our AI-powered matchmaking identifies off-market companies that are not yet registered in databases, sourcing deals bigger funds aren\u2019t yet aware of. With $2.6B+ in deals advised, 650+ meetings booked and 28+ years of experience across multiple industries, we ensure access and results for M&A success.\"})}),className:\"framer-10ncsm2\",effect:textEffect4,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ipfv3h\",\"data-framer-name\":\"who_text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14yn1ln\",\"data-framer-name\":\"icon title tedt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mmv9pb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+0+0+400+216+-353.3+0+0+4),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/XBRKVFOcWIRybO61UnsL3aBAx4.png\"}},j1ejVTfyk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+700+0+0+0+600+326+-363.3+0+0+4),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/XBRKVFOcWIRybO61UnsL3aBAx4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+0+0+35+-72.3+0+0+4),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/XBRKVFOcWIRybO61UnsL3aBAx4.png\"},className:\"framer-1v9qwsk\",\"data-framer-name\":\"People\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1lx7p8n\",\"data-styles-preset\":\"A5c7nVJe_\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Sell-Side\"})})}),className:\"framer-d36ws7\",effect:textEffect3,fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11laaha\",\"data-styles-preset\":\"U8QVsnd1i\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sellers rely on our dedicated support to secure top valuations, using AI to match you with strategic and financial buyers, driving competitive bidding, and ensuring a smooth, high-profit exit. We guide lower-middle market firms to a successful exit.\"})}),className:\"framer-u6o2w6\",effect:textEffect4,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ru7wc1\",\"data-framer-name\":\"icon title tedt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13fe8do\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+0+0+400+216+106.7+0+0+4),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/TJYHlbP2ok2QGZBGpPadW2nd8HI.png\"}},j1ejVTfyk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+700+0+0+0+600+326+96.7+0+0+4),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/TJYHlbP2ok2QGZBGpPadW2nd8HI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+0+0+35+387.7+0+0+4),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/TJYHlbP2ok2QGZBGpPadW2nd8HI.png\"},className:\"framer-1aiuxmo\",\"data-framer-name\":\"Bank\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1lx7p8n\",\"data-styles-preset\":\"A5c7nVJe_\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Buy-Side\"})})}),className:\"framer-1hqj35b\",effect:textEffect3,fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11laaha\",\"data-styles-preset\":\"U8QVsnd1i\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Buyers get exclusive, off-market companies with $2M+ EBITDA, tailored to your mandate and company profile. With the power of our proprietary AI, we go past the outdated M&A landscape\u2019s manual networks and slow matchmaking to bring you under-the-radar targets who are ready to sell.\"})}),className:\"framer-2mgj2l\",effect:textEffect4,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1fkb9zj\",\"data-framer-name\":\"numbers\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-136uk7h\",\"data-framer-name\":\"padding-global\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hiyau3\",\"data-framer-name\":\"who_text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ofzrw7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:\"We don\u2019t just source targets.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:\"We don\u2019t just source targets.\"})}),className:\"framer-b10c4y\",effect:textEffect4,fonts:[\"GF;Instrument Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c63c5632-2d92-4593-a80f-4d310866cb5e, rgb(24, 24, 24))\"},children:[\"We help sellers and buyers find exclusive deals, match with \",/*#__PURE__*/_jsx(\"strong\",{children:\"the right partners,\"}),\" and close quickly with confidence. If you\u2019re ready to maximize value or grow through M&A\u2014get in touch with us below.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c63c5632-2d92-4593-a80f-4d310866cb5e, rgb(24, 24, 24))\"},children:[\"We help sellers and buyers find exclusive deals, match with \",/*#__PURE__*/_jsx(\"strong\",{children:\"the right partners,\"}),\" and close quickly with confidence. If you\u2019re ready to maximize value or grow through M&A\u2014get in touch with us below.\"]})}),className:\"framer-1crsf5m\",effect:textEffect5,fonts:[\"GF;Instrument Sans-regular\",\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dp5epl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f3e6km\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g85nos-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"choGnxxVW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{style:{width:\"100%\"},textSize:47},j1ejVTfyk:{textSize:43}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"comma\",end:650,gapSize:4,height:\"100%\",id:\"choGnxxVW\",incrementType:\"integer\",layoutId:\"choGnxxVW\",loop:false,prefixColor:\"rgb(176, 176, 176)\",prefixEnabled:true,prefixFont:{fontFamily:'\"TabacGlamG1-Regular Regular\", \"TabacGlamG1-Regular Regular Placeholder\", sans-serif'},prefixGradientAngle:187,prefixGradientColor1:\"rgb(10, 76, 245)\",prefixGradientColor2:\"rgb(61, 242, 124)\",prefixGradientEnabled:true,prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"TabacGlamG3Medium Regular\", \"TabacGlamG3Medium Regular Placeholder\", sans-serif'},speed:25,start:430,startOnViewport:true,suffixColor:\"rgb(0, 0, 0)\",suffixEnabled:true,suffixFont:{fontFamily:'\"TabacGlamG4-Bold Regular\", \"TabacGlamG4-Bold Regular Placeholder\", sans-serif'},suffixGradientAngle:104,suffixGradientColor1:\"rgb(0, 0, 0)\",suffixGradientColor2:\"rgb(255, 122, 122)\",suffixGradientEnabled:true,suffixText:\"+\",textColor:\"rgb(107, 150, 237)\",textGradientAngle:12,textGradientColor1:\"rgb(255, 122, 122)\",textGradientColor2:\"rgb(68, 54, 34)\",textGradientEnabled:true,textSize:40,width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Strategic Introductions\"})})})},j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Strategic Introductions\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Strategic Introductions\"})})}),className:\"framer-1dlpeij\",effect:textEffect3,fonts:[\"GF;Instrument Sans-regular\",\"GF;Instrument Sans-italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19k21p9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eviiid-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gcZwEmmkG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{style:{width:\"100%\"},textSize:47},j1ejVTfyk:{textSize:43}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"comma\",end:26e8,gapSize:4,height:\"100%\",id:\"gcZwEmmkG\",incrementType:\"integer\",layoutId:\"gcZwEmmkG\",loop:false,prefixColor:\"rgb(176, 176, 176)\",prefixEnabled:true,prefixFont:{fontFamily:'\"TabacGlamG1-Regular Regular\", \"TabacGlamG1-Regular Regular Placeholder\", sans-serif'},prefixGradientAngle:187,prefixGradientColor1:\"rgb(196, 101, 95)\",prefixGradientColor2:\"rgb(61, 242, 124)\",prefixGradientEnabled:true,prefixText:\"$\",restartOnViewport:false,selectedFont:{fontFamily:'\"TabacGlamG3Medium Regular\", \"TabacGlamG3Medium Regular Placeholder\", sans-serif'},speed:1,start:2599997998,startOnViewport:true,suffixColor:\"rgb(0, 0, 0)\",suffixEnabled:true,suffixFont:{fontFamily:'\"TabacGlamG4-Bold Regular\", \"TabacGlamG4-Bold Regular Placeholder\", sans-serif'},suffixGradientAngle:104,suffixGradientColor1:\"rgb(0, 0, 0)\",suffixGradientColor2:\"rgb(255, 122, 122)\",suffixGradientEnabled:true,suffixText:\"+\",textColor:\"rgb(107, 150, 237)\",textGradientAngle:12,textGradientColor1:\"rgb(255, 122, 122)\",textGradientColor2:\"rgb(68, 54, 34)\",textGradientEnabled:true,textSize:50,width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"In Deals Facilitated\"})})}),className:\"framer-u4y50p\",effect:textEffect3,fonts:[\"GF;Instrument Sans-regular\",\"GF;Instrument Sans-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10begpw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a7bevy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tzpZTTMAX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{style:{width:\"100%\"},textSize:47},j1ejVTfyk:{textSize:43}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"comma\",end:28,gapSize:0,height:\"100%\",id:\"tzpZTTMAX\",incrementType:\"integer\",layoutId:\"tzpZTTMAX\",loop:false,prefixColor:\"rgb(176, 176, 176)\",prefixEnabled:true,prefixFont:{fontFamily:'\"TabacGlamG1-Regular Regular\", \"TabacGlamG1-Regular Regular Placeholder\", sans-serif'},prefixGradientAngle:187,prefixGradientColor1:\"rgb(10, 76, 245)\",prefixGradientColor2:\"rgb(61, 242, 124)\",prefixGradientEnabled:true,prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"TabacGlamG3Medium Regular\", \"TabacGlamG3Medium Regular Placeholder\", sans-serif'},speed:90,start:2,startOnViewport:true,suffixColor:\"rgb(0, 0, 0)\",suffixEnabled:true,suffixFont:{fontFamily:'\"TabacGlamG4-Bold Regular\", \"TabacGlamG4-Bold Regular Placeholder\", sans-serif'},suffixGradientAngle:104,suffixGradientColor1:\"rgb(0, 0, 0)\",suffixGradientColor2:\"rgb(255, 122, 122)\",suffixGradientEnabled:true,suffixText:\"+\",textColor:\"rgb(107, 150, 237)\",textGradientAngle:12,textGradientColor1:\"rgb(255, 122, 122)\",textGradientColor2:\"rgb(68, 54, 34)\",textGradientEnabled:true,textSize:50,width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Years Of Experience\"})})})},j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Years Of Experience\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Years Of Experience\"})})}),className:\"framer-1sip67u\",effect:textEffect3,fonts:[\"GF;Instrument Sans-regular\",\"GF;Instrument Sans-italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1tl8ebj\",\"data-framer-name\":\"benefit-section\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ogm4w8\",\"data-framer-name\":\"padding-global\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fa4bhi\",\"data-framer-name\":\"wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iozizp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e5ymk3\",\"data-framer-name\":\"top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ztpf1p\",\"data-framer-name\":\"who_text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ziqbe6\",\"data-framer-name\":\"who_dot\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uhr014\",\"data-framer-name\":\"dot\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FncmFuZGlyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Agrandir Regular\", \"Agrandir Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-ff5d8a03-2efc-4a08-a84f-436b4c5962cc, rgba(24, 24, 24, 0.8))\"},children:\"Services\"})}),className:\"framer-1wi8llm\",fonts:[\"CUSTOM;Agrandir Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mn45dt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h6epri\",\"data-styles-preset\":\"Z7Wi5e8zS\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Why Choose Colossum Group?\"})})}),className:\"framer-8ef924\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-145q3f0\",\"data-framer-name\":\"TImeline\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2oys1y\",\"data-framer-name\":\"Timeline Row 1\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uzhl50\",\"data-framer-name\":\"Progress Bar\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUc0U2VtaUJvbGQtUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"TabacGlamG4SemiBold-Regular Regular\", \"TabacGlamG4SemiBold-Regular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"01\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUc0U2VtaUJvbGQtUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"TabacGlamG4SemiBold-Regular Regular\", \"TabacGlamG4SemiBold-Regular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"01\"})}),className:\"framer-1rs4rbd\",fonts:[\"CUSTOM;TabacGlamG4SemiBold-Regular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12k3euf\",\"data-framer-name\":\"The bar\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-300}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uk24wx\",\"data-framer-name\":\"Bar Fill\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16eied\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{y:(componentViewport?.y||0)+0+2e3+0+240+15+0+0+0+0},j1ejVTfyk:{width:`max((${componentViewport?.width||\"100vw\"} - 45px) * 0.75 - 5px, 1px)`,y:(componentViewport?.y||0)+0+1900+0+212+0+0+10+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:236,width:`calc((${componentViewport?.width||\"100vw\"} - 60px) * 0.45)`,y:(componentViewport?.y||0)+0+2155+0+180+35+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ssgkt6-container\",nodeId:\"wN_ZypExv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BenefitItem,{height:\"100%\",id:\"wN_ZypExv\",layoutId:\"wN_ZypExv\",NnFRsMwS7:\"Our boutique approach provides high-touch, tailored M&A advisory, outshining traditional deal sourcing\u2019s outdated methods like relying solely on network, banks or public data. We deliver proprietary deal flow for lower-middle market firms, PE funds, SFOs, and wealth managers.\",OM8bviDrT:\"Non-traditional deal sourcing\",pYkSuiTwK:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/gmHPYwLpNzkbqiyDObKgrVty2Bs.png\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kqzu3m\",\"data-framer-name\":\"Timeline Row 2\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uz2b57\",\"data-framer-name\":\"Progress Bar\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUc0U2VtaUJvbGQtUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"TabacGlamG4SemiBold-Regular Regular\", \"TabacGlamG4SemiBold-Regular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"02\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUc0U2VtaUJvbGQtUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"TabacGlamG4SemiBold-Regular Regular\", \"TabacGlamG4SemiBold-Regular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"02\"})}),className:\"framer-t3dihp\",fonts:[\"CUSTOM;TabacGlamG4SemiBold-Regular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r48eog\",\"data-framer-name\":\"The bar\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-300}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rsntm8\",\"data-framer-name\":\"Bar Fill\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dwpr2m\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{y:(componentViewport?.y||0)+0+2e3+0+240+15+352+0+0+0},j1ejVTfyk:{width:`max((${componentViewport?.width||\"100vw\"} - 45px) * 0.75 - 5px, 1px)`,y:(componentViewport?.y||0)+0+1900+0+212+0+349.4+10+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:236,width:`calc((${componentViewport?.width||\"100vw\"} - 60px) * 0.45)`,y:(componentViewport?.y||0)+0+2155+0+180+35+352+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-16dbrk6-container\",\"data-framer-appear-id\":\"16dbrk6\",initial:animation1,nodeId:\"gWxZ72ea9\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BenefitItem,{height:\"100%\",id:\"gWxZ72ea9\",layoutId:\"gWxZ72ea9\",NnFRsMwS7:\"With over 28+ years of M&A expertise across multiple industries, our team brings deep knowledge to every deal. Our team has advised on $2.6B+ in transactions and booked 650+ meetings, facilitating successful exits and investments matching mandates.\",OM8bviDrT:\"28+ Years of Experience\",pYkSuiTwK:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/AVwsH02Jm7AzoNIA6wxi0KNdkCE.png\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ul4i7i\",\"data-framer-name\":\"Timeline Row 3\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n9wdxm\",\"data-framer-name\":\"Progress Bar\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUc0U2VtaUJvbGQtUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"TabacGlamG4SemiBold-Regular Regular\", \"TabacGlamG4SemiBold-Regular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"03\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RhYmFjR2xhbUc0U2VtaUJvbGQtUmVndWxhciBSZWd1bGFy\",\"--framer-font-family\":'\"TabacGlamG4SemiBold-Regular Regular\", \"TabacGlamG4SemiBold-Regular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"03\"})}),className:\"framer-1h28ezx\",fonts:[\"CUSTOM;TabacGlamG4SemiBold-Regular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3nltvj\",\"data-framer-name\":\"The bar\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-300}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oo2gvw\",\"data-framer-name\":\"Bar Fill\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sewd96\",\"data-framer-name\":\"Content 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{y:(componentViewport?.y||0)+0+2e3+0+240+15+704+0+0+0},j1ejVTfyk:{width:`max((${componentViewport?.width||\"100vw\"} - 45px) * 0.75 - 5px, 1px)`,y:(componentViewport?.y||0)+0+1900+0+212+0+698.8+10+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:236,width:`calc((${componentViewport?.width||\"100vw\"} - 60px) * 0.45)`,y:(componentViewport?.y||0)+0+2155+0+180+35+704+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-8ho4wj-container\",\"data-framer-appear-id\":\"8ho4wj\",initial:animation1,nodeId:\"EO5BS5w2A\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BenefitItem,{height:\"100%\",id:\"EO5BS5w2A\",layoutId:\"EO5BS5w2A\",NnFRsMwS7:\"Unlike traditional rolodexes and networks, our proprietary AI identifies off-market companies that are not yet registered in databases, delivering exclusive deals for buyers. For sellers, we prioritize speed\u2014matching you with the correct strategic buyers quickly, driving competitive bidding, and securing top valuations fast.\",OM8bviDrT:\"Proprietary AI Sourcing Systems\",pYkSuiTwK:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/iCAcATqLSPOUNDJiFNpYqigJmUc.png\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/colossumgroup/45min\",motionChild:true,nodeId:\"ggBET5i6x\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-yp2np6 framer-lux5qc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.9px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(252, 254, 255)\"},children:\"Schedule A Meeting\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(252, 254, 255)\"},children:\"Schedule A Meeting\"})}),className:\"framer-1hxy94z\",fonts:[\"GF;Inter-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wjkyvn\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i4s3tk\",\"data-framer-name\":\"Meet the team\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h6epri\",\"data-styles-preset\":\"Z7Wi5e8zS\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Meet the Team\"})})}),className:\"framer-d7olw8\",effect:textEffect3,fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o6zyhb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ivyx3m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4056+25+61+0+0+0),pixelHeight:2316,pixelWidth:3088,positionX:\"49.6%\",positionY:\"26.6%\",sizes:\"228.841px\",src:\"https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg 3088w\"}},j1ejVTfyk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3849.3+20+61+0+0+0+0),pixelHeight:2316,pixelWidth:3088,positionX:\"49.6%\",positionY:\"26.6%\",sizes:\"198px\",src:\"https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg 3088w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3504+47+61+0+0+0),pixelHeight:2316,pixelWidth:3088,positionX:\"49.6%\",positionY:\"26.6%\",sizes:\"228.841px\",src:\"https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uvNFvk0y9zEo96wrAHOAeqDFY.jpeg 3088w\"},className:\"framer-19utbq6\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5u4foz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Qkk7Q2FsIFNhbnMvU2VtaUJvbGQvdjA=\",\"--framer-font-family\":'\"Cal Sans\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Sergio To\u0219a\"})}),className:\"framer-1iufo6n\",fonts:[\"BI;Cal Sans/SemiBold/v0\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0FncmFuZGlyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Agrandir Regular\", \"Agrandir Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.65)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Managing Partner\"})})}),className:\"framer-4kpu54\",fonts:[\"CUSTOM;Agrandir Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rqf49b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IHw4m_0ge:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4056+25+61+0+0+0),pixelHeight:3024,pixelWidth:3024,sizes:\"228.841px\",src:\"https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg 3024w\"}},j1ejVTfyk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3849.3+20+61+0+315.2252+0+0),pixelHeight:3024,pixelWidth:3024,sizes:\"198px\",src:\"https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg 3024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3504+47+61+0+0+0),pixelHeight:3024,pixelWidth:3024,sizes:\"228.841px\",src:\"https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MCutw58ayRePvyvmVEZR8gw6Q.jpg 3024w\"},className:\"framer-op37e8\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lkdmne\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Qkk7Q2FsIFNhbnMvU2VtaUJvbGQvdjA=\",\"--framer-font-family\":'\"Cal Sans\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Paul Leahu\"})}),className:\"framer-1prjz9z\",fonts:[\"BI;Cal Sans/SemiBold/v0\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0FncmFuZGlyIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Agrandir Regular\", \"Agrandir Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.65)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Creative Director\"})})}),className:\"framer-1wurem\",fonts:[\"CUSTOM;Agrandir Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m7pz4j\",\"data-framer-name\":\"Contact\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tq9eh8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{j1ejVTfyk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FncmFuZGlyIE5hcnJvdw==\",\"--framer-font-family\":'\"Agrandir Narrow\", \"Agrandir Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:[\"Colossum Group \\xa9 2025. All Right Reserved.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Navigating the process of identifying potential targets for M&A deals, whether to expand your market reach or to diversify your portfolio, is a complex and potentially risky endeavor. These ventures may present the risk of partial or total loss and are often characterized by their illiquid nature. We, at Colossum Group, are here to support you through these challenges. We strongly recommend consulting with your financial, legal, and tax advisors before embarking on such investments. For any queries regarding this process or to gain a better understanding of the roles of the parties involved, please contact us at \",/*#__PURE__*/_jsx(Link,{href:\"mailto:compliance@colossumgroup.com\",motionChild:true,nodeId:\"EMFCAhKw0\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"compliance@colossumgroup.com\"})}),\". We are committed to guiding you at every stage of your M&A journey.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FncmFuZGlyIE5hcnJvdw==\",\"--framer-font-family\":'\"Agrandir Narrow\", \"Agrandir Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:[\"Colossum Group \\xa9 2025. All Right Reserved.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Navigating the process of identifying potential targets for M&A deals, whether to expand your market reach or to diversify your portfolio, is a complex and potentially risky endeavor. These ventures may present the risk of partial or total loss and are often characterized by their illiquid nature. We, at Colossum Group, are here to support you through these challenges. We strongly recommend consulting with your financial, legal, and tax advisors before embarking on such investments. For any queries regarding this process or to gain a better understanding of the roles of the parties involved, please contact us at \",/*#__PURE__*/_jsx(Link,{href:\"mailto:compliance@colossumgroup.com\",motionChild:true,nodeId:\"EMFCAhKw0\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"compliance@colossumgroup.com\"})}),\". We are committed to guiding you at every stage of your M&A journey.\"]})}),className:\"framer-1foxdov\",fonts:[\"CUSTOM;Agrandir Narrow\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5eHfI.framer-lux5qc, .framer-5eHfI .framer-lux5qc { display: block; }\",\".framer-5eHfI.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-5eHfI .framer-1p0inch-container, .framer-5eHfI .framer-g85nos-container, .framer-5eHfI .framer-eviiid-container, .framer-5eHfI .framer-1a7bevy-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-5eHfI .framer-c6hwu2-container { height: 899px; position: relative; width: 899px; z-index: 2; }\",\".framer-5eHfI .framer-1mvtqtk { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-5eHfI .framer-5ac6h4-container { flex: none; height: 75px; left: calc(50.00000000000002% - 90% / 2); position: absolute; top: 20px; width: 90%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-5eHfI .framer-1yrv62k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 21px 0px 21px 0px; position: relative; width: 90%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-5eHfI .framer-a502ce { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-1asgryk, .framer-5eHfI .framer-13z9tq0, .framer-5eHfI .framer-1dlpeij, .framer-5eHfI .framer-u4y50p, .framer-5eHfI .framer-1sip67u, .framer-5eHfI .framer-d7olw8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5eHfI .framer-1xdtwk-container, .framer-5eHfI .framer-16dbrk6-container, .framer-5eHfI .framer-8ho4wj-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5eHfI .framer-1kab674 { align-content: center; align-items: center; background-color: #b7a37e; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 5px; overflow: hidden; padding: 0px; position: relative; width: 346px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5eHfI .framer-1eg3830 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 80%; opacity: 0.9; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5eHfI .framer-1ofhfpa { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-5eHfI .framer-tg21pr { background: linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 119, 255, 0) 82.9835304054054%); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-5eHfI .framer-1kdjsm0 { aspect-ratio: 1.6 / 1; bottom: -223px; flex: none; height: var(--framer-aspect-ratio-supported, 1290px); left: -380px; opacity: 0.33; overflow: visible; position: absolute; right: -242px; z-index: 1; }\",\".framer-5eHfI .framer-5of36o { 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: 100%; }\",\".framer-5eHfI .framer-1tqjb4r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5eHfI .framer-1j9awrv { align-content: flex-start; align-items: flex-start; background-color: #e8e8e8; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-height: 600px; max-width: 60%; min-height: 600px; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 1px; }\",\".framer-5eHfI .framer-v1goc0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-992z3a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5eHfI .framer-1f7uj77 { aspect-ratio: 1 / 1; background-color: var(--token-3974dad2-88b3-40d2-8fcc-4a6dda24f5aa, #2763ab); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: relative; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5eHfI .framer-fx3ue7, .framer-5eHfI .framer-1wi8llm, .framer-5eHfI .framer-1foxdov { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-5eHfI .framer-1r7v7g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 0px 4px 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-2ikeph { background-color: #754400; flex: none; height: 5px; overflow: hidden; position: relative; width: 190px; }\",\".framer-5eHfI .framer-1v2r6iw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-10ncsm2, .framer-5eHfI .framer-u6o2w6, .framer-5eHfI .framer-2mgj2l, .framer-5eHfI .framer-b10c4y, .framer-5eHfI .framer-1crsf5m { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5eHfI .framer-ipfv3h { align-content: flex-start; align-items: flex-start; background-color: #794a3b; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-height: 600px; max-width: 60%; min-height: 600px; overflow: visible; padding: 35px 60px 35px 60px; position: relative; width: 1px; }\",\".framer-5eHfI .framer-14yn1ln, .framer-5eHfI .framer-1ru7wc1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-1mmv9pb, .framer-5eHfI .framer-13fe8do { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 0px 4px 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-1v9qwsk, .framer-5eHfI .framer-1aiuxmo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 33px; }\",\".framer-5eHfI .framer-d36ws7, .framer-5eHfI .framer-1hqj35b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-5eHfI .framer-1fkb9zj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-136uk7h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5eHfI .framer-1hiyau3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-5eHfI .framer-1ofzrw7, .framer-5eHfI .framer-mn45dt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-1dp5epl { 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: 100%; }\",\".framer-5eHfI .framer-1f3e6km, .framer-5eHfI .framer-10begpw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-height: 150px; max-width: 350px; min-width: 350px; overflow: hidden; padding: 0px; position: relative; width: 350px; }\",\".framer-5eHfI .framer-19k21p9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-height: 150px; max-width: 450px; min-width: 450px; overflow: hidden; padding: 0px; position: relative; width: 450px; }\",\".framer-5eHfI .framer-1tl8ebj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 60px; width: 100%; }\",\".framer-5eHfI .framer-1ogm4w8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-5eHfI .framer-1fa4bhi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 11px 0px 11px 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-1iozizp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 0px 6px 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-1e5ymk3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-ztpf1p { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 50%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5eHfI .framer-ziqbe6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-1uhr014 { aspect-ratio: 1 / 1; background-color: var(--token-aa5eea28-4c8f-4d79-9f92-06a348282ce0, #2763ab); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: relative; width: 9px; }\",\".framer-5eHfI .framer-8ef924 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5eHfI .framer-145q3f0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 35px 30px 35px 30px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-2oys1y, .framer-5eHfI .framer-kqzu3m, .framer-5eHfI .framer-ul4i7i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-1uzhl50, .framer-5eHfI .framer-uz2b57, .framer-5eHfI .framer-n9wdxm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 10%; }\",\".framer-5eHfI .framer-1rs4rbd, .framer-5eHfI .framer-t3dihp, .framer-5eHfI .framer-1h28ezx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5eHfI .framer-12k3euf, .framer-5eHfI .framer-1r48eog { background-color: #d1d1d1; flex: none; height: 250px; overflow: hidden; position: relative; width: 7px; }\",\".framer-5eHfI .framer-uk24wx, .framer-5eHfI .framer-1rsntm8 { background-color: #78581e; bottom: 0px; flex: none; left: calc(50.00000000000002% - 7px / 2); position: absolute; top: 0px; width: 7px; }\",\".framer-5eHfI .framer-16eied, .framer-5eHfI .framer-1dwpr2m, .framer-5eHfI .framer-1sewd96 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 45%; }\",\".framer-5eHfI .framer-ssgkt6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5eHfI .framer-3nltvj { background-color: #d1d1d1; flex: none; height: 253px; overflow: hidden; position: relative; width: 7px; }\",\".framer-5eHfI .framer-oo2gvw { background-color: #78581e; bottom: -1px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-5eHfI .framer-yp2np6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 350px; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-5eHfI .framer-1hxy94z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; overflow: visible; position: absolute; top: 48%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 273px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5eHfI .framer-1wjkyvn { background-color: #b7a37e; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; flex: none; height: 60px; overflow: visible; position: relative; width: 315px; }\",\".framer-5eHfI .framer-i4s3tk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 47px 40px 47px 40px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-o6zyhb { 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: 50%; }\",\".framer-5eHfI .framer-ivyx3m, .framer-5eHfI .framer-1rqf49b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5eHfI .framer-19utbq6, .framer-5eHfI .framer-op37e8 { aspect-ratio: 1 / 1; border-bottom-left-radius: 22%; border-bottom-right-radius: 22%; border-top-left-radius: 22%; border-top-right-radius: 22%; box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.66); flex: none; height: var(--framer-aspect-ratio-supported, 229px); mix-blend-mode: luminosity; overflow: visible; position: relative; width: 229px; }\",\".framer-5eHfI .framer-5u4foz, .framer-5eHfI .framer-lkdmne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-1iufo6n, .framer-5eHfI .framer-4kpu54, .framer-5eHfI .framer-1prjz9z, .framer-5eHfI .framer-1wurem { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-5eHfI .framer-1m7pz4j { align-content: center; align-items: center; background-color: #3b3b3b; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: hidden; padding: 29px 40px 35px 40px; position: relative; width: 100%; }\",\".framer-5eHfI .framer-tq9eh8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-5eHfI.framer-72rtr7 { width: 810px; } .framer-5eHfI .framer-1p0inch-container, .framer-5eHfI .framer-tg21pr { order: 0; } .framer-5eHfI .framer-1mvtqtk { order: 1; } .framer-5eHfI .framer-5ac6h4-container { left: calc(50.00000000000002% - 94.69135802469137% / 2); width: 95%; } .framer-5eHfI .framer-1kab674 { height: 6px; min-height: unset; width: 155px; } .framer-5eHfI .framer-1kdjsm0 { bottom: -233px; height: var(--framer-aspect-ratio-supported, 1248px); left: -741px; order: 1; right: -446px; } .framer-5eHfI .framer-5of36o { order: 2; } .framer-5eHfI .framer-1tqjb4r { flex-direction: column; } .framer-5eHfI .framer-1j9awrv { flex: none; max-height: 400px; max-width: unset; min-height: 400px; padding: 45px 60px 45px 60px; width: 100%; } .framer-5eHfI .framer-ipfv3h { flex: none; max-height: 400px; max-width: unset; min-height: 400px; padding: 216px 60px 216px 60px; width: 100%; } .framer-5eHfI .framer-d36ws7, .framer-5eHfI .framer-1hqj35b { flex: none; width: 100%; } .framer-5eHfI .framer-1fkb9zj { order: 4; } .framer-5eHfI .framer-136uk7h { align-content: center; align-items: center; max-width: unset; padding: 0px 32px 0px 32px; width: 100%; } .framer-5eHfI .framer-1hiyau3, .framer-5eHfI .framer-1ofzrw7, .framer-5eHfI .framer-g85nos-container, .framer-5eHfI .framer-eviiid-container, .framer-5eHfI .framer-1a7bevy-container { width: 100%; } .framer-5eHfI .framer-1dp5epl { flex-direction: column; gap: 16px; } .framer-5eHfI .framer-1tl8ebj { order: 3; } .framer-5eHfI .framer-1ogm4w8 { order: 0; padding: 30px 32px 30px 32px; } .framer-5eHfI .framer-1e5ymk3 { flex-direction: column; gap: 24px; justify-content: center; } .framer-5eHfI .framer-ztpf1p { flex: none; max-width: unset; width: 100%; } .framer-5eHfI .framer-8ef924 { max-width: unset; } .framer-5eHfI .framer-145q3f0 { order: 1; padding: 15px 30px 15px 30px; } .framer-5eHfI .framer-oo2gvw { bottom: 0px; } .framer-5eHfI .framer-yp2np6 { order: 5; width: 49%; } .framer-5eHfI .framer-1wjkyvn { width: 347px; } .framer-5eHfI .framer-i4s3tk { order: 6; padding: 25px 40px 25px 40px; } .framer-5eHfI .framer-o6zyhb { width: 90%; } .framer-5eHfI .framer-1m7pz4j { order: 8; }}\",\"@media (max-width: 809px) { .framer-5eHfI.framer-72rtr7 { width: 390px; } .framer-5eHfI .framer-1mvtqtk { height: min-content; order: 1; } .framer-5eHfI .framer-5ac6h4-container, .framer-5eHfI .framer-a502ce { order: 0; } .framer-5eHfI .framer-1yrv62k { gap: 8px; height: 700px; order: 1; will-change: unset; } .framer-5eHfI .framer-1kab674 { height: 5px; min-height: unset; order: 1; width: 135px; } .framer-5eHfI .framer-1eg3830 { order: 2; } .framer-5eHfI .framer-1ofhfpa { order: 2; will-change: unset; } .framer-5eHfI .framer-tg21pr { height: 100%; top: calc(50.00000000000002% - 100.2865329512894% / 2); } .framer-5eHfI .framer-1kdjsm0 { bottom: unset; height: var(--framer-aspect-ratio-supported, 913px); left: -561px; right: unset; top: -7px; width: 375%; } .framer-5eHfI .framer-5of36o { flex-direction: column; order: 2; } .framer-5eHfI .framer-1tqjb4r { flex: none; flex-direction: column; order: 0; width: 100%; } .framer-5eHfI .framer-1j9awrv, .framer-5eHfI .framer-ztpf1p { flex: none; max-width: unset; width: 100%; } .framer-5eHfI .framer-10ncsm2, .framer-5eHfI .framer-u6o2w6, .framer-5eHfI .framer-2mgj2l, .framer-5eHfI .framer-1hiyau3, .framer-5eHfI .framer-b10c4y, .framer-5eHfI .framer-1crsf5m { width: 100%; } .framer-5eHfI .framer-ipfv3h { flex: none; max-width: unset; padding: 326px 60px 326px 60px; width: 100%; } .framer-5eHfI .framer-1fkb9zj { order: 4; padding: 5px 0px 5px 0px; } .framer-5eHfI .framer-136uk7h { order: 0; padding: 28px 16px 60px 16px; width: 100%; } .framer-5eHfI .framer-1dp5epl { flex-direction: column; } .framer-5eHfI .framer-1dlpeij, .framer-5eHfI .framer-u4y50p, .framer-5eHfI .framer-1sip67u { width: 351px; } .framer-5eHfI .framer-1tl8ebj { order: 3; padding: 0px 15px 0px 10px; } .framer-5eHfI .framer-1ogm4w8 { order: 0; padding: 16px; } .framer-5eHfI .framer-1fa4bhi { gap: 60px; } .framer-5eHfI .framer-1e5ymk3 { flex-direction: column; gap: 30px; justify-content: center; } .framer-5eHfI .framer-145q3f0 { align-content: center; align-items: center; gap: 19px; order: 1; padding: 0px; } .framer-5eHfI .framer-2oys1y, .framer-5eHfI .framer-kqzu3m, .framer-5eHfI .framer-ul4i7i { gap: 5px; padding: 10px; } .framer-5eHfI .framer-1uzhl50, .framer-5eHfI .framer-uz2b57, .framer-5eHfI .framer-n9wdxm { width: 25%; } .framer-5eHfI .framer-16eied, .framer-5eHfI .framer-1dwpr2m, .framer-5eHfI .framer-1sewd96 { flex: 1 0 0px; width: 1px; } .framer-5eHfI .framer-yp2np6 { order: 5; } .framer-5eHfI .framer-1wjkyvn { width: 296px; } .framer-5eHfI .framer-i4s3tk { order: 6; padding: 20px 20px 47px 20px; } .framer-5eHfI .framer-o6zyhb { flex-direction: column; gap: 20px; width: 100%; } .framer-5eHfI .framer-ivyx3m, .framer-5eHfI .framer-1rqf49b { flex: none; width: 100%; } .framer-5eHfI .framer-19utbq6, .framer-5eHfI .framer-op37e8 { height: var(--framer-aspect-ratio-supported, 198px); width: 198px; } .framer-5eHfI .framer-1m7pz4j { order: 7; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3989\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IHw4m_0ge\":{\"layout\":[\"fixed\",\"auto\"]},\"j1ejVTfyk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"s9LdDQph5\":{\"pattern\":\":s9LdDQph5\",\"name\":\"about\"},\"d3cFJWYwf\":{\"pattern\":\":d3cFJWYwf\",\"name\":\"about\"},\"XQZkRfpMb\":{\"pattern\":\":XQZkRfpMb\",\"name\":\"benefit\"},\"SxtAzPH_b\":{\"pattern\":\":SxtAzPH_b\",\"name\":\"tl-row-1\"},\"qwfFAYKll\":{\"pattern\":\":qwfFAYKll\",\"name\":\"tl-row-2\"},\"F6BuoXrH7\":{\"pattern\":\":F6BuoXrH7\",\"name\":\"tl-row-3\"},\"VJNaefd1H\":{\"pattern\":\":VJNaefd1H\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-5eHfI\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3989,width:1440};addFonts(FrameraugiA20Il,[{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:\"TabacGlamG1Medium Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ynudfh8frb82YSeybKvrsKhZHWs.woff2\"},{family:\"TabacGlamG1-Italic Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/CydTqgOlsuaAQJgCEzGAGs1IOc.woff2\"},{family:\"Agrandir Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/W9z8yDFznptxttNw3g6pzRB00o.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"TabacGlamG3Medium Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/g7v5JuVVH7hIDFmJc2SL3hmpbE.woff2\"},{family:\"TabacGlamG1-Regular Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/CHyN1CF6Yuhl9F3vLBwcjQFMYw.woff2\"},{family:\"TabacGlamG4-Bold Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/T59BeeOEkmkJqhF0dUpmpMenTQA.woff2\"},{family:\"Instrument Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENuu-2kywN2u7YUwU.woff2\",weight:\"400\"},{family:\"TabacGlamG4SemiBold-Regular Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/nEPgPuhRjEwtln1hXno2ZlsuJag.woff2\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Cal Sans\",source:\"builtIn\",style:\"normal\",url:\"https://framerusercontent.com/assets/P2duH7wVRqqnKRek7vOcXAA9g.woff2\",weight:\"600\"},{family:\"Agrandir Narrow\",source:\"custom\",url:\"https://framerusercontent.com/assets/IHxcAFTw6OnUgMyD4MHujjZw.woff2\"}]},...VideoFonts,...PreLoaderFonts,...NaviFonts,...StaggeredCycleFonts,...CounterFonts,...BenefitItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"3989\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"s9LdDQph5\\\":{\\\"pattern\\\":\\\":s9LdDQph5\\\",\\\"name\\\":\\\"about\\\"},\\\"d3cFJWYwf\\\":{\\\"pattern\\\":\\\":d3cFJWYwf\\\",\\\"name\\\":\\\"about\\\"},\\\"XQZkRfpMb\\\":{\\\"pattern\\\":\\\":XQZkRfpMb\\\",\\\"name\\\":\\\"benefit\\\"},\\\"SxtAzPH_b\\\":{\\\"pattern\\\":\\\":SxtAzPH_b\\\",\\\"name\\\":\\\"tl-row-1\\\"},\\\"qwfFAYKll\\\":{\\\"pattern\\\":\\\":qwfFAYKll\\\",\\\"name\\\":\\\"tl-row-2\\\"},\\\"F6BuoXrH7\\\":{\\\"pattern\\\":\\\":F6BuoXrH7\\\",\\\"name\\\":\\\"tl-row-3\\\"},\\\"VJNaefd1H\\\":{\\\"pattern\\\":\\\":VJNaefd1H\\\",\\\"name\\\":\\\"contact\\\"}}\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IHw4m_0ge\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j1ejVTfyk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_SPEED", "defaultTransition", "StaggeredTextCycleV2", "text", "speed", "delay", "font", "userSelect", "color", "alignment", "tag", "loop", "stagger", "Tag", "content", "phrase", "iteration", "setIteration", "ye", "speedFormatted", "delayFormattedMs", "speedFormattedMs", "isCanvas", "RenderTarget", "isFirstRender", "setIsFirstRender", "ue", "timeout", "interval", "prev", "u", "p", "longest", "current", "l", "sentence", "sentenceIndex", "charIndex", "segments", "segment", "char", "AnimatePresence", "segmentIndex", "originalIndex", "baseDelay", "delayInitial", "delayAnimate", "delayExit", "itemTransition", "motion", "addPropertyControls", "ControlType", "CounterStyles", "applyGradient", "text", "gradientEnabled", "angle", "color1", "color2", "gradient", "p", "Counter", "props", "start", "end", "speed", "gapSize", "prefixEnabled", "prefixText", "prefixFont", "prefixColor", "prefixGradientEnabled", "prefixGradientAngle", "prefixGradientColor1", "prefixGradientColor2", "suffixEnabled", "suffixText", "suffixFont", "suffixColor", "suffixGradientEnabled", "suffixGradientAngle", "suffixGradientColor1", "suffixGradientColor2", "textGradientEnabled", "textGradientAngle", "textGradientColor1", "textGradientColor2", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "intervalId", "formatNumber", "number", "u", "motion", "addPropertyControls", "ControlType", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useRenderTarget", "se", "RenderTarget", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "RichTextWithFX", "withFX", "RichText2", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "animation", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "body", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "OM8bviDrT", "NnFRsMwS7", "pYkSuiTwK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichTextWithFX", "css", "FramerjO__jlR0E", "withCSS", "jO_jlR0E_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapbi19mt", "args", "onTap17kywv4", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "Link", "css", "Framery8lpjkB9D", "withCSS", "y8lpjkB9D_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PreLoader", "props", "duration", "backgroundColor", "exitAnimation", "exitSpeed", "connectedFrame", "isLoading", "setIsLoading", "ye", "isVisible", "setIsVisible", "ue", "timer", "exitVariants", "containerStyle", "p", "AnimatePresence", "motion", "frame", "index", "x", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "VideoFonts", "getFonts", "Video", "PreLoaderFonts", "PreLoader", "NaviFonts", "y8lpjkB9D_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "StaggeredCycleFonts", "StaggeredTextCycleV2", "MotionDivWithOptimizedAppearEffect", "motion", "CounterFonts", "Counter", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "BenefitItemFonts", "jO_jlR0E_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "textEffect", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "animation7", "transition7", "textEffect1", "animation8", "transition8", "textEffect2", "transition9", "textEffect3", "textEffect4", "textEffect5", "animation9", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "Image2", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
