{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/v3gOYVuqQz3nAqZw47FH/VHNvm4WMHpUw8c1B1qzN/Examples.js", "ssg:https://framerusercontent.com/modules/nmgMTxpk32HL8b6jiIQT/J43my4xOiyzYmSR7qA1O/tD4tOP7P5.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/i9GayUyuKzq5AZLIseXV/SlideShow.js\";import NavigationCopy from\"#framer/local/canvasComponent/F4cJJbvqc/F4cJJbvqc.js\";import Footer from\"#framer/local/canvasComponent/KeljBMQxo/KeljBMQxo.js\";import{withHover}from\"#framer/local/codeFile/pbpln13/Examples.js\";import*as sharedStyle2 from\"#framer/local/css/GDthSYr54/GDthSYr54.js\";import*as sharedStyle from\"#framer/local/css/M0dVoGw_S/M0dVoGw_S.js\";import*as sharedStyle1 from\"#framer/local/css/tumInYhYW/tumInYhYW.js\";import metadataProvider from\"#framer/local/webPageMetadata/tD4tOP7P5/tD4tOP7P5.js\";const NavigationCopyFonts=getFonts(NavigationCopy);const EmbedFonts=getFonts(Embed);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const YouTubeWithHoverfbe391=withCodeBoundaryForOverrides(YouTube,{inComponentSlot:true,nodeId:\"gcxPvY4AJ\",override:withHover,scopeId:\"tD4tOP7P5\"});const SlideshowFonts=getFonts(Slideshow);const FooterFonts=getFonts(Footer);const breakpoints={H9d7JPWHD:\"(min-width: 1920px)\",KZy5AvozU:\"(min-width: 1200px) and (max-width: 1919px)\",YqVetFvtq:\"(max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7jUFy\";const variantClassNames={H9d7JPWHD:\"framer-v-7c9686\",KZy5AvozU:\"framer-v-1gsyoet\",YqVetFvtq:\"framer-v-4kuk2d\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 1200\":\"KZy5AvozU\",\"Desktop 2\":\"H9d7JPWHD\",Phone:\"YqVetFvtq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KZy5AvozU\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"H9d7JPWHD\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"H9d7JPWHD\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KZy5AvozU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1gsyoet\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9974, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1waxyfl-container\",nodeId:\"Mgq2rpDO_\",scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{variant:\"ybEmRyH2A\"}},children:/*#__PURE__*/_jsx(NavigationCopy,{height:\"100%\",id:\"Mgq2rpDO_\",layoutId:\"Mgq2rpDO_\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"obTGU3kGc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hyrtrr\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c6n48b\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rk2a8d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r8c027\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/BljH2DdkSYqdcygKCl2mUpvHfzw.png\"},className:\"framer-177kskm\",\"data-framer-name\":\"$1_1_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/GITNhjo1LXl2PQgyf7kb53BdZxg.png\"},className:\"framer-oy3ihe\",\"data-framer-name\":\"$2_1_\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FncmFuZGlyIEdyYW5kIEhlYXZ5\",\"--framer-font-family\":'\"Agrandir Grand Heavy\", \"Agrandir Grand Heavy Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(37, 36, 36)\"},children:\"Join The Tribe\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FncmFuZGlyIEdyYW5kIEhlYXZ5\",\"--framer-font-family\":'\"Agrandir Grand Heavy\", \"Agrandir Grand Heavy Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(37, 36, 36)\"},children:\"Join The Tribe\"})}),className:\"framer-po4ooq\",fonts:[\"CUSTOM;Agrandir Grand Heavy\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1acz6ya\",\"data-styles-preset\":\"M0dVoGw_S\",style:{\"--framer-text-alignment\":\"center\"},children:\"Shaping the Future of Polymer Industry with Technology, Logistics & Network \"})}),className:\"framer-1ekfpbe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"\",fit:\"fit\",pixelHeight:853,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/XtC3hKdNNOTONuo3s7zhEKCwW9k.png\",srcSet:\"https://framerusercontent.com/images/XtC3hKdNNOTONuo3s7zhEKCwW9k.png?scale-down-to=512 512w,https://framerusercontent.com/images/XtC3hKdNNOTONuo3s7zhEKCwW9k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XtC3hKdNNOTONuo3s7zhEKCwW9k.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:853,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 120px) / 2, 1px)`,src:\"https://framerusercontent.com/images/XtC3hKdNNOTONuo3s7zhEKCwW9k.png\",srcSet:\"https://framerusercontent.com/images/XtC3hKdNNOTONuo3s7zhEKCwW9k.png?scale-down-to=512 512w,https://framerusercontent.com/images/XtC3hKdNNOTONuo3s7zhEKCwW9k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XtC3hKdNNOTONuo3s7zhEKCwW9k.png 1200w\"},className:\"framer-4ioaps\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-axp7wm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:1850,pixelWidth:3651,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Ilej890UhosNJ4h9IPG1M1W0z8.png\",srcSet:\"https://framerusercontent.com/images/Ilej890UhosNJ4h9IPG1M1W0z8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ilej890UhosNJ4h9IPG1M1W0z8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ilej890UhosNJ4h9IPG1M1W0z8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ilej890UhosNJ4h9IPG1M1W0z8.png 3651w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bJfsq3aKlrmGuiqq1wyaaDEHOY.png\",srcSet:\"https://framerusercontent.com/images/bJfsq3aKlrmGuiqq1wyaaDEHOY.png?scale-down-to=512 512w,https://framerusercontent.com/images/bJfsq3aKlrmGuiqq1wyaaDEHOY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bJfsq3aKlrmGuiqq1wyaaDEHOY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bJfsq3aKlrmGuiqq1wyaaDEHOY.png 3651w\"},className:\"framer-r7jwc9\",\"data-framer-name\":\"IMG_5290 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14qevux\",\"data-framer-name\":\"Rectangle 77\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"139.92%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 209, 4)\"},children:\"Join Our Team at Source\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"149.92%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 209, 4)\"},children:\"Join Our Team at Source\"})}),className:\"framer-nyf04e\",\"data-framer-name\":\"Join Our Team at Source\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"152.46%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We are India's largest polymer distribution company, committed to innovation and excellence. At Source.One, we believe in fostering a dynamic work environment where talent thrives, and career growth is paramount. Join us to be a part of a forward-thinking team, driving the future of the polymer industry. Explore exciting opportunities and be a catalyst for change with Source.One!\"})}),className:\"framer-b19755\",\"data-framer-name\":\"We are India's largest polymer distribution company, committed to innovation and excellence. At Source.One, we believe in fostering a dynamic work environment where talent thrives, and career growth is paramount. Join us to be a part of a forward-thinking team, driving the future of the polymer industry. Explore exciting opportunities and be a catalyst for change with Source.One!\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ksh3o5 hidden-7c9686\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1li71gd\",\"data-framer-name\":\"Frame 48099256\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12v17hp\",\"data-styles-preset\":\"tumInYhYW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Open Positions\"})}),className:\"framer-pv9mn2\",\"data-framer-name\":\"Open Positions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-text-alignment\":\"center\"},children:\"Shaping the Future of Polymer Industry with Technology, Logistics & Network\"})}),className:\"framer-1jfsznp\",\"data-framer-name\":\"Shaping the Future of Polymer Industry with Technology, Logistics & Network\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nz2plp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MRtTRPlFF\",scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script>\\n                       window.khConfig =\\n                           {\\n                               identifier: 'ee29c144-b59b-4db4-b5ca-a5fbe18990a2',domain: 'https://sourceone.keka.com/careers/',targetContainer: '#khembedjobs'}</script><script src='https://sourceone.keka.com/careers/api/embedjobs/js/ee29c144-b59b-4db4-b5ca-a5fbe18990a2' defer></script><div id='khembedjobs'></div>\",id:\"MRtTRPlFF\",layoutId:\"MRtTRPlFF\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qe4xor\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tvh3hp\",\"data-styles-preset\":\"GDthSYr54\",style:{\"--framer-text-alignment\":\"center\"},children:\"Benefits of Working with Source.One\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12v17hp\",\"data-styles-preset\":\"tumInYhYW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Benefits of Working with Source.One\"})}),className:\"framer-fddtra\",\"data-framer-name\":\"Benefits of Working with Source.One\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qyxyge\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r5m0n3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c3izp1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,src:\"https://framerusercontent.com/images/e7qGMgLkeG5uZcOOlbE1atcl6o.png\"},className:\"framer-1ej2wof\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Flexibility in Role Changing\"})}),className:\"framer-1skvfnm\",\"data-framer-name\":\"Flexibility in Role Changing\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ujmyu\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:\"60px\",src:\"https://framerusercontent.com/images/Ep2PkLth6aTAUtBgtEclpgfUwk.png\",srcSet:\"https://framerusercontent.com/images/Ep2PkLth6aTAUtBgtEclpgfUwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ep2PkLth6aTAUtBgtEclpgfUwk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ep2PkLth6aTAUtBgtEclpgfUwk.png 1080w\"},className:\"framer-1ipzp0v\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Young Workforce\"})}),className:\"framer-1xcpfhh\",\"data-framer-name\":\"Flexibility in Role Changing\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cp91es\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:\"60px\",src:\"https://framerusercontent.com/images/eAbMUYzJfThffsy511elJ98b6Ts.png\",srcSet:\"https://framerusercontent.com/images/eAbMUYzJfThffsy511elJ98b6Ts.png?scale-down-to=512 512w,https://framerusercontent.com/images/eAbMUYzJfThffsy511elJ98b6Ts.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eAbMUYzJfThffsy511elJ98b6Ts.png 1080w\"},className:\"framer-ptmjvh\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Wellness Program\"})}),className:\"framer-oj8hug\",\"data-framer-name\":\"Flexibility in Role Changing\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18qihl7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:\"60px\",src:\"https://framerusercontent.com/images/uwk4dg8ZGpmF2JIrfSn60IUlSJ8.png\",srcSet:\"https://framerusercontent.com/images/uwk4dg8ZGpmF2JIrfSn60IUlSJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/uwk4dg8ZGpmF2JIrfSn60IUlSJ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uwk4dg8ZGpmF2JIrfSn60IUlSJ8.png 1080w\"},className:\"framer-1c1ybl3\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Medical/Health Insurance\"})}),className:\"framer-iiqnrd\",\"data-framer-name\":\"Flexibility in Role Changing\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3hijjm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b34of2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:\"60px\",src:\"https://framerusercontent.com/images/kxeYYsbhUUaxBWOwhIXUe9jwkA.png\",srcSet:\"https://framerusercontent.com/images/kxeYYsbhUUaxBWOwhIXUe9jwkA.png?scale-down-to=512 512w,https://framerusercontent.com/images/kxeYYsbhUUaxBWOwhIXUe9jwkA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kxeYYsbhUUaxBWOwhIXUe9jwkA.png 1080w\"},className:\"framer-38wm08\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Learning from Experts\"})}),className:\"framer-1m6a9dg\",\"data-framer-name\":\"Flexibility in Role Changing\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a8f2sy\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:\"60px\",src:\"https://framerusercontent.com/images/2x1RvVTcdIWfGHoRxwZJwaek.png\",srcSet:\"https://framerusercontent.com/images/2x1RvVTcdIWfGHoRxwZJwaek.png?scale-down-to=512 512w,https://framerusercontent.com/images/2x1RvVTcdIWfGHoRxwZJwaek.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2x1RvVTcdIWfGHoRxwZJwaek.png 1080w\"},className:\"framer-3jy1yv\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Casual Dress Code\"})}),className:\"framer-7v8k0z\",\"data-framer-name\":\"Flexibility in Role Changing\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h0u4k1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:\"60px\",src:\"https://framerusercontent.com/images/BnxuSBmhYCur1SgBdslRSx3GZ8.png\",srcSet:\"https://framerusercontent.com/images/BnxuSBmhYCur1SgBdslRSx3GZ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/BnxuSBmhYCur1SgBdslRSx3GZ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BnxuSBmhYCur1SgBdslRSx3GZ8.png 1080w\"},className:\"framer-1qz1x9c\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Recreational Activities\"})}),className:\"framer-2p2ujn\",\"data-framer-name\":\"Flexibility in Role Changing\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cfary\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:252,pixelWidth:252,src:\"https://framerusercontent.com/images/GGt371WXlKqo4Lrb6bApuPa0Q.png\"},className:\"framer-1mq8z6l\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:\"Talent Development\"})}),className:\"framer-epu6j1\",\"data-framer-name\":\"Flexibility in Role Changing\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2szs6a\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xdo6z2\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-xzpbb4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o7133q\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tvh3hp\",\"data-styles-preset\":\"GDthSYr54\",children:\"Glimpses of Life at Source.One\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12v17hp\",\"data-styles-preset\":\"tumInYhYW\",children:\"Glimpses of Life at Source.One\"})}),className:\"framer-1r6mpue\",\"data-framer-name\":\"Benefits of Working with Source.One\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19k26fg\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d65pad\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1528,pixelWidth:1244,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/78ftNzJi1B8j0EFqgOB7CuPC7xk.png\",srcSet:\"https://framerusercontent.com/images/78ftNzJi1B8j0EFqgOB7CuPC7xk.png?scale-down-to=1024 833w,https://framerusercontent.com/images/78ftNzJi1B8j0EFqgOB7CuPC7xk.png 1244w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1528,pixelWidth:1244,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 3.5, 1px)`,src:\"https://framerusercontent.com/images/78ftNzJi1B8j0EFqgOB7CuPC7xk.png\",srcSet:\"https://framerusercontent.com/images/78ftNzJi1B8j0EFqgOB7CuPC7xk.png?scale-down-to=1024 833w,https://framerusercontent.com/images/78ftNzJi1B8j0EFqgOB7CuPC7xk.png 1244w\"},className:\"framer-1y4vm6y\",\"data-framer-name\":\"Photo Copy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1030,pixelWidth:1344,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px) * 1.5)`,src:\"https://framerusercontent.com/images/CkWPyHurF8h4uySi8wmE8LxL5c.png\",srcSet:\"https://framerusercontent.com/images/CkWPyHurF8h4uySi8wmE8LxL5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/CkWPyHurF8h4uySi8wmE8LxL5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CkWPyHurF8h4uySi8wmE8LxL5c.png 1344w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1030,pixelWidth:1344,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) * 0.4286, 1px)`,src:\"https://framerusercontent.com/images/CkWPyHurF8h4uySi8wmE8LxL5c.png\",srcSet:\"https://framerusercontent.com/images/CkWPyHurF8h4uySi8wmE8LxL5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/CkWPyHurF8h4uySi8wmE8LxL5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CkWPyHurF8h4uySi8wmE8LxL5c.png 1344w\"},className:\"framer-b99io2\",\"data-framer-name\":\"Photo Copy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1304,pixelWidth:1222,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/hqAZ1KfZlFQh03uvjcO7J4ZDs.png\",srcSet:\"https://framerusercontent.com/images/hqAZ1KfZlFQh03uvjcO7J4ZDs.png?scale-down-to=1024 959w,https://framerusercontent.com/images/hqAZ1KfZlFQh03uvjcO7J4ZDs.png 1222w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1304,pixelWidth:1222,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 3.5, 1px)`,src:\"https://framerusercontent.com/images/hqAZ1KfZlFQh03uvjcO7J4ZDs.png\",srcSet:\"https://framerusercontent.com/images/hqAZ1KfZlFQh03uvjcO7J4ZDs.png?scale-down-to=1024 959w,https://framerusercontent.com/images/hqAZ1KfZlFQh03uvjcO7J4ZDs.png 1222w\"},className:\"framer-1747qua\",\"data-framer-name\":\"Photo Copy\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17zfhqp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1072,pixelWidth:1130,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px) * 1.5)`,src:\"https://framerusercontent.com/images/CCPi22tjcvVXFmN7Q5ilXXr9fHM.png\",srcSet:\"https://framerusercontent.com/images/CCPi22tjcvVXFmN7Q5ilXXr9fHM.png?scale-down-to=512 512w,https://framerusercontent.com/images/CCPi22tjcvVXFmN7Q5ilXXr9fHM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CCPi22tjcvVXFmN7Q5ilXXr9fHM.png 1130w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1072,pixelWidth:1130,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) * 0.4286, 1px)`,src:\"https://framerusercontent.com/images/CCPi22tjcvVXFmN7Q5ilXXr9fHM.png\",srcSet:\"https://framerusercontent.com/images/CCPi22tjcvVXFmN7Q5ilXXr9fHM.png?scale-down-to=512 512w,https://framerusercontent.com/images/CCPi22tjcvVXFmN7Q5ilXXr9fHM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CCPi22tjcvVXFmN7Q5ilXXr9fHM.png 1130w\"},className:\"framer-monise\",\"data-framer-name\":\"Photo Copy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"Environment Day\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1230,pixelWidth:1260,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/sjA5P5aPHae09xQfM98FS8MpKmM.png\",srcSet:\"https://framerusercontent.com/images/sjA5P5aPHae09xQfM98FS8MpKmM.png?scale-down-to=512 512w,https://framerusercontent.com/images/sjA5P5aPHae09xQfM98FS8MpKmM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sjA5P5aPHae09xQfM98FS8MpKmM.png 1260w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Environment Day\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1230,pixelWidth:1260,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 3.5, 1px)`,src:\"https://framerusercontent.com/images/sjA5P5aPHae09xQfM98FS8MpKmM.png\",srcSet:\"https://framerusercontent.com/images/sjA5P5aPHae09xQfM98FS8MpKmM.png?scale-down-to=512 512w,https://framerusercontent.com/images/sjA5P5aPHae09xQfM98FS8MpKmM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sjA5P5aPHae09xQfM98FS8MpKmM.png 1260w\"},className:\"framer-1344oyw\",\"data-framer-name\":\"Photo Copy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1068,pixelWidth:1440,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/hQqdUkKK8TLg8zjbVSMAfGLZAU.png\",srcSet:\"https://framerusercontent.com/images/hQqdUkKK8TLg8zjbVSMAfGLZAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hQqdUkKK8TLg8zjbVSMAfGLZAU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hQqdUkKK8TLg8zjbVSMAfGLZAU.png 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1068,pixelWidth:1440,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 3.5, 1px)`,src:\"https://framerusercontent.com/images/hQqdUkKK8TLg8zjbVSMAfGLZAU.png\",srcSet:\"https://framerusercontent.com/images/hQqdUkKK8TLg8zjbVSMAfGLZAU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hQqdUkKK8TLg8zjbVSMAfGLZAU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hQqdUkKK8TLg8zjbVSMAfGLZAU.png 1440w\"},className:\"framer-1l6m6iq\",\"data-framer-name\":\"Photo Copy\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-feztk2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1058,pixelWidth:1072,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/imZyBwVI69fH8SvoXbLzBgSnSg.png\",srcSet:\"https://framerusercontent.com/images/imZyBwVI69fH8SvoXbLzBgSnSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/imZyBwVI69fH8SvoXbLzBgSnSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/imZyBwVI69fH8SvoXbLzBgSnSg.png 1072w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1058,pixelWidth:1072,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 3.5, 1px)`,src:\"https://framerusercontent.com/images/imZyBwVI69fH8SvoXbLzBgSnSg.png\",srcSet:\"https://framerusercontent.com/images/imZyBwVI69fH8SvoXbLzBgSnSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/imZyBwVI69fH8SvoXbLzBgSnSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/imZyBwVI69fH8SvoXbLzBgSnSg.png 1072w\"},className:\"framer-1i59b4j\",\"data-framer-name\":\"Photo Copy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1036,pixelWidth:1552,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/pqa6p2KAZMexmjye90BDmYOK9k.png\",srcSet:\"https://framerusercontent.com/images/pqa6p2KAZMexmjye90BDmYOK9k.png?scale-down-to=512 512w,https://framerusercontent.com/images/pqa6p2KAZMexmjye90BDmYOK9k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pqa6p2KAZMexmjye90BDmYOK9k.png 1552w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:1036,pixelWidth:1552,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 3.5, 1px)`,src:\"https://framerusercontent.com/images/pqa6p2KAZMexmjye90BDmYOK9k.png\",srcSet:\"https://framerusercontent.com/images/pqa6p2KAZMexmjye90BDmYOK9k.png?scale-down-to=512 512w,https://framerusercontent.com/images/pqa6p2KAZMexmjye90BDmYOK9k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pqa6p2KAZMexmjye90BDmYOK9k.png 1552w\"},className:\"framer-18yfzdw\",\"data-framer-name\":\"Photo Copy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:806,pixelWidth:1410,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px) * 1.5)`,src:\"https://framerusercontent.com/images/qshVY12BA3lr4foUl5SHrdmg.png\",srcSet:\"https://framerusercontent.com/images/qshVY12BA3lr4foUl5SHrdmg.png?scale-down-to=512 512w,https://framerusercontent.com/images/qshVY12BA3lr4foUl5SHrdmg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qshVY12BA3lr4foUl5SHrdmg.png 1410w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2560,intrinsicWidth:1920,pixelHeight:806,pixelWidth:1410,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) * 0.4286, 1px)`,src:\"https://framerusercontent.com/images/qshVY12BA3lr4foUl5SHrdmg.png\",srcSet:\"https://framerusercontent.com/images/qshVY12BA3lr4foUl5SHrdmg.png?scale-down-to=512 512w,https://framerusercontent.com/images/qshVY12BA3lr4foUl5SHrdmg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qshVY12BA3lr4foUl5SHrdmg.png 1410w\"},className:\"framer-1aolcfr\",\"data-framer-name\":\"Photo Copy\"})})]})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2w5sx5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YqVetFvtq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tvh3hp\",\"data-styles-preset\":\"GDthSYr54\",style:{\"--framer-text-alignment\":\"center\"},children:\"What Our Employees Say\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12v17hp\",\"data-styles-preset\":\"tumInYhYW\",style:{\"--framer-text-alignment\":\"center\"},children:\"What Our Employees Say\"})}),className:\"framer-19qbw24\",\"data-framer-name\":\"Benefits of Working with Source.One\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g81uv2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xC4_MpCrY\",scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9d7JPWHD:{arrowOptions:{arrowFill:\"rgb(43, 43, 43)\",arrowGap:100,arrowPadding:-60,arrowPaddingBottom:3,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:46,showMouseControls:true},gap:20,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-20,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false}},YqVetFvtq:{alignment:\"flex-end\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.53)\",arrowGap:100,arrowPadding:12,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:121,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:12,overflow:false},itemAmount:1,paddingBottom:80,paddingPerSide:false,paddingTop:80,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:7,dotsInset:-40,dotSize:7,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgb(43, 43, 43)\",arrowGap:100,arrowPadding:-40,arrowPaddingBottom:3,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:36,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"right\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1273,effectsRotate:45,effectsScale:.8},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:17,overflow:false},gap:16,height:\"100%\",id:\"xC4_MpCrY\",intervalControl:1.5,itemAmount:3,layoutId:\"xC4_MpCrY\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ew9ejf-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rKQMITC3i\",rendersWithMotion:true,scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"rKQMITC3i\",isMixedBorderRadius:false,isRed:true,layoutId:\"rKQMITC3i\",play:\"Off\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:16,topRightRadius:16,url:\" https://youtu.be/ONHVQUD20EE?si=4Kh0bi_UkHLuNRn-\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-givejw-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"F7UZUWkPi\",rendersWithMotion:true,scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"F7UZUWkPi\",isMixedBorderRadius:false,isRed:true,layoutId:\"F7UZUWkPi\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/dMbZ17WhkuA?si=8R7AUlOq82hbQ8vP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jhf6dd-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yFOs3KZRr\",rendersWithMotion:true,scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"yFOs3KZRr\",isMixedBorderRadius:false,isRed:true,layoutId:\"yFOs3KZRr\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/HAEfWPpxFOU?si=-dJOLCo8KZlxkOUA\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fbe391-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gcxPvY4AJ\",rendersWithMotion:true,scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(YouTubeWithHoverfbe391,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"gcxPvY4AJ\",isMixedBorderRadius:false,isRed:true,layoutId:\"gcxPvY4AJ\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/bogvqyGFlpg?si=lYMg-SxQ9Lhc2xor\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q77un4-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PG4UrBT0u\",rendersWithMotion:true,scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"PG4UrBT0u\",isMixedBorderRadius:false,isRed:true,layoutId:\"PG4UrBT0u\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/D0JEHMtaSqM?si=u59PJhrnKJbZ96OE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wycdyb-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"emyMJQ0m0\",rendersWithMotion:true,scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"emyMJQ0m0\",isMixedBorderRadius:false,isRed:true,layoutId:\"emyMJQ0m0\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/kmqOIrI3ZGc?si=_uFEpU8gbvkRTj37\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:376,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12i6q0l-container\",nodeId:\"QyyJg9y2N\",scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{H9d7JPWHD:{variant:\"ZM420KgWx\"},YqVetFvtq:{variant:\"vyiCOM0EN\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"QyyJg9y2N\",layoutId:\"QyyJg9y2N\",style:{width:\"100%\"},variant:\"Cgn1xryxG\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vhu6e1 hidden-1gsyoet hidden-4kuk2d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o8a02d\",\"data-framer-name\":\"Frame 48099256\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12v17hp\",\"data-styles-preset\":\"tumInYhYW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Open Positions\"})}),className:\"framer-1afe1dp\",\"data-framer-name\":\"Open Positions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-text-alignment\":\"center\"},children:\"Shaping the Future of Polymer Industry with Technology, Logistics & Network\"})}),className:\"framer-1gws88b\",\"data-framer-name\":\"Shaping the Future of Polymer Industry with Technology, Logistics & Network\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zk4m3k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oh5jry2Il\",scopeId:\"tD4tOP7P5\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script>\\n                       window.khConfig =\\n                           {\\n                               identifier: 'ee29c144-b59b-4db4-b5ca-a5fbe18990a2',domain: 'https://sourceone.keka.com/careers/',targetContainer: '#khembedjobs'}</script><script src='https://sourceone.keka.com/careers/api/embedjobs/js/ee29c144-b59b-4db4-b5ca-a5fbe18990a2' defer></script><div id='khembedjobs'></div>\",id:\"oh5jry2Il\",layoutId:\"oh5jry2Il\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7jUFy.framer-16kcu8t, .framer-7jUFy .framer-16kcu8t { display: block; }\",\".framer-7jUFy.framer-1gsyoet { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-7jUFy .framer-1waxyfl-container { flex: none; height: auto; max-width: 1440px; position: sticky; top: 0px; width: 100%; z-index: 3; }\",\".framer-7jUFy .framer-hyrtrr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1c6n48b { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-7jUFy .framer-rk2a8d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 589px; }\",\".framer-7jUFy .framer-1r8c027 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 316px; height: min-content; justify-content: center; left: 51%; overflow: hidden; padding: 0px; position: absolute; top: -55px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-7jUFy .framer-177kskm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); overflow: visible; position: relative; width: 74px; }\",\".framer-7jUFy .framer-oy3ihe { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 94px); overflow: visible; position: relative; width: 94px; }\",\".framer-7jUFy .framer-po4ooq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 589px; word-break: break-word; word-wrap: break-word; }\",\".framer-7jUFy .framer-1ekfpbe { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 83%; word-break: break-word; word-wrap: break-word; }\",\".framer-7jUFy .framer-4ioaps { align-content: center; align-items: center; border-bottom-right-radius: 250px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 466px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-7jUFy .framer-axp7wm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-r7jwc9 { flex: none; height: 660px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-14qevux { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(165, 196, 230, 0) 23%, rgba(7, 23, 38, 0.73) 52.702702702702695%, rgb(7, 23, 39) 74%); border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; left: calc(50.041084634346774% - 100% / 2); padding: 40px 0px 120px 0px; position: absolute; top: calc(50.00000000000002% - 100.15151515151514% / 2); width: 100%; z-index: 1; }\",\".framer-7jUFy .framer-nyf04e { --framer-paragraph-spacing: 0px; flex: none; height: 57px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7jUFy .framer-b19755 { --framer-paragraph-spacing: 13px; --framer-text-wrap: balance; flex: none; height: auto; max-width: 1440px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7jUFy .framer-1ksh3o5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: center; max-width: 1440px; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1li71gd, .framer-7jUFy .framer-o8a02d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-pv9mn2, .framer-7jUFy .framer-fddtra, .framer-7jUFy .framer-19qbw24, .framer-7jUFy .framer-1afe1dp { --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-7jUFy .framer-1jfsznp, .framer-7jUFy .framer-1gws88b { --framer-paragraph-spacing: 3px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7jUFy .framer-nz2plp-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-qe4xor { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 42px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1qyxyge { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-r5m0n3, .framer-7jUFy .framer-3hijjm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7jUFy .framer-1c3izp1, .framer-7jUFy .framer-10ujmyu, .framer-7jUFy .framer-1cp91es, .framer-7jUFy .framer-18qihl7, .framer-7jUFy .framer-1b34of2, .framer-7jUFy .framer-a8f2sy, .framer-7jUFy .framer-1h0u4k1, .framer-7jUFy .framer-cfary { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1ej2wof, .framer-7jUFy .framer-ptmjvh, .framer-7jUFy .framer-38wm08, .framer-7jUFy .framer-1qz1x9c { aspect-ratio: 0.9803921568627451 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: hidden; position: relative; width: 60px; }\",\".framer-7jUFy .framer-1skvfnm, .framer-7jUFy .framer-1xcpfhh, .framer-7jUFy .framer-oj8hug, .framer-7jUFy .framer-iiqnrd, .framer-7jUFy .framer-1m6a9dg, .framer-7jUFy .framer-7v8k0z, .framer-7jUFy .framer-2p2ujn, .framer-7jUFy .framer-epu6j1 { --framer-paragraph-spacing: 3px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-7jUFy .framer-1ipzp0v, .framer-7jUFy .framer-1c1ybl3, .framer-7jUFy .framer-3jy1yv, .framer-7jUFy .framer-1mq8z6l { aspect-ratio: 0.9803921568627451 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 62px); overflow: hidden; position: relative; width: 60px; }\",\".framer-7jUFy .framer-2szs6a { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1xdo6z2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-xzpbb4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 60px; position: relative; width: 1px; }\",\".framer-7jUFy .framer-1o7133q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1r6mpue { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7jUFy .framer-19k26fg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1d65pad { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1y4vm6y, .framer-7jUFy .framer-1l6m6iq, .framer-7jUFy .framer-1i59b4j { aspect-ratio: 0.9969879518072289 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 298px); overflow: visible; position: relative; width: 1px; }\",\".framer-7jUFy .framer-b99io2, .framer-7jUFy .framer-monise, .framer-7jUFy .framer-1aolcfr { aspect-ratio: 1.501510574018127 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1.5 0 0px; height: var(--framer-aspect-ratio-supported, 297px); overflow: visible; position: relative; width: 1px; }\",\".framer-7jUFy .framer-1747qua, .framer-7jUFy .framer-1344oyw, .framer-7jUFy .framer-18yfzdw { aspect-ratio: 1 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 297px); overflow: visible; position: relative; width: 1px; }\",\".framer-7jUFy .framer-17zfhqp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-feztk2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-2w5sx5 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 42px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 60px 50px 60px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1g81uv2-container { flex: none; height: 210px; max-width: 1440px; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1ew9ejf-container, .framer-7jUFy .framer-givejw-container, .framer-7jUFy .framer-1jhf6dd-container, .framer-7jUFy .framer-fbe391-container, .framer-7jUFy .framer-q77un4-container, .framer-7jUFy .framer-wycdyb-container { height: 220px; position: relative; width: 393px; }\",\".framer-7jUFy .framer-12i6q0l-container, .framer-7jUFy .framer-zk4m3k-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-7jUFy .framer-1vhu6e1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7jUFy.framer-1gsyoet, .framer-7jUFy .framer-hyrtrr, .framer-7jUFy .framer-1c6n48b, .framer-7jUFy .framer-rk2a8d, .framer-7jUFy .framer-1r8c027, .framer-7jUFy .framer-4ioaps, .framer-7jUFy .framer-axp7wm, .framer-7jUFy .framer-14qevux, .framer-7jUFy .framer-1ksh3o5, .framer-7jUFy .framer-1li71gd, .framer-7jUFy .framer-qe4xor, .framer-7jUFy .framer-1qyxyge, .framer-7jUFy .framer-r5m0n3, .framer-7jUFy .framer-1c3izp1, .framer-7jUFy .framer-10ujmyu, .framer-7jUFy .framer-1cp91es, .framer-7jUFy .framer-18qihl7, .framer-7jUFy .framer-3hijjm, .framer-7jUFy .framer-1b34of2, .framer-7jUFy .framer-a8f2sy, .framer-7jUFy .framer-1h0u4k1, .framer-7jUFy .framer-cfary, .framer-7jUFy .framer-2szs6a, .framer-7jUFy .framer-1xdo6z2, .framer-7jUFy .framer-xzpbb4, .framer-7jUFy .framer-1o7133q, .framer-7jUFy .framer-19k26fg, .framer-7jUFy .framer-1d65pad, .framer-7jUFy .framer-17zfhqp, .framer-7jUFy .framer-feztk2, .framer-7jUFy .framer-2w5sx5, .framer-7jUFy .framer-1vhu6e1, .framer-7jUFy .framer-o8a02d { gap: 0px; } .framer-7jUFy.framer-1gsyoet > *, .framer-7jUFy .framer-rk2a8d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7jUFy.framer-1gsyoet > :first-child, .framer-7jUFy .framer-1c6n48b > :first-child, .framer-7jUFy .framer-rk2a8d > :first-child, .framer-7jUFy .framer-axp7wm > :first-child, .framer-7jUFy .framer-14qevux > :first-child, .framer-7jUFy .framer-1ksh3o5 > :first-child, .framer-7jUFy .framer-1li71gd > :first-child, .framer-7jUFy .framer-qe4xor > :first-child, .framer-7jUFy .framer-r5m0n3 > :first-child, .framer-7jUFy .framer-3hijjm > :first-child, .framer-7jUFy .framer-2szs6a > :first-child, .framer-7jUFy .framer-xzpbb4 > :first-child, .framer-7jUFy .framer-19k26fg > :first-child, .framer-7jUFy .framer-2w5sx5 > :first-child, .framer-7jUFy .framer-1vhu6e1 > :first-child, .framer-7jUFy .framer-o8a02d > :first-child { margin-top: 0px; } .framer-7jUFy.framer-1gsyoet > :last-child, .framer-7jUFy .framer-1c6n48b > :last-child, .framer-7jUFy .framer-rk2a8d > :last-child, .framer-7jUFy .framer-axp7wm > :last-child, .framer-7jUFy .framer-14qevux > :last-child, .framer-7jUFy .framer-1ksh3o5 > :last-child, .framer-7jUFy .framer-1li71gd > :last-child, .framer-7jUFy .framer-qe4xor > :last-child, .framer-7jUFy .framer-r5m0n3 > :last-child, .framer-7jUFy .framer-3hijjm > :last-child, .framer-7jUFy .framer-2szs6a > :last-child, .framer-7jUFy .framer-xzpbb4 > :last-child, .framer-7jUFy .framer-19k26fg > :last-child, .framer-7jUFy .framer-2w5sx5 > :last-child, .framer-7jUFy .framer-1vhu6e1 > :last-child, .framer-7jUFy .framer-o8a02d > :last-child { margin-bottom: 0px; } .framer-7jUFy .framer-hyrtrr > *, .framer-7jUFy .framer-1qyxyge > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7jUFy .framer-hyrtrr > :first-child, .framer-7jUFy .framer-1r8c027 > :first-child, .framer-7jUFy .framer-4ioaps > :first-child, .framer-7jUFy .framer-1qyxyge > :first-child, .framer-7jUFy .framer-1c3izp1 > :first-child, .framer-7jUFy .framer-10ujmyu > :first-child, .framer-7jUFy .framer-1cp91es > :first-child, .framer-7jUFy .framer-18qihl7 > :first-child, .framer-7jUFy .framer-1b34of2 > :first-child, .framer-7jUFy .framer-a8f2sy > :first-child, .framer-7jUFy .framer-1h0u4k1 > :first-child, .framer-7jUFy .framer-cfary > :first-child, .framer-7jUFy .framer-1xdo6z2 > :first-child, .framer-7jUFy .framer-1o7133q > :first-child, .framer-7jUFy .framer-1d65pad > :first-child, .framer-7jUFy .framer-17zfhqp > :first-child, .framer-7jUFy .framer-feztk2 > :first-child { margin-left: 0px; } .framer-7jUFy .framer-hyrtrr > :last-child, .framer-7jUFy .framer-1r8c027 > :last-child, .framer-7jUFy .framer-4ioaps > :last-child, .framer-7jUFy .framer-1qyxyge > :last-child, .framer-7jUFy .framer-1c3izp1 > :last-child, .framer-7jUFy .framer-10ujmyu > :last-child, .framer-7jUFy .framer-1cp91es > :last-child, .framer-7jUFy .framer-18qihl7 > :last-child, .framer-7jUFy .framer-1b34of2 > :last-child, .framer-7jUFy .framer-a8f2sy > :last-child, .framer-7jUFy .framer-1h0u4k1 > :last-child, .framer-7jUFy .framer-cfary > :last-child, .framer-7jUFy .framer-1xdo6z2 > :last-child, .framer-7jUFy .framer-1o7133q > :last-child, .framer-7jUFy .framer-1d65pad > :last-child, .framer-7jUFy .framer-17zfhqp > :last-child, .framer-7jUFy .framer-feztk2 > :last-child { margin-right: 0px; } .framer-7jUFy .framer-1c6n48b > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-7jUFy .framer-1r8c027 > * { margin: 0px; margin-left: calc(316px / 2); margin-right: calc(316px / 2); } .framer-7jUFy .framer-4ioaps > *, .framer-7jUFy .framer-1c3izp1 > *, .framer-7jUFy .framer-10ujmyu > *, .framer-7jUFy .framer-1cp91es > *, .framer-7jUFy .framer-18qihl7 > *, .framer-7jUFy .framer-1b34of2 > *, .framer-7jUFy .framer-a8f2sy > *, .framer-7jUFy .framer-1h0u4k1 > *, .framer-7jUFy .framer-cfary > *, .framer-7jUFy .framer-1xdo6z2 > *, .framer-7jUFy .framer-1o7133q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7jUFy .framer-axp7wm > *, .framer-7jUFy .framer-14qevux > *, .framer-7jUFy .framer-1li71gd > *, .framer-7jUFy .framer-o8a02d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7jUFy .framer-1ksh3o5 > *, .framer-7jUFy .framer-1vhu6e1 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-7jUFy .framer-qe4xor > *, .framer-7jUFy .framer-r5m0n3 > *, .framer-7jUFy .framer-3hijjm > *, .framer-7jUFy .framer-2szs6a > *, .framer-7jUFy .framer-2w5sx5 > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-7jUFy .framer-xzpbb4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7jUFy .framer-19k26fg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-7jUFy .framer-1d65pad > *, .framer-7jUFy .framer-17zfhqp > *, .framer-7jUFy .framer-feztk2 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 1920px) { .framer-7jUFy.framer-1gsyoet { width: 1920px; } .framer-7jUFy .framer-1waxyfl-container { order: 0; } .framer-7jUFy .framer-hyrtrr { order: 1; } .framer-7jUFy .framer-4ioaps { height: 500px; } .framer-7jUFy .framer-axp7wm { order: 2; } .framer-7jUFy .framer-r7jwc9 { height: 100vh; } .framer-7jUFy .framer-nyf04e { height: auto; max-width: 1440px; } .framer-7jUFy .framer-qe4xor { order: 5; } .framer-7jUFy .framer-1ipzp0v, .framer-7jUFy .framer-1c1ybl3, .framer-7jUFy .framer-3jy1yv, .framer-7jUFy .framer-1mq8z6l { height: var(--framer-aspect-ratio-supported, 61px); } .framer-7jUFy .framer-ptmjvh, .framer-7jUFy .framer-1qz1x9c { height: var(--framer-aspect-ratio-supported, 62px); } .framer-7jUFy .framer-2szs6a { order: 6; } .framer-7jUFy .framer-1y4vm6y, .framer-7jUFy .framer-1l6m6iq, .framer-7jUFy .framer-1i59b4j { height: var(--framer-aspect-ratio-supported, 367px); } .framer-7jUFy .framer-b99io2, .framer-7jUFy .framer-1747qua, .framer-7jUFy .framer-monise, .framer-7jUFy .framer-1344oyw, .framer-7jUFy .framer-18yfzdw, .framer-7jUFy .framer-1aolcfr { height: var(--framer-aspect-ratio-supported, 366px); } .framer-7jUFy .framer-2w5sx5 { order: 7; overflow: visible; } .framer-7jUFy .framer-19qbw24 { white-space: pre; width: auto; } .framer-7jUFy .framer-1g81uv2-container { height: 265px; } .framer-7jUFy .framer-12i6q0l-container { order: 8; } .framer-7jUFy .framer-1vhu6e1 { order: 4; }}\",\"@media (max-width: 1199px) { .framer-7jUFy.framer-1gsyoet { width: 390px; } .framer-7jUFy .framer-1waxyfl-container { order: 0; width: 100%; } .framer-7jUFy .framer-hyrtrr { flex-direction: column; gap: 10px; justify-content: flex-start; order: 1; padding: 0px 20px 30px 20px; } .framer-7jUFy .framer-1c6n48b { align-self: unset; flex: none; height: min-content; justify-content: flex-start; order: 1; overflow: visible; width: 100%; } .framer-7jUFy .framer-rk2a8d { justify-content: center; width: 100%; } .framer-7jUFy .framer-1r8c027 { gap: 276px; left: 52%; top: 6px; } .framer-7jUFy .framer-177kskm { height: var(--framer-aspect-ratio-supported, 46px); width: 46px; } .framer-7jUFy .framer-oy3ihe { height: var(--framer-aspect-ratio-supported, 55px); width: 55px; } .framer-7jUFy .framer-po4ooq, .framer-7jUFy .framer-1ekfpbe { width: 100%; } .framer-7jUFy .framer-4ioaps { border-bottom-right-radius: unset; flex: none; height: 300px; order: 0; width: 100%; } .framer-7jUFy .framer-axp7wm { height: 100vh; order: 2; } .framer-7jUFy .framer-r7jwc9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; padding: 0px; } .framer-7jUFy .framer-14qevux { background: linear-gradient(180deg, rgba(165, 196, 230, 0) 22%, rgb(7, 23, 39) 47%); flex: 1 0 0px; height: 100%; left: unset; padding: 0px 20px 40px 20px; position: relative; top: unset; width: 1px; } .framer-7jUFy .framer-nyf04e { height: auto; } .framer-7jUFy .framer-1ksh3o5 { gap: 40px; height: min-content; order: 3; padding: 70px 20px 20px 20px; } .framer-7jUFy .framer-1li71gd, .framer-7jUFy .framer-1c3izp1, .framer-7jUFy .framer-10ujmyu, .framer-7jUFy .framer-1cp91es, .framer-7jUFy .framer-18qihl7, .framer-7jUFy .framer-1b34of2, .framer-7jUFy .framer-a8f2sy, .framer-7jUFy .framer-1h0u4k1, .framer-7jUFy .framer-cfary, .framer-7jUFy .framer-1o7133q { width: 90%; } .framer-7jUFy .framer-nz2plp-container { flex: none; height: auto; } .framer-7jUFy .framer-qe4xor { order: 4; padding: 40px; } .framer-7jUFy .framer-1qyxyge { flex-direction: column; gap: 42px; } .framer-7jUFy .framer-r5m0n3, .framer-7jUFy .framer-3hijjm { flex: none; width: 100%; } .framer-7jUFy .framer-1skvfnm, .framer-7jUFy .framer-1xcpfhh, .framer-7jUFy .framer-oj8hug, .framer-7jUFy .framer-iiqnrd, .framer-7jUFy .framer-1m6a9dg, .framer-7jUFy .framer-7v8k0z, .framer-7jUFy .framer-2p2ujn, .framer-7jUFy .framer-epu6j1 { flex: none; width: 80%; } .framer-7jUFy .framer-1ipzp0v, .framer-7jUFy .framer-1c1ybl3, .framer-7jUFy .framer-3jy1yv, .framer-7jUFy .framer-1mq8z6l { height: var(--framer-aspect-ratio-supported, 61px); } .framer-7jUFy .framer-2szs6a { order: 5; } .framer-7jUFy .framer-xzpbb4 { padding: 20px; } .framer-7jUFy .framer-1r6mpue { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-7jUFy .framer-1d65pad, .framer-7jUFy .framer-feztk2 { align-content: center; align-items: center; flex-direction: column; } .framer-7jUFy .framer-1y4vm6y, .framer-7jUFy .framer-1l6m6iq, .framer-7jUFy .framer-1i59b4j { flex: none; height: var(--framer-aspect-ratio-supported, 201px); width: 100%; } .framer-7jUFy .framer-b99io2, .framer-7jUFy .framer-monise, .framer-7jUFy .framer-1aolcfr { flex: none; height: var(--framer-aspect-ratio-supported, 133px); width: 150%; } .framer-7jUFy .framer-1747qua, .framer-7jUFy .framer-1344oyw, .framer-7jUFy .framer-18yfzdw { flex: none; height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-7jUFy .framer-17zfhqp { flex-direction: column; } .framer-7jUFy .framer-2w5sx5 { order: 6; padding: 50px 10px 80px 10px; } .framer-7jUFy .framer-19qbw24 { width: 89%; } .framer-7jUFy .framer-1g81uv2-container { height: 233px; } .framer-7jUFy .framer-12i6q0l-container { order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7jUFy .framer-hyrtrr, .framer-7jUFy .framer-1r8c027, .framer-7jUFy .framer-r7jwc9, .framer-7jUFy .framer-1ksh3o5, .framer-7jUFy .framer-1qyxyge, .framer-7jUFy .framer-1d65pad, .framer-7jUFy .framer-17zfhqp, .framer-7jUFy .framer-feztk2 { gap: 0px; } .framer-7jUFy .framer-hyrtrr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7jUFy .framer-hyrtrr > :first-child, .framer-7jUFy .framer-1ksh3o5 > :first-child, .framer-7jUFy .framer-1qyxyge > :first-child, .framer-7jUFy .framer-1d65pad > :first-child, .framer-7jUFy .framer-17zfhqp > :first-child, .framer-7jUFy .framer-feztk2 > :first-child { margin-top: 0px; } .framer-7jUFy .framer-hyrtrr > :last-child, .framer-7jUFy .framer-1ksh3o5 > :last-child, .framer-7jUFy .framer-1qyxyge > :last-child, .framer-7jUFy .framer-1d65pad > :last-child, .framer-7jUFy .framer-17zfhqp > :last-child, .framer-7jUFy .framer-feztk2 > :last-child { margin-bottom: 0px; } .framer-7jUFy .framer-1r8c027 > * { margin: 0px; margin-left: calc(276px / 2); margin-right: calc(276px / 2); } .framer-7jUFy .framer-1r8c027 > :first-child, .framer-7jUFy .framer-r7jwc9 > :first-child { margin-left: 0px; } .framer-7jUFy .framer-1r8c027 > :last-child, .framer-7jUFy .framer-r7jwc9 > :last-child { margin-right: 0px; } .framer-7jUFy .framer-r7jwc9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7jUFy .framer-1ksh3o5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7jUFy .framer-1qyxyge > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-7jUFy .framer-1d65pad > *, .framer-7jUFy .framer-17zfhqp > *, .framer-7jUFy .framer-feztk2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4454\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"H9d7JPWHD\":{\"layout\":[\"fixed\",\"auto\"]},\"YqVetFvtq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramertD4tOP7P5=withCSS(Component,css,\"framer-7jUFy\");export default FramertD4tOP7P5;FramertD4tOP7P5.displayName=\"Page\";FramertD4tOP7P5.defaultProps={height:4454,width:1200};addFonts(FramertD4tOP7P5,[{explicitInter:true,fonts:[{family:\"Agrandir Grand Heavy\",source:\"custom\",url:\"https://framerusercontent.com/assets/TjZO3F2bzr85ciuOBFc9nmB4o.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"}]},...NavigationCopyFonts,...EmbedFonts,...YouTubeFonts,...SlideshowFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertD4tOP7P5\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"4454\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H9d7JPWHD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YqVetFvtq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withHover", "Component", "props", "p", "NavigationCopyFonts", "getFonts", "F4cJJbvqc_default", "EmbedFonts", "Embed", "MotionDivWithFX", "withFX", "motion", "YouTubeFonts", "Youtube", "YouTubeWithHoverfbe391", "withCodeBoundaryForOverrides", "withHover", "SlideshowFonts", "Slideshow", "FooterFonts", "KeljBMQxo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "Image2", "x", "RichText2", "css", "FramertD4tOP7P5", "withCSS", "tD4tOP7P5_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
