{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js", "ssg:https://framerusercontent.com/modules/44gv525avlT76onJbtn7/0SqRt0tmobZtI2BGS8Sw/yjLcbjLI3.js", "ssg:https://framerusercontent.com/modules/tqRZKddiHe5r0ROooAXE/oaHsZpNo2NovihyFFntM/gErEH3Qn5.js", "ssg:https://framerusercontent.com/modules/tGfn3F40NqTRDRmOfyDO/o3QiIu5vvrf6qMYf9waW/XVWBYTu5H.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);if(param===\"t\")searchParams.set(\"start\",value)// embeds have to use `start`, but copying via right-click usually gives you `t=`\n;}}// https://developers.google.com/youtube/player_parameters\nsearchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/8AHPXm9Y6mI\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL,null];}const searchParams=url.searchParams;if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (2ac8f15)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Icon from\"https://framerusercontent.com/modules/gGXLFANbZFKf2qU8bbVL/IkeVxdU26QTPnxOBbf6A/HoKrrnQcM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/i37Ox2WPHSM0bRP4aNgX/lWSbCjZSVlffqW2b0RVi/dioe5trRz.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/kSbJLjmFLzouB2PQTiD2/IK2xcykhjsiJh38cdeYL/zzmCUvCgD.js\";import TextIcon from\"https://framerusercontent.com/modules/c65N2yyMshhj0btI5fDh/ESWPVeN1UBjdnJeOnAmz/p_J4vPhyl.js\";const TextIconFonts=getFonts(TextIcon);const enabledGestures={YL_UCtfUK:{hover:true}};const serializationHash=\"framer-KK2FM\";const variantClassNames={YL_UCtfUK:\"framer-v-9pe5me\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const Variants=motion.create(React.Fragment);const getProps=({client,height,id,overview,width,...props})=>{return{...props,it2JpvO9O:client??props.it2JpvO9O??\"Xtremepush\",y4nNEgNqO:overview??props.y4nNEgNqO??\"How Xtremepush Reduced Ramp Time & Built SDR Confidence Without Wasting Leads\"};};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,it2JpvO9O,y4nNEgNqO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YL_UCtfUK\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9pe5me\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YL_UCtfUK\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(229, 231, 229)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"YL_UCtfUK-hover\":{backgroundColor:\"var(--token-4d6de9e0-f330-4bad-a854-1ac71bfedd11, rgb(203, 238, 211))\"}},...addPropertyOverrides({\"YL_UCtfUK-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+17,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15egm5h-container\",layoutDependency:layoutDependency,layoutId:\"b7s6eULiP-container\",nodeId:\"b7s6eULiP\",rendersWithMotion:true,scopeId:\"yjLcbjLI3\",style:{rotate:0},variants:{\"YL_UCtfUK-hover\":{rotate:-45}},children:/*#__PURE__*/_jsx(TextIcon,{fsy6v1IWO:\"rgba(35, 85, 36, 0.1)\",height:\"100%\",id:\"b7s6eULiP\",layoutId:\"b7s6eULiP\",LgT8upGMz:\"\",RMVIjR13R:\"var(--token-a5f38adb-e3a5-4c4f-b1bd-e4aedccbae62, rgb(35, 85, 36))\",style:{height:\"100%\",width:\"100%\"},variant:\"l3lsgxOy2\",width:\"100%\",YnaSlPdYq:Icon,Z8il7J076:\"var(--token-a5f38adb-e3a5-4c4f-b1bd-e4aedccbae62, rgb(35, 85, 36))\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14pi5am\",\"data-framer-name\":\"Texts\",layoutDependency:layoutDependency,layoutId:\"zCpYkrV7D\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1mivx2b\",\"data-styles-preset\":\"dioe5trRz\",children:\"Xtremepush\"})}),className:\"framer-1fxuzxg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jXvTpVzlN\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:it2JpvO9O,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-923ad3\",\"data-styles-preset\":\"zzmCUvCgD\",children:\"How Xtremepush Reduced Ramp Time & Built SDR Confidence Without Wasting Leads\"})}),className:\"framer-1jj0048\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Hwej81Pyc\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:y4nNEgNqO,verticalAlignment:\"center\",withExternalLayout:true})]})]})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KK2FM.framer-1hyxzyd, .framer-KK2FM .framer-1hyxzyd { display: block; }\",\".framer-KK2FM.framer-9pe5me { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 32px 40px 32px; position: relative; width: 347px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KK2FM .framer-15egm5h-container { flex: none; height: 24px; position: absolute; right: 17px; top: 17px; width: 24px; z-index: 1; }\",\".framer-KK2FM .framer-14pi5am { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-KK2FM .framer-1fxuzxg, .framer-KK2FM .framer-1jj0048 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-KK2FM[data-border=\"true\"]::after, .framer-KK2FM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 182\n * @framerIntrinsicWidth 347\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TN0wCZgM4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"it2JpvO9O\":\"client\",\"y4nNEgNqO\":\"overview\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameryjLcbjLI3=withCSS(Component,css,\"framer-KK2FM\");export default FrameryjLcbjLI3;FrameryjLcbjLI3.displayName=\"Customer Card (Trailing)\";FrameryjLcbjLI3.defaultProps={height:182,width:347};addPropertyControls(FrameryjLcbjLI3,{it2JpvO9O:{defaultValue:\"Xtremepush\",title:\"Client\",type:ControlType.String},y4nNEgNqO:{defaultValue:\"How Xtremepush Reduced Ramp Time & Built SDR Confidence Without Wasting Leads\",displayTextArea:false,title:\"Overview\",type:ControlType.String}});addFonts(FrameryjLcbjLI3,[{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\"}]},...TextIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryjLcbjLI3\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TN0wCZgM4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"347\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"it2JpvO9O\\\":\\\"client\\\",\\\"y4nNEgNqO\\\":\\\"overview\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"182\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yjLcbjLI3.map", "// Generated by Framer (f76946f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Matter Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Matter Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/JnSOH7RupDCN6KVnC1gWkQOKE.woff2\"}]}];export const css=['.framer-hyLlm .framer-styles-preset-1wvn2hx:not(.rich-text-wrapper), .framer-hyLlm .framer-styles-preset-1wvn2hx.rich-text-wrapper h3 { --framer-font-family: \"Matter Medium\", \"Matter Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-c17f2756-4919-4658-816b-9d03920edf0b, #0e220e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-hyLlm\";\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 (2ac8f15)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Icon from\"https://framerusercontent.com/modules/gGXLFANbZFKf2qU8bbVL/IkeVxdU26QTPnxOBbf6A/HoKrrnQcM.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js\";import EasingGradient from\"https://framerusercontent.com/modules/TqPeWj5f410fFZQ7gAgf/qKhK4bnhsmwaenV1TcQz/EasingGradient.js\";import ButtonMain from\"#framer/local/canvasComponent/eU4CFzLwd/eU4CFzLwd.js\";import CustomerCardTrailing from\"#framer/local/canvasComponent/yjLcbjLI3/yjLcbjLI3.js\";import Customers from\"#framer/local/collection/M50pbZqam/M50pbZqam.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle8 from\"#framer/local/css/aPtbsCpit/aPtbsCpit.js\";import*as sharedStyle13 from\"#framer/local/css/CxFrs_GG4/CxFrs_GG4.js\";import*as sharedStyle7 from\"#framer/local/css/dioe5trRz/dioe5trRz.js\";import*as sharedStyle11 from\"#framer/local/css/EEvyTMO3u/EEvyTMO3u.js\";import*as sharedStyle3 from\"#framer/local/css/gErEH3Qn5/gErEH3Qn5.js\";import*as sharedStyle6 from\"#framer/local/css/gvELG9CIA/gvELG9CIA.js\";import*as sharedStyle14 from\"#framer/local/css/iwv523rEU/iwv523rEU.js\";import*as sharedStyle10 from\"#framer/local/css/Kj2hFRfT7/Kj2hFRfT7.js\";import*as sharedStyle5 from\"#framer/local/css/NbRA9b33C/NbRA9b33C.js\";import*as sharedStyle1 from\"#framer/local/css/OOCEwFw35/OOCEwFw35.js\";import*as sharedStyle4 from\"#framer/local/css/QRdbZT1M_/QRdbZT1M_.js\";import*as sharedStyle9 from\"#framer/local/css/SDTupeJjW/SDTupeJjW.js\";import*as sharedStyle12 from\"#framer/local/css/VOiGDiVtE/VOiGDiVtE.js\";import*as sharedStyle from\"#framer/local/css/W4YsNXJ9K/W4YsNXJ9K.js\";import*as sharedStyle2 from\"#framer/local/css/zzmCUvCgD/zzmCUvCgD.js\";import metadataProvider from\"#framer/local/webPageMetadata/XVWBYTu5H/XVWBYTu5H.js\";const YouTubeFonts=getFonts(YouTube);const EasingGradientFonts=getFonts(EasingGradient);const ButtonMainFonts=getFonts(ButtonMain);const CustomerCardTrailingFonts=getFonts(CustomerCardTrailing);const breakpoints={ADvY3ZUSx:\"(min-width: 1200px)\",itFW55MGQ:\"(max-width: 809px)\",jKpEkw8z7:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ncgUQ\";const variantClassNames={ADvY3ZUSx:\"framer-v-12evxz0\",itFW55MGQ:\"framer-v-1wlqcwz\",jKpEkw8z7:\"framer-v-1jjmjl1\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={month:\"short\",timeZone:\"UTC\",year:\"numeric\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ADvY3ZUSx\",Phone:\"itFW55MGQ\",Tablet:\"jKpEkw8z7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ADvY3ZUSx\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"XVWBYTu5H\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"XVWBYTu5H\",data:Customers,type:\"Collection\"},right:{alias:\"nextItemId\",data:Customers,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"XVWBYTu5H\",name:\"pVfDX6mjy\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"sCSfr3dqu\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"jtTG8tVDV\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"jW1vnCed0\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"HVBgSBotB\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"yYDjf0wD2\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"vvr89Mh_2\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"ulIyXOnMN\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"BPbhen6It\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"u8sO5NftR\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"k2R9nVqZe\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"tTd6UdnHs\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"iFCFaRZH7\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"NE7JShSoj\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"uhRoGjISX\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"NOU4DyYnq\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"KlBnJpSHv\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"eHx6aT0o1\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"jeDEMAsHb\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"lqGT8zz0d\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"PS08lobGm\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"tPPQytODv\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"X8m6PU6GB\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"F6n7M69iH\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"Uc6z0hyG6\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"Q_CWIoVhk\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"hIcyKPTEc\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"bJfAe4n6Y\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"Goa7TiQ3S\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"ykUZgWYaC\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"rHtuHfI9x\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"jbXojQNoR\",type:\"Identifier\"},{collection:\"XVWBYTu5H\",name:\"LIhPahiUB\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"XVWBYTu5H\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,HVBgSBotB=getFromCurrentRouteData(\"HVBgSBotB\")??\"\",jW1vnCed0=getFromCurrentRouteData(\"jW1vnCed0\")??\"\",yYDjf0wD2=getFromCurrentRouteData(\"yYDjf0wD2\"),Uc6z0hyG6=getFromCurrentRouteData(\"Uc6z0hyG6\")??\"\",Q_CWIoVhk=getFromCurrentRouteData(\"Q_CWIoVhk\")??\"\",hIcyKPTEc=getFromCurrentRouteData(\"hIcyKPTEc\")??\"\",bJfAe4n6Y=getFromCurrentRouteData(\"bJfAe4n6Y\")??\"\",Goa7TiQ3S=getFromCurrentRouteData(\"Goa7TiQ3S\")??\"\",ykUZgWYaC=getFromCurrentRouteData(\"ykUZgWYaC\")??\"\",iBcoK6JHoTSTcYD_R3,idTSTcYD_R3,u8sO5NftR=getFromCurrentRouteData(\"u8sO5NftR\")??\"\",jbXojQNoR=getFromCurrentRouteData(\"jbXojQNoR\")??\"\",LIhPahiUB=getFromCurrentRouteData(\"LIhPahiUB\")??\"\",jtTG8tVDV=getFromCurrentRouteData(\"jtTG8tVDV\"),k2R9nVqZe=getFromCurrentRouteData(\"k2R9nVqZe\")??\"\",ulIyXOnMN=getFromCurrentRouteData(\"ulIyXOnMN\")??\"\",BPbhen6It=getFromCurrentRouteData(\"BPbhen6It\")??\"\",tTd6UdnHs=getFromCurrentRouteData(\"tTd6UdnHs\")??\"\",iFCFaRZH7=getFromCurrentRouteData(\"iFCFaRZH7\")??\"\",tPPQytODv=getFromCurrentRouteData(\"tPPQytODv\")??\"\",rHtuHfI9x=getFromCurrentRouteData(\"rHtuHfI9x\"),NE7JShSoj=getFromCurrentRouteData(\"NE7JShSoj\")??\"\",uhRoGjISX=getFromCurrentRouteData(\"uhRoGjISX\")??\"\",NOU4DyYnq=getFromCurrentRouteData(\"NOU4DyYnq\")??\"\",KlBnJpSHv=getFromCurrentRouteData(\"KlBnJpSHv\")??\"\",X8m6PU6GB=getFromCurrentRouteData(\"X8m6PU6GB\")??\"\",eHx6aT0o1=getFromCurrentRouteData(\"eHx6aT0o1\")??\"\",jeDEMAsHb=getFromCurrentRouteData(\"jeDEMAsHb\")??\"\",lqGT8zz0d=getFromCurrentRouteData(\"lqGT8zz0d\")??\"\",PS08lobGm=getFromCurrentRouteData(\"PS08lobGm\")??\"\",F6n7M69iH=getFromCurrentRouteData(\"F6n7M69iH\")??\"\",nextItemId=getFromCurrentRouteData(\"nextItemId\"),iBcoK6JHoyNSzcbb1x,sCSfr3dquyNSzcbb1x,ulIyXOnMNyNSzcbb1x,idyNSzcbb1x,pVfDX6mjy=getFromCurrentRouteData(\"pVfDX6mjy\")??0,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(jW1vnCed0);const visible1=negate(isSet(jW1vnCed0));const activeLocaleCode=useLocaleCode();const textContent=toDateString(jtTG8tVDV,activeLocaleCode);const router=useRouter();const visible2=isSet(lqGT8zz0d);const visible3=isSet(nextItemId);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ADvY3ZUSx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(249, 249, 248); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-12evxz0\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kqz066\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mf5a7u\",\"data-framer-name\":\"Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bo642k\",\"data-framer-name\":\"Texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zc2xs0\",\"data-styles-preset\":\"W4YsNXJ9K\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"How Xtremepush Reduced Ramp Time & Built SDR Confidence Without Wasting Leads\"})}),className:\"framer-anr2uh\",fonts:[\"Inter\"],text:HVBgSBotB,verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14pfowb-container\",isModuleExternal:true,nodeId:\"W8keBZ9QR\",scopeId:\"XVWBYTu5H\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"W8keBZ9QR\",isMixedBorderRadius:false,isRed:false,layoutId:\"W8keBZ9QR\",play:\"Off\",shouldMute:true,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:16,topRightRadius:16,url:jW1vnCed0,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ec1sv\",\"data-framer-name\":\"Hero Metrics\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y3i1qz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bd5b85\",\"data-framer-name\":\"Card 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oy8nq7\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+112+0+0+348.2+0+0+0+0+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,...toResponsiveImage(yYDjf0wD2),...{positionX:\"center\",positionY:\"top\"}}},jKpEkw8z7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+176+0+0+348.2+0+183+0+0),sizes:\"736px\",...toResponsiveImage(yYDjf0wD2),...{positionX:\"center\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+176+0+0+348.2+0+183+0+0),sizes:\"1000px\",...toResponsiveImage(yYDjf0wD2),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-1kya5y\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e0b8s0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cI28R6LpI\",scopeId:\"XVWBYTu5H\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{angle:90}},children:/*#__PURE__*/_jsx(EasingGradient,{angle:0,easeCustom:\"0.645, 0.045, 0.355, 1\",easeString:true,easing:\"ease-out\",from:\"rgba(0, 0, 17, 0.5)\",height:\"100%\",id:\"cI28R6LpI\",layoutId:\"cI28R6LpI\",mode:\"hsla\",radius:24,stops:100,style:{height:\"100%\",width:\"100%\"},to:\"rgba(0, 0, 17, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i0uror\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TSTcYD_R3\",data:Customers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"TSTcYD_R3\",name:\"iBcoK6JHo\",type:\"Identifier\"},{collection:\"TSTcYD_R3\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({iBcoK6JHo:iBcoK6JHoTSTcYD_R3,id:idTSTcYD_R3},index)=>{iBcoK6JHoTSTcYD_R3??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TSTcYD_R3-${idTSTcYD_R3}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{iBcoK6JHo:iBcoK6JHoTSTcYD_R3},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dad0r6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lvalea\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kkz9zt\",\"data-framer-name\":\"Metrics 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16v0u1l\",\"data-framer-name\":\"User SInce\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBCb2xk\",\"--framer-font-family\":'\"Matter Bold\", \"Matter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"95%\"})})},jKpEkw8z7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBCb2xk\",\"--framer-font-family\":'\"Matter Bold\", \"Matter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"95%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBCb2xk\",\"--framer-font-family\":'\"Matter Bold\", \"Matter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"95%\"})}),className:\"framer-qc1xq9\",\"data-framer-name\":\"Solidroad user since\",fonts:[\"CUSTOM;Matter Bold\"],text:Uc6z0hyG6,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lv8pij\",\"data-styles-preset\":\"OOCEwFw35\",style:{\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"reps felt training \u2191 product knowledge\"})}),className:\"framer-1fsveqv\",\"data-framer-name\":\"July 2024\",fonts:[\"Inter\"],text:Q_CWIoVhk,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dtf7e9\",\"data-framer-name\":\"Metrics 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k4zev4\",\"data-framer-name\":\"User SInce\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBCb2xk\",\"--framer-font-family\":'\"Matter Bold\", \"Matter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"98.5%\"})})},jKpEkw8z7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBCb2xk\",\"--framer-font-family\":'\"Matter Bold\", \"Matter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"98.5%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBCb2xk\",\"--framer-font-family\":'\"Matter Bold\", \"Matter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"98.5%\"})}),className:\"framer-w8lq5p\",\"data-framer-name\":\"Solidroad user since\",fonts:[\"CUSTOM;Matter Bold\"],text:hIcyKPTEc,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lv8pij\",\"data-styles-preset\":\"OOCEwFw35\",style:{\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"feel more confident\"})}),className:\"framer-epiyuy\",\"data-framer-name\":\"July 2024\",fonts:[\"Inter\"],text:bJfAe4n6Y,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6wxveg\",\"data-framer-name\":\"Metrics 3\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t4csid\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h99u6q\",\"data-framer-name\":\"User SInce\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBCb2xk\",\"--framer-font-family\":'\"Matter Bold\", \"Matter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"94%\"})})},jKpEkw8z7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBCb2xk\",\"--framer-font-family\":'\"Matter Bold\", \"Matter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"94%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBCb2xk\",\"--framer-font-family\":'\"Matter Bold\", \"Matter Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"94%\"})}),className:\"framer-uoiyjf\",\"data-framer-name\":\"Solidroad user since\",fonts:[\"CUSTOM;Matter Bold\"],text:Goa7TiQ3S,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lv8pij\",\"data-styles-preset\":\"OOCEwFw35\",style:{\"--framer-text-color\":\"var(--token-85d3183b-ff56-4595-b2c4-095cbe23b3f4, rgb(255, 255, 255))\"},children:\"would recommend to a colleague\"})}),className:\"framer-1i3bjlk\",\"data-framer-name\":\"July 2024\",fonts:[\"Inter\"],text:ykUZgWYaC,verticalAlignment:\"top\",withExternalLayout:true})]})})})]})})})},idTSTcYD_R3);})})})})})]})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqruyx\",\"data-framer-name\":\"Resource Texts\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y1408u\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gq9dju\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uyjn3n\",\"data-framer-name\":\"Industry\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-923ad3\",\"data-styles-preset\":\"zzmCUvCgD\",style:{\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"Industry\"})}),className:\"framer-z6f1ck\",\"data-framer-name\":\"Industry\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lv8pij\",\"data-styles-preset\":\"OOCEwFw35\",children:\"Customer Engagement & Marketing Automation\"})}),className:\"framer-s40shj\",\"data-framer-name\":\"Outsourcing & Operations Support\",fonts:[\"Inter\"],text:u8sO5NftR,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n26zz\",\"data-framer-name\":\"Cutsomer\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-923ad3\",\"data-styles-preset\":\"zzmCUvCgD\",style:{\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"Customer\"})}),className:\"framer-fv2rmm\",\"data-framer-name\":\"Role\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lv8pij\",\"data-styles-preset\":\"OOCEwFw35\",children:\"Mark Quinn, Head of Enablement\"})}),className:\"framer-14zo952\",\"data-framer-name\":\"Christina Sadler, Director of Training\",fonts:[\"Inter\"],text:jbXojQNoR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lv8pij\",\"data-styles-preset\":\"OOCEwFw35\",children:\"Mark Quinn, Head of Enablement\"})}),className:\"framer-1wh704e\",\"data-framer-name\":\"Christina Sadler, Director of Training\",fonts:[\"Inter\"],text:LIhPahiUB,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wi41c1\",\"data-framer-name\":\"User SInce\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-923ad3\",\"data-styles-preset\":\"zzmCUvCgD\",style:{\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"User since\"})}),className:\"framer-1ez34w1\",\"data-framer-name\":\"Solidroad user since\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lv8pij\",\"data-styles-preset\":\"OOCEwFw35\",children:\"Aug 2024\"})}),className:\"framer-15cbsmo\",\"data-framer-name\":\"July 2024\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1emnzpb\",\"data-framer-name\":\"Website\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:k2R9nVqZe,implicitPathVariables:undefined},{href:k2R9nVqZe,implicitPathVariables:undefined},{href:k2R9nVqZe,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{y:(componentViewport?.y||0)+0+647.2+16+0+0+0+0+221.5+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+671.2+72+0+0+0+205.5+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qxcbkm-container\",nodeId:\"F_5LOgKxD\",scopeId:\"XVWBYTu5H\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{P6YzK21Wu:resolvedLinks[2]},jKpEkw8z7:{P6YzK21Wu:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonMain,{CLV5fuDPs:\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\",fXGn7kl8z:\"rgba(255, 255, 255, 0.3)\",height:\"100%\",id:\"F_5LOgKxD\",kKVajNHtC:true,layoutId:\"F_5LOgKxD\",ns3q4dXhf:\"var(--token-76940339-ac85-4370-8448-b9722b085699, rgb(246, 208, 69))\",P6YzK21Wu:resolvedLinks[0],PQeGX9NEP:\"Visit Website\",style:{height:\"100%\"},UKM_rWxHd:Icon,variant:\"IGhQQM36H\",width:\"100%\",xCLxy6lvC:\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\",zk7d7YSJF:true})})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6nfqwv\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-trlky4\",\"data-framer-name\":\"p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18dprox\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1wvn2hx\",\"data-styles-preset\":\"gErEH3Qn5\",children:\"Xtremepush provides customer engagement and marketing automation solutions, helping businesses personalize and optimize customer interactions.\"})}),className:\"framer-1kq8529\",fonts:[\"Inter\"],text:ulIyXOnMN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-u4uy5k\",\"data-styles-preset\":\"QRdbZT1M_\",style:{\"--framer-text-color\":\"rgb(14, 34, 14)\"},children:\"Xtremepush needed a way to train new SDRs efficiently without wasting real leads. Traditional roleplays required too much senior team involvement, and relying on unqualified leads for practice was inefficient. By introducing structured sales simulations, they shortened ramp time, eliminated lead waste, and built rep confidence before they engaged with real prospects.\"})}),className:\"framer-1bn9u3p\",fonts:[\"Inter\"],text:BPbhen6It,verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gup8y\",\"data-framer-name\":\"Resource Texts\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10laovi\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ddf53\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBSZWd1bGFy\",\"--framer-font-family\":'\"Matter Regular\", \"Matter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12.29px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"var(--token-8b4b9d6f-3612-499a-8db6-1c67e202376e, rgb(123, 153, 124))\",\"--framer-text-transform\":\"uppercase\"},children:\"The challenge\"})}),className:\"framer-j7wfg4\",fonts:[\"CUSTOM;Matter Regular\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tdv0sp\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wrg44y\",\"data-framer-name\":\"p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hdjmr1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1wvn2hx\",\"data-styles-preset\":\"gErEH3Qn5\",children:\"Training SDRs Without Losing Leads\"})}),className:\"framer-kabu18\",fonts:[\"Inter\"],text:tTd6UdnHs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"nKaUWKLH9\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"Y9__hPihb\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:iFCFaRZH7,className:\"framer-8fln28\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-q5a337\",blockquote:\"framer-styles-preset-1tuwapw\",h1:\"framer-styles-preset-zc2xs0\",h2:\"framer-styles-preset-cmxmru\",h3:\"framer-styles-preset-brwft7\",h4:\"framer-styles-preset-1mivx2b\",h5:\"framer-styles-preset-xtn18l\",h6:\"framer-styles-preset-1yfpdhz\",img:\"framer-styles-preset-3o3a1y\",p:\"framer-styles-preset-u4uy5k\",table:\"framer-styles-preset-h1lif8\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ym5wdw\",\"data-framer-name\":\"Quote Section 01\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fc22wp\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cmxmru\",\"data-styles-preset\":\"NbRA9b33C\",children:'\"We needed a way to train SDRs without risking valuable leads. Internal roleplays were time-consuming, and our sales ramp was too slow.\"'})}),className:\"framer-1t2pcj6\",fonts:[\"Inter\"],text:tPPQytODv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9thi8n\",\"data-framer-name\":\"Authour\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l65ga6\",\"data-framer-name\":\"Author\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CF_w528Es\",data:Customers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q5eyk7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478.148+80+0+48+71.6+0),sizes:\"48px\",...toResponsiveImage(rHtuHfI9x)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1238.3+96+0+48+71.6+0),sizes:\"48px\",...toResponsiveImage(rHtuHfI9x)},className:\"framer-12fx1z8\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ogu769\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19eola3\",\"data-styles-preset\":\"iwv523rEU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"Mark Quinn\"})}),className:\"framer-x3zbj5\",fonts:[\"Inter\"],text:jbXojQNoR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19eola3\",\"data-styles-preset\":\"iwv523rEU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"Head of Training\"})}),className:\"framer-8fz66y\",fonts:[\"Inter\"],text:LIhPahiUB,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m3ntlt\",\"data-framer-name\":\"Resource Texts\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ua1zwa\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1upx0tr\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBSZWd1bGFy\",\"--framer-font-family\":'\"Matter Regular\", \"Matter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12.29px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"var(--token-8b4b9d6f-3612-499a-8db6-1c67e202376e, rgb(123, 153, 124))\",\"--framer-text-transform\":\"uppercase\"},children:\"WHY SOLIDROAD?\"})}),className:\"framer-1n0f0v9\",fonts:[\"CUSTOM;Matter Regular\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qz9hf5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mzlmdw\",\"data-framer-name\":\"p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a9ioji\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1wvn2hx\",\"data-styles-preset\":\"gErEH3Qn5\",children:\"Finding a More Scalable Training Approach\"})}),className:\"framer-1tztkyv\",fonts:[\"Inter\"],text:NE7JShSoj,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"nKaUWKLH9\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"Y9__hPihb\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:uhRoGjISX,className:\"framer-f4ywyp\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-q5a337\",blockquote:\"framer-styles-preset-1tuwapw\",h1:\"framer-styles-preset-zc2xs0\",h2:\"framer-styles-preset-cmxmru\",h3:\"framer-styles-preset-brwft7\",h4:\"framer-styles-preset-1mivx2b\",h5:\"framer-styles-preset-xtn18l\",h6:\"framer-styles-preset-1yfpdhz\",img:\"framer-styles-preset-3o3a1y\",p:\"framer-styles-preset-u4uy5k\",table:\"framer-styles-preset-h1lif8\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tq4vt8\",\"data-framer-name\":\"Resource Texts\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gbm2b2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a6bud3\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBSZWd1bGFy\",\"--framer-font-family\":'\"Matter Regular\", \"Matter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12.29px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"var(--token-8b4b9d6f-3612-499a-8db6-1c67e202376e, rgb(123, 153, 124))\",\"--framer-text-transform\":\"uppercase\"},children:\"SOLUTION\"})}),className:\"framer-15t5qcw\",fonts:[\"CUSTOM;Matter Regular\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dlw7g4\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v5xnwi\",\"data-framer-name\":\"p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hblfd2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1wvn2hx\",\"data-styles-preset\":\"gErEH3Qn5\",children:\"How Xtremepush Transformed SDR Training\"})}),className:\"framer-1c05xjp\",fonts:[\"Inter\"],text:NOU4DyYnq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"nKaUWKLH9\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"Y9__hPihb\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:KlBnJpSHv,className:\"framer-ijckx\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-q5a337\",blockquote:\"framer-styles-preset-1tuwapw\",h1:\"framer-styles-preset-zc2xs0\",h2:\"framer-styles-preset-cmxmru\",h3:\"framer-styles-preset-brwft7\",h4:\"framer-styles-preset-1mivx2b\",h5:\"framer-styles-preset-xtn18l\",h6:\"framer-styles-preset-1yfpdhz\",img:\"framer-styles-preset-3o3a1y\",p:\"framer-styles-preset-u4uy5k\",table:\"framer-styles-preset-h1lif8\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j5k9lr\",\"data-framer-name\":\"Quote Section 02\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wbaqpa\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cmxmru\",\"data-styles-preset\":\"NbRA9b33C\",children:'\"Practice leads to confidence, and confidence leads to success in SDRs\"'})}),className:\"framer-pr71x4\",fonts:[\"Inter\"],text:X8m6PU6GB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-277qxd\",\"data-framer-name\":\"Authour\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b9om3h\",\"data-framer-name\":\"Author\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UxYvpU53y\",data:Customers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18oikkf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2342.444+80+0+48+71.6+0),sizes:\"48px\",...toResponsiveImage(rHtuHfI9x)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2041.1+96+0+48+71.6+0),sizes:\"48px\",...toResponsiveImage(rHtuHfI9x)},className:\"framer-dzc472\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p9qvmi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19eola3\",\"data-styles-preset\":\"iwv523rEU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"Mark Quinn\"})}),className:\"framer-9hnebb\",fonts:[\"Inter\"],text:jbXojQNoR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19eola3\",\"data-styles-preset\":\"iwv523rEU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"Head of Training\"})}),className:\"framer-10g7wno\",fonts:[\"Inter\"],text:LIhPahiUB,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fbg16f\",\"data-framer-name\":\"Resource Texts\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mr0p0f\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-e0zzea\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBSZWd1bGFy\",\"--framer-font-family\":'\"Matter Regular\", \"Matter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12.29px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"var(--token-8b4b9d6f-3612-499a-8db6-1c67e202376e, rgb(123, 153, 124))\",\"--framer-text-transform\":\"uppercase\"},children:\"RESULT\"})}),className:\"framer-ojs2f9\",fonts:[\"CUSTOM;Matter Regular\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g7f8q1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-j8wyiy\",\"data-framer-name\":\"p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xmtgyi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1wvn2hx\",\"data-styles-preset\":\"gErEH3Qn5\",children:\"Faster Ramp Time & No More Wasted Leads\"})}),className:\"framer-g98p9f\",fonts:[\"Inter\"],text:eHx6aT0o1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"nKaUWKLH9\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"Y9__hPihb\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:jeDEMAsHb,className:\"framer-10387rr\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-q5a337\",blockquote:\"framer-styles-preset-1tuwapw\",h1:\"framer-styles-preset-zc2xs0\",h2:\"framer-styles-preset-cmxmru\",h3:\"framer-styles-preset-brwft7\",h4:\"framer-styles-preset-1mivx2b\",h5:\"framer-styles-preset-xtn18l\",h6:\"framer-styles-preset-1yfpdhz\",img:\"framer-styles-preset-3o3a1y\",p:\"framer-styles-preset-u4uy5k\",table:\"framer-styles-preset-h1lif8\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e6t59z\",\"data-framer-name\":\"Resource Texts\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17pj7ov\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14qkfaq\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01hdHRlciBSZWd1bGFy\",\"--framer-font-family\":'\"Matter Regular\", \"Matter Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12.29px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-color\":\"var(--token-8b4b9d6f-3612-499a-8db6-1c67e202376e, rgb(123, 153, 124))\",\"--framer-text-transform\":\"uppercase\"},children:\"CONCLUSION\"})}),className:\"framer-1j60iha\",fonts:[\"CUSTOM;Matter Regular\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mtn6yj\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-whh1dp\",\"data-framer-name\":\"p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10iu8zk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1wvn2hx\",\"data-styles-preset\":\"gErEH3Qn5\",children:\"The Future of SDR Training at Xtremepush\"})}),className:\"framer-xwuddd\",fonts:[\"Inter\"],text:lqGT8zz0d,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"nKaUWKLH9\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"Y9__hPihb\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:PS08lobGm,className:\"framer-h9gszd\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-q5a337\",blockquote:\"framer-styles-preset-1tuwapw\",h1:\"framer-styles-preset-zc2xs0\",h2:\"framer-styles-preset-cmxmru\",h3:\"framer-styles-preset-brwft7\",h4:\"framer-styles-preset-1mivx2b\",h5:\"framer-styles-preset-xtn18l\",h6:\"framer-styles-preset-1yfpdhz\",img:\"framer-styles-preset-3o3a1y\",p:\"framer-styles-preset-u4uy5k\",table:\"framer-styles-preset-h1lif8\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-avgpga\",\"data-framer-name\":\"Quote Section 02\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jwjrvd\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cmxmru\",\"data-styles-preset\":\"NbRA9b33C\",children:'\"We\u2019ve completely changed how we train SDRs\u2014more efficient, more effective, and built for scale\"'})}),className:\"framer-1ukf38m\",fonts:[\"Inter\"],text:F6n7M69iH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mrhpx2\",\"data-framer-name\":\"Authour\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-yrqjno\",\"data-framer-name\":\"Author\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UACmY3XyF\",data:Customers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e4awwq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2918.392+80+0+48+71.6+0),sizes:\"48px\",...toResponsiveImage(rHtuHfI9x)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2602.3+96+0+48+71.6+0),sizes:\"48px\",...toResponsiveImage(rHtuHfI9x)},className:\"framer-qca6qu\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10kv917\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19eola3\",\"data-styles-preset\":\"iwv523rEU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"Mark Quinn\"})}),className:\"framer-gqmsiz\",fonts:[\"Inter\"],text:jbXojQNoR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19eola3\",\"data-styles-preset\":\"iwv523rEU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"Head of Training\"})}),className:\"framer-33p883\",fonts:[\"Inter\"],text:LIhPahiUB,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12toxdj\",\"data-framer-name\":\"More Case Studies\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qp19zx\",\"data-framer-name\":\"Texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zc2xs0\",\"data-styles-preset\":\"W4YsNXJ9K\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c17f2756-4919-4658-816b-9d03920edf0b, rgb(14, 34, 14))\"},children:\"More case studies\"})}),className:\"framer-1tsb0t6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jwe0pe\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-145y540\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1buc6g5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yNSzcbb1x\",data:Customers,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"yNSzcbb1x\",name:\"iBcoK6JHo\",type:\"Identifier\"},{collection:\"yNSzcbb1x\",name:\"sCSfr3dqu\",type:\"Identifier\"},{collection:\"yNSzcbb1x\",name:\"ulIyXOnMN\",type:\"Identifier\"},{collection:\"yNSzcbb1x\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"yNSzcbb1x\",name:\"pVfDX6mjy\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:pVfDX6mjy},type:\"BinaryOperation\"},operator:\"or\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"yNSzcbb1x\",name:\"pVfDX6mjy\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:pVfDX6mjy},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({iBcoK6JHo:iBcoK6JHoyNSzcbb1x,id:idyNSzcbb1x,sCSfr3dqu:sCSfr3dquyNSzcbb1x,ulIyXOnMN:ulIyXOnMNyNSzcbb1x},index1)=>{iBcoK6JHoyNSzcbb1x??=\"\";sCSfr3dquyNSzcbb1x??=\"\";ulIyXOnMNyNSzcbb1x??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`yNSzcbb1x-${idyNSzcbb1x}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{iBcoK6JHo:iBcoK6JHoyNSzcbb1x},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{iBcoK6JHo:iBcoK6JHoyNSzcbb1x},webPageId:\"XVWBYTu5H\"},motionChild:true,nodeId:\"DNHg_OipB\",openInNewTab:false,scopeId:\"XVWBYTu5H\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1utm7sx framer-v5uzb3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{itFW55MGQ:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 32px, 1px)`,y:(componentViewport?.y||0)+0+3277.992+80+113.2+0+0+0+0+0},jKpEkw8z7:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1000px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:184,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px), 1px)`,y:(componentViewport?.y||0)+0+3017.9+0+113.2+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b0avls-container\",nodeId:\"D42MxGJTO\",scopeId:\"XVWBYTu5H\",children:/*#__PURE__*/_jsx(CustomerCardTrailing,{height:\"100%\",id:\"D42MxGJTO\",it2JpvO9O:sCSfr3dquyNSzcbb1x,layoutId:\"D42MxGJTO\",style:{width:\"100%\"},width:\"100%\",y4nNEgNqO:ulIyXOnMNyNSzcbb1x})})})})})})})},idyNSzcbb1x);})})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ncgUQ.framer-v5uzb3, .framer-ncgUQ .framer-v5uzb3 { display: block; }\",\".framer-ncgUQ.framer-12evxz0 { align-content: center; align-items: center; background-color: #f9f9f8; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ncgUQ .framer-1kqz066 { align-content: center; align-items: center; background-color: #f9f9f9; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 176px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-mf5a7u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ncgUQ .framer-bo642k, .framer-ncgUQ .framer-1hdjmr1, .framer-ncgUQ .framer-a9ioji, .framer-ncgUQ .framer-hblfd2, .framer-ncgUQ .framer-xmtgyi, .framer-ncgUQ .framer-10iu8zk, .framer-ncgUQ .framer-qp19zx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-anr2uh, .framer-ncgUQ .framer-1tsb0t6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 768px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-ncgUQ .framer-14pfowb-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 563px); max-width: 1000px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-12ec1sv { flex: none; height: 366px; overflow: hidden; position: relative; width: 1000px; }\",\".framer-ncgUQ .framer-1y3i1qz { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-ncgUQ .framer-bd5b85 { align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 3 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 366px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ncgUQ .framer-1oy8nq7 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-ncgUQ .framer-1kya5y { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-ncgUQ .framer-1e0b8s0-container { bottom: 0px; flex: none; left: 0px; opacity: 0.1; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-ncgUQ .framer-i0uror { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; justify-content: center; left: 0px; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-ncgUQ .framer-dad0r6 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 366px; justify-content: space-between; padding: 0px 32px 32px 32px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-1lvalea { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 101px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ncgUQ .framer-kkz9zt, .framer-ncgUQ .framer-1dtf7e9 { align-content: flex-start; align-items: flex-start; 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: min-content; z-index: 1; }\",\".framer-ncgUQ .framer-16v0u1l, .framer-ncgUQ .framer-1k4zev4, .framer-ncgUQ .framer-1h99u6q, .framer-ncgUQ .framer-1uyjn3n, .framer-ncgUQ .framer-n26zz, .framer-ncgUQ .framer-1wi41c1 { align-content: flex-start; align-items: flex-start; 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: min-content; }\",\".framer-ncgUQ .framer-qc1xq9, .framer-ncgUQ .framer-1fsveqv, .framer-ncgUQ .framer-w8lq5p, .framer-ncgUQ .framer-epiyuy, .framer-ncgUQ .framer-uoiyjf, .framer-ncgUQ .framer-1i3bjlk, .framer-ncgUQ .framer-z6f1ck, .framer-ncgUQ .framer-fv2rmm, .framer-ncgUQ .framer-1ez34w1, .framer-ncgUQ .framer-j7wfg4, .framer-ncgUQ .framer-1n0f0v9, .framer-ncgUQ .framer-15t5qcw, .framer-ncgUQ .framer-ojs2f9, .framer-ncgUQ .framer-1j60iha { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ncgUQ .framer-6wxveg { align-content: flex-end; align-items: flex-end; 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: min-content; z-index: 1; }\",\".framer-ncgUQ .framer-t4csid { align-content: flex-start; align-items: flex-start; 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: min-content; }\",\".framer-ncgUQ .framer-cqruyx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 72px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-y1408u, .framer-ncgUQ .framer-10laovi, .framer-ncgUQ .framer-1ua1zwa, .framer-ncgUQ .framer-gbm2b2, .framer-ncgUQ .framer-1mr0p0f, .framer-ncgUQ .framer-17pj7ov { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ncgUQ .framer-gq9dju { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-s40shj, .framer-ncgUQ .framer-14zo952, .framer-ncgUQ .framer-1wh704e, .framer-ncgUQ .framer-15cbsmo { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre; width: auto; }\",\".framer-ncgUQ .framer-1emnzpb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-ncgUQ .framer-1qxcbkm-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-ncgUQ .framer-6nfqwv, .framer-ncgUQ .framer-1tdv0sp, .framer-ncgUQ .framer-qz9hf5, .framer-ncgUQ .framer-dlw7g4, .framer-ncgUQ .framer-g7f8q1, .framer-ncgUQ .framer-mtn6yj { align-content: center; align-items: center; display: flex; flex: 1.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ncgUQ .framer-trlky4, .framer-ncgUQ .framer-1wrg44y, .framer-ncgUQ .framer-mzlmdw, .framer-ncgUQ .framer-v5xnwi, .framer-ncgUQ .framer-j8wyiy, .framer-ncgUQ .framer-whh1dp { align-content: flex-start; align-items: flex-start; 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-ncgUQ .framer-18dprox { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-1kq8529, .framer-ncgUQ .framer-kabu18, .framer-ncgUQ .framer-1t2pcj6, .framer-ncgUQ .framer-1tztkyv, .framer-ncgUQ .framer-1c05xjp, .framer-ncgUQ .framer-pr71x4, .framer-ncgUQ .framer-g98p9f, .framer-ncgUQ .framer-xwuddd, .framer-ncgUQ .framer-1ukf38m { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-1bn9u3p { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; opacity: 0.8; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-16gup8y, .framer-ncgUQ .framer-tq4vt8, .framer-ncgUQ .framer-1e6t59z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 96px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-19ddf53, .framer-ncgUQ .framer-1upx0tr, .framer-ncgUQ .framer-a6bud3, .framer-ncgUQ .framer-e0zzea, .framer-ncgUQ .framer-14qkfaq { --border-bottom-width: 1px; --border-color: var(--token-5cf15957-86be-48db-9ab7-eb1fed34486e, #d3ddd3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: min-content; }\",\".framer-ncgUQ .framer-8fln28, .framer-ncgUQ .framer-f4ywyp, .framer-ncgUQ .framer-ijckx, .framer-ncgUQ .framer-10387rr, .framer-ncgUQ .framer-h9gszd { --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-ncgUQ .framer-ym5wdw, .framer-ncgUQ .framer-1j5k9lr, .framer-ncgUQ .framer-avgpga { 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: 96px 40px 96px 40px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-fc22wp, .framer-ncgUQ .framer-1wbaqpa, .framer-ncgUQ .framer-jwjrvd { --border-bottom-width: 1px; --border-color: var(--token-5cf15957-86be-48db-9ab7-eb1fed34486e, #d3ddd3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-9thi8n, .framer-ncgUQ .framer-277qxd, .framer-ncgUQ .framer-1mrhpx2 { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-ncgUQ .framer-1l65ga6, .framer-ncgUQ .framer-1b9om3h, .framer-ncgUQ .framer-yrqjno { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-ncgUQ .framer-q5eyk7, .framer-ncgUQ .framer-18oikkf, .framer-ncgUQ .framer-e4awwq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 56px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ncgUQ .framer-12fx1z8, .framer-ncgUQ .framer-dzc472, .framer-ncgUQ .framer-qca6qu { aspect-ratio: 1 / 1; border-bottom-left-radius: 72px; border-bottom-right-radius: 72px; border-top-left-radius: 72px; border-top-right-radius: 72px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-ncgUQ .framer-ogu769, .framer-ncgUQ .framer-1p9qvmi, .framer-ncgUQ .framer-10kv917 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 45px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ncgUQ .framer-x3zbj5, .framer-ncgUQ .framer-9hnebb, .framer-ncgUQ .framer-gqmsiz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ncgUQ .framer-8fz66y, .framer-ncgUQ .framer-10g7wno, .framer-ncgUQ .framer-33p883 { flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre; width: auto; }\",\".framer-ncgUQ .framer-1m3ntlt, .framer-ncgUQ .framer-fbg16f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-12toxdj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-jwe0pe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ncgUQ .framer-145y540 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ncgUQ .framer-1buc6g5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-ncgUQ .framer-1utm7sx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-ncgUQ .framer-b0avls-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,'.framer-ncgUQ[data-border=\"true\"]::after, .framer-ncgUQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-ncgUQ.framer-12evxz0 { width: 810px; } .framer-ncgUQ .framer-anr2uh, .framer-ncgUQ .framer-1tsb0t6 { max-width: 530px; } .framer-ncgUQ .framer-14pfowb-container { height: var(--framer-aspect-ratio-supported, 429px); } .framer-ncgUQ .framer-12ec1sv { width: 736px; } .framer-ncgUQ .framer-cqruyx { padding: 72px 32px 0px 32px; } .framer-ncgUQ .framer-16gup8y, .framer-ncgUQ .framer-tq4vt8, .framer-ncgUQ .framer-1e6t59z { padding: 96px 32px 0px 32px; } .framer-ncgUQ .framer-ym5wdw, .framer-ncgUQ .framer-1j5k9lr, .framer-ncgUQ .framer-avgpga { padding: 96px 32px 96px 32px; } .framer-ncgUQ .framer-1m3ntlt, .framer-ncgUQ .framer-fbg16f, .framer-ncgUQ .framer-12toxdj { padding: 0px 32px 0px 32px; }}\",\"@media (max-width: 809px) { .framer-ncgUQ.framer-12evxz0 { width: 390px; } .framer-ncgUQ .framer-1kqz066 { gap: 56px; overflow: visible; padding: 112px 16px 40px 16px; } .framer-ncgUQ .framer-14pfowb-container { height: var(--framer-aspect-ratio-supported, 202px); } .framer-ncgUQ .framer-12ec1sv { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-ncgUQ .framer-1y3i1qz { bottom: unset; flex-direction: column; height: min-content; left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-ncgUQ .framer-bd5b85 { flex: none; min-height: unset; width: 100%; } .framer-ncgUQ .framer-1oy8nq7 { align-content: center; align-items: center; bottom: unset; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; right: unset; top: unset; width: 1px; } .framer-ncgUQ .framer-1kya5y { bottom: unset; flex: 1 0 0px; height: 366px; left: unset; position: relative; right: unset; top: unset; width: 1px; } .framer-ncgUQ .framer-i0uror { bottom: unset; gap: unset; height: 100%; justify-content: space-between; padding: 32px 0px 32px 0px; } .framer-ncgUQ .framer-dad0r6 { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; gap: 10px; height: 1px; justify-content: flex-start; } .framer-ncgUQ .framer-1lvalea { align-content: flex-start; align-items: flex-start; flex-direction: column; height: 301px; } .framer-ncgUQ .framer-16v0u1l, .framer-ncgUQ .framer-1k4zev4, .framer-ncgUQ .framer-1h99u6q, .framer-ncgUQ .framer-1uyjn3n, .framer-ncgUQ .framer-n26zz, .framer-ncgUQ .framer-1wi41c1, .framer-ncgUQ .framer-1emnzpb { gap: 4px; } .framer-ncgUQ .framer-cqruyx { flex-direction: column; padding: 16px 16px 0px 16px; } .framer-ncgUQ .framer-y1408u, .framer-ncgUQ .framer-6nfqwv, .framer-ncgUQ .framer-10laovi, .framer-ncgUQ .framer-1tdv0sp, .framer-ncgUQ .framer-1ua1zwa, .framer-ncgUQ .framer-qz9hf5, .framer-ncgUQ .framer-gbm2b2, .framer-ncgUQ .framer-dlw7g4, .framer-ncgUQ .framer-1mr0p0f, .framer-ncgUQ .framer-g7f8q1, .framer-ncgUQ .framer-17pj7ov, .framer-ncgUQ .framer-mtn6yj, .framer-ncgUQ .framer-1utm7sx { flex: none; width: 100%; } .framer-ncgUQ .framer-16gup8y, .framer-ncgUQ .framer-tq4vt8, .framer-ncgUQ .framer-1e6t59z { flex-direction: column; gap: 16px; padding: 96px 16px 0px 16px; } .framer-ncgUQ .framer-ym5wdw, .framer-ncgUQ .framer-1j5k9lr { padding: 80px 16px 80px 16px; } .framer-ncgUQ .framer-fc22wp, .framer-ncgUQ .framer-1wbaqpa, .framer-ncgUQ .framer-jwjrvd { padding: 48px 24px 48px 24px; } .framer-ncgUQ .framer-q5eyk7, .framer-ncgUQ .framer-18oikkf, .framer-ncgUQ .framer-e4awwq { width: 100%; } .framer-ncgUQ .framer-ogu769, .framer-ncgUQ .framer-1p9qvmi, .framer-ncgUQ .framer-10kv917 { flex: 1 0 0px; height: min-content; width: 1px; } .framer-ncgUQ .framer-x3zbj5, .framer-ncgUQ .framer-8fz66y, .framer-ncgUQ .framer-9hnebb, .framer-ncgUQ .framer-10g7wno, .framer-ncgUQ .framer-gqmsiz, .framer-ncgUQ .framer-33p883 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-ncgUQ .framer-1m3ntlt, .framer-ncgUQ .framer-fbg16f { flex-direction: column; gap: 16px; padding: 0px 16px 0px 16px; } .framer-ncgUQ .framer-avgpga { padding: 80px 16px 56px 16px; } .framer-ncgUQ .framer-12toxdj { padding: 80px 0px 80px 0px; } .framer-ncgUQ .framer-145y540 { padding: 0px 16px 0px 16px; } .framer-ncgUQ .framer-1buc6g5 { flex-direction: column; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5404\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jKpEkw8z7\":{\"layout\":[\"fixed\",\"auto\"]},\"itFW55MGQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerXVWBYTu5H=withCSS(Component,css,\"framer-ncgUQ\");export default FramerXVWBYTu5H;FramerXVWBYTu5H.displayName=\"Case Studies\";FramerXVWBYTu5H.defaultProps={height:5404,width:1200};addFonts(FramerXVWBYTu5H,[{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:\"Matter Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/HV3sAtoDdJ4XwrCl8tpfcmi3aQ.woff2\"},{family:\"Matter Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/dcBhZgAFiyqqQO8SkGjomdakHJ8.woff2\"}]},...YouTubeFonts,...EasingGradientFonts,...ButtonMainFonts,...CustomerCardTrailingFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...componentPresets.fonts?.[\"Y9__hPihb\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"Y9__hPihb\"]):[],...componentPresets.fonts?.[\"nKaUWKLH9\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"nKaUWKLH9\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXVWBYTu5H\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jKpEkw8z7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"itFW55MGQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"5404\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "originalSearchParams", "searchParams", "param", "value", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "TextIconFonts", "getFonts", "p_J4vPhyl_default", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "Variants", "motion", "x", "getProps", "client", "height", "id", "overview", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "it2JpvO9O", "y4nNEgNqO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "p", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "HoKrrnQcM_default", "RichText", "css", "FrameryjLcbjLI3", "withCSS", "yjLcbjLI3_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "YouTubeFonts", "getFonts", "Youtube", "EasingGradientFonts", "EasingGradient", "ButtonMainFonts", "eU4CFzLwd_default", "CustomerCardTrailingFonts", "yjLcbjLI3_default", "breakpoints", "serializationHash", "variantClassNames", "isSet", "value", "negate", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "M50pbZqam_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "HVBgSBotB", "jW1vnCed0", "yYDjf0wD2", "Uc6z0hyG6", "Q_CWIoVhk", "hIcyKPTEc", "bJfAe4n6Y", "Goa7TiQ3S", "ykUZgWYaC", "iBcoK6JHoTSTcYD_R3", "idTSTcYD_R3", "u8sO5NftR", "jbXojQNoR", "LIhPahiUB", "jtTG8tVDV", "k2R9nVqZe", "ulIyXOnMN", "BPbhen6It", "tTd6UdnHs", "iFCFaRZH7", "tPPQytODv", "rHtuHfI9x", "NE7JShSoj", "uhRoGjISX", "NOU4DyYnq", "KlBnJpSHv", "X8m6PU6GB", "eHx6aT0o1", "jeDEMAsHb", "lqGT8zz0d", "PS08lobGm", "F6n7M69iH", "nextItemId", "iBcoK6JHoyNSzcbb1x", "sCSfr3dquyNSzcbb1x", "ulIyXOnMNyNSzcbb1x", "idyNSzcbb1x", "pVfDX6mjy", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "visible1", "activeLocaleCode", "useLocaleCode", "textContent", "router", "useRouter", "visible2", "visible3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "RichText", "x", "ComponentViewportProvider", "Container", "Youtube", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "EasingGradient", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "eU4CFzLwd_default", "HoKrrnQcM_default", "ComponentPresetsProvider", "collection1", "paginationInfo1", "loadMore1", "collection2", "paginationInfo2", "loadMore2", "collection3", "paginationInfo3", "loadMore3", "collection4", "paginationInfo4", "loadMore4", "index1", "Link", "yjLcbjLI3_default", "css", "FramerXVWBYTu5H", "withCSS", "XVWBYTu5H_default", "addFonts", "YouTubeFonts", "EasingGradientFonts", "ButtonMainFonts", "CustomerCardTrailingFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
