{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/La9fV7Wv1NumOrYpQqB4/n8N7MfBAWwQGaDvzQ69n/SVGUploader.js", "ssg:https://framerusercontent.com/modules/j7bCsrIFynkBiwdyDyE6/CeMr2XsF9jChUA53qREs/AocATX7mG.js", "ssg:https://framerusercontent.com/modules/zZVCMrpme0FucFtQlvhZ/tvKatoalwQ3r4tSgqaft/L4fVq1Wwt.js", "ssg:https://framerusercontent.com/modules/hLF1hTbIxXUCxqAwnHPR/6lfSHlZqWwfJNZLYqEpI/r3imLFNfN.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState,useMemo,useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";/**\n * @copyright \u00A9framersnippets.com\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 100\n * @framerDisableUnlink\n **/export default function SvgUploader({svgPath,strokeSize,strokeColor,fillColor}){const[state,setState]=useState({pathData:\"\",viewBox:\"\",isLoading:false,isSvgLoaded:false});const uniqueId=useMemo(()=>`curve-${Math.random().toString(36).substr(2,9)}`,[]);const fetchSVG=useCallback(async()=>{if(!svgPath){setState({pathData:\"\",viewBox:\"\",isSvgLoaded:false,isLoading:false});return;}setState(prevState=>({...prevState,isLoading:true}));try{const response=await fetch(svgPath);if(!response.ok)throw new Error(\"Failed to fetch SVG\");const svgContent=await response.text();const parser=new DOMParser;const svgDoc=parser.parseFromString(svgContent,\"image/svg+xml\");const svgElement=svgDoc.querySelector(\"svg\");const svgPathElement=svgDoc.querySelector(\"path, ellipse, circle, rect, polygon, polyline\");if(svgPathElement&&svgElement){const pathData=svgPathElement.tagName.toLowerCase()===\"path\"?svgPathElement.getAttribute(\"d\"):svgElementToPath(svgPathElement);const width=svgElement.getAttribute(\"width\")||\"100%\";const height=svgElement.getAttribute(\"height\")||\"100%\";const viewBox=svgElement.getAttribute(\"viewBox\")||`0 0 ${parseFloat(width)||100} ${parseFloat(height)||100}`;setState({pathData,viewBox,isLoading:false,isSvgLoaded:true});}else{throw new Error(\"Invalid SVG structure\");}}catch(error){console.error(\"Error fetching SVG:\",error);setState({pathData:\"\",viewBox:\"\",isSvgLoaded:false,isLoading:false});}},[svgPath]);useEffect(()=>{fetchSVG();},[svgPath,fetchSVG]);if(state.isLoading||!state.isSvgLoaded)return null;return /*#__PURE__*/_jsxs(motion.svg,{width:\"100%\",height:\"100%\",viewBox:state.viewBox||\"0 0 100 100\",preserveAspectRatio:\"xMidYMid meet\",overflow:\"visible\",children:[/*#__PURE__*/_jsx(\"defs\",{children:/*#__PURE__*/_jsx(\"path\",{id:uniqueId,d:state.pathData})}),/*#__PURE__*/_jsx(\"use\",{href:`#${uniqueId}`,stroke:strokeColor,strokeWidth:strokeSize,fill:fillColor||\"none\",x:\"0\",y:\"0\"})]});}addPropertyControls(SvgUploader,{svgPath:{type:ControlType.File,title:\"SVG\",allowedFileTypes:[\"svg\"],description:\"Must be a single open or closed vector path.\"},strokeSize:{type:ControlType.Number,title:\"Stroke\",min:0,max:100,defaultValue:1,step:.1,displayStepper:true},strokeColor:{type:ControlType.Color,title:\"\u200E\",defaultValue:\"#000000\"},fillColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"transparent\",description:`\nImportant: Update the component in Framer (Assets > Components > Click purple update button) to prevent crashes.\n`}});const svgElementToPath=element=>{const type=element.tagName.toLowerCase();const handlers={ellipse:ellipseToPath,circle:circleToPath,rect:rectToPath,polygon:polygonToPath,polyline:polylineToPath};return handlers[type]?handlers[type](element):\"\";};const ellipseToPath=ellipse=>{const cx=parseFloat(ellipse.getAttribute(\"cx\"));const cy=parseFloat(ellipse.getAttribute(\"cy\"));const rx=parseFloat(ellipse.getAttribute(\"rx\"));const ry=parseFloat(ellipse.getAttribute(\"ry\"));return`M${cx-rx},${cy}A${rx},${ry} 0 1,0 ${cx+rx},${cy}A${rx},${ry} 0 1,0 ${cx-rx},${cy}`;};const circleToPath=circle=>{const cx=parseFloat(circle.getAttribute(\"cx\"));const cy=parseFloat(circle.getAttribute(\"cy\"));const r=parseFloat(circle.getAttribute(\"r\"));return`M${cx-r},${cy}A${r},${r} 0 1,0 ${cx+r},${cy}A${r},${r} 0 1,0 ${cx-r},${cy}`;};const rectToPath=rect=>{const x=parseFloat(rect.getAttribute(\"x\"));const y=parseFloat(rect.getAttribute(\"y\"));const width=parseFloat(rect.getAttribute(\"width\"));const height=parseFloat(rect.getAttribute(\"height\"));return`M${x},${y}H${x+width}V${y+height}H${x}Z`;};const polygonToPath=polygon=>{const points=polygon.getAttribute(\"points\").split(\" \");return points.reduce((acc,point,i)=>i===0?`M${point.split(\",\")[0]},${point.split(\",\")[1]}`:`${acc}L${point.split(\",\")[0]},${point.split(\",\")[1]}`,\"\")+\"Z\";};const polylineToPath=polyline=>{const points=polyline.getAttribute(\"points\").split(\" \");return points.reduce((acc,point,i)=>i===0?`M${point.split(\",\")[0]},${point.split(\",\")[1]}`:`${acc}L${point.split(\",\")[0]},${point.split(\",\")[1]}`,\"\");};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SvgUploader\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"100\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVGUploader.map", "// Generated by Framer (0b8b5e5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-R85Ku .framer-styles-preset-zvc2h5:not(.rich-text-wrapper), .framer-R85Ku .framer-styles-preset-zvc2h5.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.025em; --framer-line-height: 165%; --framer-paragraph-spacing: 18px; --framer-text-alignment: start; --framer-text-color: var(--token-efe53e96-d8f3-408f-89ca-6ae2c9ca6339, #202020); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1839px) and (min-width: 1560px) { .framer-R85Ku .framer-styles-preset-zvc2h5:not(.rich-text-wrapper), .framer-R85Ku .framer-styles-preset-zvc2h5.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.025em; --framer-line-height: 165%; --framer-paragraph-spacing: 17px; --framer-text-alignment: start; --framer-text-color: var(--token-efe53e96-d8f3-408f-89ca-6ae2c9ca6339, #202020); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1559px) and (min-width: 1200px) { .framer-R85Ku .framer-styles-preset-zvc2h5:not(.rich-text-wrapper), .framer-R85Ku .framer-styles-preset-zvc2h5.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.025em; --framer-line-height: 170%; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-efe53e96-d8f3-408f-89ca-6ae2c9ca6339, #202020); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-R85Ku .framer-styles-preset-zvc2h5:not(.rich-text-wrapper), .framer-R85Ku .framer-styles-preset-zvc2h5.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.03em; --framer-line-height: 170%; --framer-paragraph-spacing: 15px; --framer-text-alignment: start; --framer-text-color: var(--token-efe53e96-d8f3-408f-89ca-6ae2c9ca6339, #202020); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-R85Ku .framer-styles-preset-zvc2h5:not(.rich-text-wrapper), .framer-R85Ku .framer-styles-preset-zvc2h5.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.035em; --framer-line-height: 175%; --framer-paragraph-spacing: 14px; --framer-text-alignment: start; --framer-text-color: var(--token-efe53e96-d8f3-408f-89ca-6ae2c9ca6339, #202020); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-R85Ku\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0b8b5e5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-n98T9 .framer-styles-preset-11yslqb:not(.rich-text-wrapper), .framer-n98T9 .framer-styles-preset-11yslqb.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.03em; --framer-line-height: 170%; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-efe53e96-d8f3-408f-89ca-6ae2c9ca6339, #202020); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1839px) and (min-width: 1560px) { .framer-n98T9 .framer-styles-preset-11yslqb:not(.rich-text-wrapper), .framer-n98T9 .framer-styles-preset-11yslqb.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.03em; --framer-line-height: 170%; --framer-paragraph-spacing: 15px; --framer-text-alignment: start; --framer-text-color: var(--token-efe53e96-d8f3-408f-89ca-6ae2c9ca6339, #202020); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1559px) and (min-width: 1200px) { .framer-n98T9 .framer-styles-preset-11yslqb:not(.rich-text-wrapper), .framer-n98T9 .framer-styles-preset-11yslqb.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.03em; --framer-line-height: 175%; --framer-paragraph-spacing: 14px; --framer-text-alignment: start; --framer-text-color: var(--token-efe53e96-d8f3-408f-89ca-6ae2c9ca6339, #202020); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-n98T9 .framer-styles-preset-11yslqb:not(.rich-text-wrapper), .framer-n98T9 .framer-styles-preset-11yslqb.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 11px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.035em; --framer-line-height: 175%; --framer-paragraph-spacing: 13px; --framer-text-alignment: start; --framer-text-color: var(--token-efe53e96-d8f3-408f-89ca-6ae2c9ca6339, #202020); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-n98T9 .framer-styles-preset-11yslqb:not(.rich-text-wrapper), .framer-n98T9 .framer-styles-preset-11yslqb.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0.04em; --framer-line-height: 180%; --framer-paragraph-spacing: 12px; --framer-text-alignment: start; --framer-text-color: var(--token-efe53e96-d8f3-408f-89ca-6ae2c9ca6339, #202020); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-n98T9\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Grain from\"https://framerusercontent.com/modules/cKGD16u2MGB7MfqfVXFp/wiztTCbXokZrMicHAmZc/Grain.js\";import CustomScrollBar from\"https://framerusercontent.com/modules/L3dAtAceOc3nYXHa5ZHx/Fp0rsApm8d35hK2flGJR/New_custom_scrollbar.js\";import SvgUploader from\"https://framerusercontent.com/modules/La9fV7Wv1NumOrYpQqB4/n8N7MfBAWwQGaDvzQ69n/SVGUploader.js\";import TextSelectionColor from\"https://framerusercontent.com/modules/mEV8fSphKozvtoGdQ1R9/3IhMI5W2gujZdcJW1caJ/New_Text_Selection_Color.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import K180StudiosWorkTickerImage from\"#framer/local/canvasComponent/BY55NWMDd/BY55NWMDd.js\";import K180StudiosNewsletter from\"#framer/local/canvasComponent/EQNARCjXs/EQNARCjXs.js\";import K180StudiosButton from\"#framer/local/canvasComponent/mxMgpmgMI/mxMgpmgMI.js\";import K180StudiosFooterComponent from\"#framer/local/canvasComponent/NF9TaMP3I/NF9TaMP3I.js\";import NavigationNavigation from\"#framer/local/canvasComponent/sO14iKaIH/sO14iKaIH.js\";import K180StudiosContactForm from\"#framer/local/canvasComponent/xcf4cdE4d/xcf4cdE4d.js\";import*as sharedStyle from\"#framer/local/css/AocATX7mG/AocATX7mG.js\";import*as sharedStyle2 from\"#framer/local/css/IB5LYDax2/IB5LYDax2.js\";import*as sharedStyle1 from\"#framer/local/css/L4fVq1Wwt/L4fVq1Wwt.js\";import*as sharedStyle5 from\"#framer/local/css/lXmvpAMHb/lXmvpAMHb.js\";import*as sharedStyle3 from\"#framer/local/css/nYDy24lQM/nYDy24lQM.js\";import*as sharedStyle4 from\"#framer/local/css/ynetr5_84/ynetr5_84.js\";import metadataProvider from\"#framer/local/webPageMetadata/r3imLFNfN/r3imLFNfN.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const CustomScrollBarFonts=getFonts(CustomScrollBar);const TextSelectionColorFonts=getFonts(TextSelectionColor);const GrainFonts=getFonts(Grain);const SvgUploaderFonts=getFonts(SvgUploader);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const PhosphorFonts=getFonts(Phosphor);const MotionAWithFX=withFX(motion.a);const ImageWithFX=withFX(Image);const NavigationNavigationFonts=getFonts(NavigationNavigation);const NavigationNavigationWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const K180StudiosWorkTickerImageFonts=getFonts(K180StudiosWorkTickerImage);const TickerFonts=getFonts(Ticker);const K180StudiosButtonFonts=getFonts(K180StudiosButton);const K180StudiosContactFormFonts=getFonts(K180StudiosContactForm);const K180StudiosNewsletterFonts=getFonts(K180StudiosNewsletter);const K180StudiosFooterComponentFonts=getFonts(K180StudiosFooterComponent);const breakpoints={Alj63u3iH:\"(min-width: 1200px) and (max-width: 1559px)\",CP0RLWRLP:\"(min-width: 1840px)\",J7Fx3UdsR:\"(min-width: 1560px) and (max-width: 1839px)\",lu9Gca0T1:\"(max-width: 809px)\",yb6Yagjd2:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-6wHin\";const variantClassNames={Alj63u3iH:\"framer-v-1fg9a0i\",CP0RLWRLP:\"framer-v-1avq150\",J7Fx3UdsR:\"framer-v-o3vpub\",lu9Gca0T1:\"framer-v-1gcmfsd\",yb6Yagjd2:\"framer-v-gj4oi4\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const transition2={delay:1.4,duration:1.4,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,x:0,y:10};const transition3={delay:.6,duration:.6,ease:[.33,0,.33,1],type:\"tween\"};const transition4={delay:3.2,duration:1.6,ease:[.44,0,.56,1],type:\"tween\"};const transition5={bounce:.2,delay:2,duration:2,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-10};const transition6={delay:1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const transition7={delay:0,duration:4,ease:[0,0,1,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:8};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition8={damping:60,delay:2,mass:1,stiffness:320,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const animation7={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition9={damping:40,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation7,repeat:false,threshold:.5,tokenization:\"character\",transition:transition9,trigger:\"onInView\",type:\"appear\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Desktop\":\"CP0RLWRLP\",Desktop:\"J7Fx3UdsR\",Laptop:\"Alj63u3iH\",Phone:\"lu9Gca0T1\",Tablet:\"yb6Yagjd2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Alj63u3iH\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"qLhcSi5Dk\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"lu9Gca0T1\")return false;return true;};const ref2=React.useRef(null);const elementId1=useRouteElementId(\"RxnUL4Nol\");const elementId2=useRouteElementId(\"Z0VWdTp0Y\");const ref3=React.useRef(null);const router=useRouter();const elementId3=useRouteElementId(\"aYfkQZwuP\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"tDV70eEZV\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"YhF2D_2_S\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"oUht2SLln\");const ref7=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"yb6Yagjd2\",\"lu9Gca0T1\"].includes(baseVariant))return false;return true;};const elementId7=useRouteElementId(\"utiaS2Cs8\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"esfs3sTO3\");const ref9=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Alj63u3iH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-71560297-6ad5-4045-9fc4-9486a789103f, rgb(253, 252, 253)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1fg9a0i\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ueipl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rl7De_ISZ\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"rl7De_ISZ\",intensity:24,layoutId:\"rl7De_ISZ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ty6adi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qgLEth2m6\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(CustomScrollBar,{color:\"var(--token-83189ee3-a8f0-48e6-a50c-360a9c50ac0c, rgb(37, 162, 74))\",enabled:true,height:\"100%\",id:\"qgLEth2m6\",layoutId:\"qgLEth2m6\",style:{height:\"100%\",width:\"100%\"},trackColor:\"var(--token-56c85bdc-f5cf-41bc-b274-3989a97eb4a6, rgb(250, 249, 251))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10siffz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rRo1ngb4a\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(TextSelectionColor,{backgroundColor:\"var(--token-9af0e493-9510-488c-8c83-887fd1645436, rgb(242, 239, 243))\",height:\"100%\",id:\"rRo1ngb4a\",layoutId:\"rRo1ngb4a\",style:{height:\"100%\",width:\"100%\"},textColor:\"var(--token-83189ee3-a8f0-48e6-a50c-360a9c50ac0c, rgb(37, 162, 74))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-23z82z-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"SmmBh1ifA\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(Grain,{height:\"100%\",id:\"SmmBh1ifA\",layoutId:\"SmmBh1ifA\",opacity:.02,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lu9Gca0T1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200),pixelHeight:803,pixelWidth:1920,positionX:\"63.7%\",positionY:\"29.8%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png\",srcSet:\"https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png 1920w\"}},yb6Yagjd2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200),pixelHeight:803,pixelWidth:1920,positionX:\"59.3%\",positionY:\"23.3%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png\",srcSet:\"https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,as:\"header\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200),pixelHeight:803,pixelWidth:1920,positionX:\"43.2%\",positionY:\"3.9%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png\",srcSet:\"https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N9rVTXkw2k0IYBZ7XC3z2SlpcU.png 1920w\"},className:\"framer-13evh3c\",\"data-framer-name\":\"01-hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1el5hez\",\"data-framer-name\":\"Content-Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i934d5\",\"data-framer-name\":\"Hero-Image-With-Gradient-Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yr9com\",\"data-framer-name\":\"hero-floaters-cta-stack\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hqab5w\",\"data-framer-name\":\"headline-text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-on119v\",\"data-framer-name\":\"Floaters-Logo-Stack\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8whsgt-container\",\"data-framer-name\":\"Floaters-SVG\",isAuthoredByUser:true,isModuleExternal:true,name:\"Floaters-SVG\",nodeId:\"kEbReXbLF\",rendersWithMotion:true,scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(SvgUploader,{fillColor:\"var(--token-ec511405-1f1e-4f70-8290-6ea8b52e1d57, rgb(0, 144, 255))\",height:\"100%\",id:\"kEbReXbLF\",layoutId:\"kEbReXbLF\",name:\"Floaters-SVG\",strokeColor:\"var(--token-ec511405-1f1e-4f70-8290-6ea8b52e1d57, rgb(0, 144, 255))\",strokeSize:0,style:{height:\"100%\",width:\"100%\"},svgPath:\"https://framerusercontent.com/assets/AED96fQpZRWhJhL3CzaJLa0R0xg.svg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":tPr5cPc4z\",webPageId:\"pD_eoEjGO\"},motionChild:true,nodeId:\"jHfmijtkJ\",openInNewTab:false,scopeId:\"r3imLFNfN\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-iydq1g framer-351ri0\",\"data-framer-name\":\"cta-stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lu9Gca0T1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11yslqb\",\"data-styles-preset\":\"L4fVq1Wwt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(238, 238, 240, 0.99)\"},children:\"Coming Soon\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zvc2h5\",\"data-styles-preset\":\"AocATX7mG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(238, 238, 240, 0.99)\"},children:\"Coming Soon\"})}),className:\"framer-1ej1utg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lu9Gca0T1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11yslqb\",\"data-styles-preset\":\"L4fVq1Wwt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(238, 238, 240, 0.99)\"},children:\"Learn More\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zvc2h5\",\"data-styles-preset\":\"AocATX7mG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(238, 238, 240, 0.99)\"},children:\"Learn More\"})}),className:\"framer-1g91e5c\",\"data-framer-name\":\"Learn More\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{__framer__styleAppearEffectEnabled:undefined},J7Fx3UdsR:{__framer__styleAppearEffectEnabled:undefined},lu9Gca0T1:{__framer__styleAppearEffectEnabled:undefined},yb6Yagjd2:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.2,className:\"framer-pd3n0s\",\"data-framer-name\":\"Bottom-Gradient\"})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":RxnUL4Nol\",webPageId:\"r3imLFNfN\"},motionChild:true,nodeId:\"Zt3bCLSW7\",openInNewTab:false,scopeId:\"r3imLFNfN\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation3,__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cbgy8p hidden-1gcmfsd framer-351ri0\",\"data-framer-name\":\"down-arrow\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ce4zwa-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Gxydq21x3\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgba(238, 238, 240, 0.99)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowDown\",id:\"Gxydq21x3\",layoutId:\"Gxydq21x3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-oiko23-container\",\"data-framer-appear-id\":\"oiko23\",initial:animation6,layoutScroll:true,nodeId:\"ouEh6gth8\",optimized:true,rendersWithMotion:true,scopeId:\"r3imLFNfN\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lu9Gca0T1:{__framer__variantAppearEffectEnabled:undefined,variant:\"MxNhVFZvw\"},yb6Yagjd2:{__framer__variantAppearEffectEnabled:undefined,variant:\"MxNhVFZvw\"}},children:/*#__PURE__*/_jsx(NavigationNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"HLSndoVeW\"},{ref:ref2,target:\"LEyvpr6fp\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ouEh6gth8\",layoutId:\"ouEh6gth8\",style:{width:\"100%\"},variant:\"HLSndoVeW\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1tv8lf4\",\"data-framer-name\":\"All-Other-Stacks\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wngcky\",\"data-framer-name\":\"02-intro\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12hhbdb\",\"data-framer-name\":\"media-text-stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jvog0u\",\"data-framer-name\":\"logo-video-stack\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7c2hs7\",\"data-framer-name\":\"K180/Logo/Full\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J7Fx3UdsR:{svgContentId:10674076893},lu9Gca0T1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 400 93\"><path d=\"M 153.803 10.979 L 133.05 29.453 L 133.05 34.592 L 149.155 34.592 L 149.155 82.021 L 168.197 82.021 L 168.197 10.979 Z M 249.092 42.707 C 254.759 40.301 257.572 35.897 257.572 29.535 C 257.572 23.173 253.25 15.832 244.566 13.466 C 237.063 11.427 229.112 10.285 220.713 10 L 218.837 10 C 214.026 10.122 209.215 10.449 204.526 11.02 C 199.062 11.713 193.843 13.507 188.91 16.403 C 183.976 19.298 181.489 23.744 181.489 29.657 C 181.489 35.57 184.261 39.934 189.807 42.34 C 186.219 43.768 183.487 45.807 181.611 48.498 C 179.735 51.19 178.838 54.738 178.92 59.183 C 178.92 66.361 181.448 71.663 186.504 75.17 C 191.56 78.677 197.227 80.839 203.466 81.695 C 208.277 82.347 213.455 82.755 218.878 82.918 L 222.996 82.918 C 232.211 82.592 240.407 81.002 247.787 78.065 C 256.064 74.762 260.223 68.441 260.223 59.102 C 260.223 49.763 256.512 45.684 249.132 42.707 Z M 205.912 23.417 C 209.541 22.275 213.904 21.704 218.919 21.623 C 224.179 21.704 228.745 22.316 232.578 23.417 C 236.982 24.722 239.143 26.802 239.143 29.616 C 239.143 32.43 236.982 34.592 232.66 35.815 C 228.827 36.916 224.22 37.446 218.96 37.487 C 213.945 37.446 209.623 36.916 205.994 35.815 C 201.794 34.592 199.715 32.512 199.715 29.616 C 199.715 26.721 201.794 24.722 205.953 23.417 Z M 234.862 67.299 C 230.417 68.808 225.076 69.583 218.878 69.623 C 212.925 69.542 207.788 68.808 203.466 67.299 C 198.654 65.586 196.249 62.854 196.249 59.102 C 196.249 55.35 198.654 52.495 203.466 50.782 C 207.747 49.232 212.925 48.498 218.878 48.417 C 225.035 48.458 230.376 49.232 234.821 50.782 C 239.754 52.495 242.242 55.309 242.242 59.102 C 242.242 62.894 239.754 65.586 234.821 67.299 Z M 313.922 10 C 313.922 10 312.291 10 311.475 10.041 C 296.022 10.612 285.421 14.282 279.713 21.093 C 273.474 28.515 270.335 36.835 270.335 46.051 C 270.131 51.435 271.15 56.859 273.393 62.405 C 275.635 67.951 280.12 72.764 286.97 76.923 C 291.945 79.941 298.469 81.858 306.501 82.674 C 308.825 82.918 317.306 83.041 321.016 82.715 C 333.575 81.532 342.341 77.861 347.234 71.622 C 353.268 63.955 356.286 55.391 356.286 46.011 C 356.286 22.479 342.137 10.53 313.922 10 Z M 335.45 56.899 C 333.779 60.325 330.965 63.098 327.051 65.26 C 323.585 67.136 319.182 68.155 313.881 68.359 C 308.58 68.115 304.136 67.136 300.711 65.26 C 296.838 63.139 294.065 60.325 292.393 56.899 C 290.762 53.474 289.988 49.763 290.11 45.807 C 289.988 42.055 290.721 38.507 292.393 35.244 C 294.065 31.982 296.797 29.331 300.711 27.332 C 304.136 25.579 308.58 24.6 313.881 24.396 C 319.182 24.6 323.585 25.538 327.051 27.332 C 330.965 29.331 333.779 31.982 335.45 35.244 C 337.122 38.507 337.897 42.014 337.774 45.807 C 337.897 49.763 337.122 53.474 335.45 56.899 Z M 43.429 10.979 L 63.449 10.979 L 63.449 82.021 L 43.429 82.021 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path><path d=\"M 68.627 46.541 L 68.668 46.5 L 108.585 10.979 L 95.782 10.979 L 55.906 46.5 L 55.865 46.541 L 63.49 53.596 L 95.579 82.021 L 108.381 82.021 L 76.293 53.596 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path><path d=\"M 82.694 46.541 L 82.776 46.5 L 122.652 10.979 L 109.89 10.979 L 69.973 46.5 L 69.932 46.541 L 77.597 53.596 L 109.686 82.021 L 122.448 82.021 L 90.36 53.596 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path><path d=\"M 96.802 46.541 L 96.843 46.5 L 136.76 10.979 L 123.957 10.979 L 84.04 46.5 L 83.999 46.541 L 91.664 53.596 L 123.753 82.021 L 136.515 82.021 L 104.426 53.596 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path></svg>',svgContentId:8964067546},yb6Yagjd2:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 400 93\"><path d=\"M 144.093 4.18 L 118.977 26.45 L 118.977 32.645 L 138.468 32.645 L 138.468 89.82 L 161.512 89.82 L 161.512 4.18 Z M 259.41 42.428 C 266.269 39.527 269.674 34.218 269.674 26.549 C 269.674 18.879 264.443 10.03 253.933 7.179 C 244.854 4.721 235.232 3.344 225.067 3 L 222.797 3 C 216.974 3.147 211.152 3.541 205.477 4.229 C 198.865 5.065 192.549 7.228 186.578 10.718 C 180.608 14.209 177.598 19.568 177.598 26.696 C 177.598 33.825 180.953 39.085 187.664 41.985 C 183.322 43.706 180.016 46.164 177.746 49.409 C 175.476 52.654 174.39 56.931 174.489 62.289 C 174.489 70.942 177.548 77.333 183.667 81.561 C 189.786 85.789 196.645 88.394 204.194 89.427 C 210.017 90.213 216.284 90.705 222.846 90.902 L 227.83 90.902 C 238.982 90.508 248.9 88.591 257.831 85.051 C 267.848 81.069 272.881 73.449 272.881 62.191 C 272.881 50.933 268.391 46.017 259.46 42.428 Z M 207.155 19.174 C 211.546 17.798 216.826 17.109 222.896 17.011 C 229.261 17.109 234.787 17.847 239.426 19.174 C 244.755 20.747 247.37 23.255 247.37 26.647 C 247.37 30.039 244.755 32.645 239.524 34.12 C 234.886 35.447 229.31 36.086 222.945 36.135 C 216.876 36.086 211.645 35.447 207.254 34.12 C 202.171 32.645 199.655 30.137 199.655 26.647 C 199.655 23.156 202.171 20.747 207.204 19.174 Z M 242.189 72.073 C 236.811 73.892 230.347 74.826 222.846 74.875 C 215.642 74.777 209.425 73.892 204.194 72.073 C 198.372 70.008 195.46 66.714 195.46 62.191 C 195.46 57.668 198.372 54.227 204.194 52.162 C 209.375 50.294 215.642 49.409 222.846 49.311 C 230.297 49.36 236.761 50.294 242.14 52.162 C 248.11 54.227 251.12 57.619 251.12 62.191 C 251.12 66.763 248.11 70.008 242.14 72.073 Z M 337.867 3 C 337.867 3 335.893 3 334.906 3.049 C 316.205 3.737 303.376 8.162 296.468 16.372 C 288.918 25.32 285.118 35.349 285.118 46.459 C 284.872 52.949 286.105 59.487 288.819 66.173 C 291.533 72.859 296.961 78.66 305.251 83.675 C 311.271 87.313 319.166 89.623 328.887 90.607 C 331.699 90.902 341.963 91.049 346.453 90.656 C 361.651 89.23 372.26 84.806 378.181 77.284 C 385.484 68.041 389.136 57.717 389.136 46.41 C 389.136 18.044 372.013 3.639 337.867 3 Z M 363.921 59.536 C 361.898 63.666 358.493 67.009 353.756 69.615 C 349.562 71.876 344.232 73.105 337.818 73.351 C 331.403 73.056 326.024 71.876 321.88 69.615 C 317.192 67.058 313.837 63.666 311.813 59.536 C 309.84 55.407 308.902 50.933 309.05 46.164 C 308.902 41.641 309.79 37.364 311.813 33.431 C 313.837 29.498 317.143 26.303 321.88 23.894 C 326.024 21.78 331.403 20.6 337.818 20.354 C 344.232 20.6 349.562 21.731 353.756 23.894 C 358.493 26.303 361.898 29.498 363.921 33.431 C 365.944 37.364 366.881 41.592 366.733 46.164 C 366.881 50.933 365.944 55.407 363.921 59.536 Z M 10.519 4.18 L 34.747 4.18 L 34.747 89.82 L 10.519 89.82 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path><path d=\"M 41.014 47.049 L 41.063 47 L 89.371 4.18 L 73.877 4.18 L 25.618 47 L 25.569 47.049 L 34.796 55.554 L 73.63 89.82 L 89.124 89.82 L 50.29 55.554 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path><path d=\"M 58.037 47.049 L 58.136 47 L 106.394 4.18 L 90.95 4.18 L 42.642 47 L 42.593 47.049 L 51.869 55.554 L 90.703 89.82 L 106.148 89.82 L 67.314 55.554 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path><path d=\"M 75.11 47.049 L 75.16 47 L 123.467 4.18 L 107.973 4.18 L 59.666 47 L 59.616 47.049 L 68.893 55.554 L 107.727 89.82 L 123.171 89.82 L 84.338 55.554 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path></svg>',svgContentId:10949593072}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1p1r4d5\",\"data-framer-name\":\"Hero-black copy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 400 93\"><path d=\"M 141.151 1.247 L 114.713 24.783 L 114.713 31.329 L 135.23 31.329 L 135.23 91.753 L 159.486 91.753 L 159.486 1.247 Z M 262.537 41.668 C 269.757 38.603 273.341 32.992 273.341 24.887 C 273.341 16.782 267.835 7.43 256.772 4.416 C 247.214 1.818 237.086 0.364 226.386 0 L 223.997 0 C 217.868 0.156 211.739 0.572 205.765 1.299 C 198.805 2.182 192.157 4.468 185.872 8.157 C 179.587 11.846 176.419 17.509 176.419 25.042 C 176.419 32.576 179.951 38.135 187.015 41.201 C 182.444 43.019 178.964 45.617 176.575 49.046 C 174.185 52.475 173.043 56.995 173.147 62.658 C 173.147 71.802 176.367 78.556 182.808 83.025 C 189.248 87.493 196.468 90.246 204.415 91.337 C 210.544 92.169 217.141 92.688 224.049 92.896 L 229.295 92.896 C 241.033 92.48 251.474 90.454 260.875 86.713 C 271.419 82.505 276.717 74.452 276.717 62.554 C 276.717 50.656 271.99 45.461 262.589 41.668 Z M 207.531 17.093 C 212.154 15.639 217.712 14.911 224.101 14.807 C 230.801 14.911 236.618 15.691 241.501 17.093 C 247.11 18.756 249.863 21.406 249.863 24.991 C 249.863 28.575 247.11 31.329 241.605 32.888 C 236.722 34.291 230.853 34.966 224.153 35.018 C 217.764 34.966 212.258 34.291 207.635 32.888 C 202.285 31.329 199.636 28.679 199.636 24.991 C 199.636 21.302 202.285 18.756 207.583 17.093 Z M 244.41 72.997 C 238.748 74.92 231.944 75.907 224.049 75.959 C 216.465 75.855 209.921 74.92 204.415 72.997 C 198.286 70.815 195.221 67.334 195.221 62.554 C 195.221 57.774 198.286 54.137 204.415 51.955 C 209.869 49.981 216.465 49.046 224.049 48.942 C 231.892 48.994 238.696 49.981 244.358 51.955 C 250.643 54.137 253.811 57.722 253.811 62.554 C 253.811 67.386 250.643 70.815 244.358 72.997 Z M 345.123 0 C 345.123 0 343.046 0 342.007 0.052 C 322.321 0.779 308.816 5.455 301.545 14.132 C 293.598 23.588 289.598 34.187 289.598 45.928 C 289.339 52.787 290.637 59.697 293.494 66.763 C 296.351 73.828 302.064 79.959 310.79 85.259 C 317.127 89.103 325.438 91.545 335.67 92.584 C 338.631 92.896 349.434 93.052 354.161 92.636 C 370.159 91.13 381.326 86.454 387.559 78.504 C 395.246 68.737 399.09 57.826 399.09 45.877 C 399.09 15.898 381.066 0.675 345.123 0 Z M 372.548 59.749 C 370.418 64.113 366.835 67.646 361.848 70.399 C 357.433 72.789 351.824 74.088 345.071 74.348 C 338.319 74.036 332.657 72.789 328.294 70.399 C 323.36 67.698 319.828 64.113 317.698 59.749 C 315.621 55.384 314.634 50.656 314.79 45.617 C 314.634 40.837 315.569 36.317 317.698 32.16 C 319.828 28.004 323.308 24.627 328.294 22.081 C 332.657 19.847 338.319 18.6 345.071 18.34 C 351.824 18.6 357.433 19.795 361.848 22.081 C 366.835 24.627 370.418 28.004 372.548 32.16 C 374.678 36.317 375.665 40.785 375.509 45.617 C 375.665 50.656 374.678 55.384 372.548 59.749 Z M 0.546 1.247 L 26.049 1.247 L 26.049 91.753 L 0.546 91.753 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path><path d=\"M 32.646 46.552 L 32.698 46.5 L 83.548 1.247 L 67.239 1.247 L 16.44 46.5 L 16.388 46.552 L 26.101 55.54 L 66.979 91.753 L 83.289 91.753 L 42.411 55.54 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path><path d=\"M 50.566 46.552 L 50.67 46.5 L 101.468 1.247 L 85.21 1.247 L 34.36 46.5 L 34.308 46.552 L 44.073 55.54 L 84.951 91.753 L 101.208 91.753 L 60.331 55.54 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path><path d=\"M 68.537 46.552 L 68.589 46.5 L 119.439 1.247 L 103.13 1.247 L 52.28 46.5 L 52.228 46.552 L 61.993 55.54 L 102.87 91.753 L 119.128 91.753 L 78.25 55.54 Z\" fill=\"var(--token-63a8090d-5fd6-47d4-b982-b0127b19696a, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;White-Black - DYNAMIC (White on Black) Copy&quot;} */\"></path></svg>',svgContentId:11875453539,withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x2lx2y\",\"data-framer-name\":\"body-copy-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1y3uqsb\",\"data-styles-preset\":\"IB5LYDax2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:[\"Founded by the \",/*#__PURE__*/_jsx(\"strong\",{children:\"Korman siblings\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"K180\"}),\" is an independent film studio that believes in the power of authentic storytelling.\"]})}),className:\"framer-54vleg\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-144371a\",\"data-styles-preset\":\"nYDy24lQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"K180\"}),\" crafts films that resonate with the human experience, reflecting the raw beauty, intricate complexities and the delightful absurdity of life.\"]})}),className:\"framer-ltkcbw\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ao6c1x\",\"data-framer-name\":\"03-work\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nnjaqk\",\"data-framer-name\":\"headline-stack\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hhdbdl\",\"data-styles-preset\":\"ynetr5_84\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"Work\"})}),className:\"framer-g4unhu\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nuwhu\",\"data-framer-name\":\"ticker-stack\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bknj5g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"el0xmVPJs\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{gap:20},J7Fx3UdsR:{gap:18},lu9Gca0T1:{gap:8},yb6Yagjd2:{gap:12}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:8,overflow:false},gap:16,height:\"100%\",hoverFactor:0,id:\"el0xmVPJs\",layoutId:\"el0xmVPJs\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":tPr5cPc4z\",webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:\"480px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pr0dqa-container\",\"data-framer-name\":\"work-ticker-01\",inComponentSlot:true,name:\"work-ticker-01\",nodeId:\"EAGhNPLRh\",rendersWithMotion:true,scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(K180StudiosWorkTickerImage,{Av54XStaH:\"The Floaters\",height:\"100%\",id:\"EAGhNPLRh\",layoutId:\"EAGhNPLRh\",name:\"work-ticker-01\",NV7vTj9Mn:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",Xzn93EYAF:addImageAlt({pixelHeight:2781,pixelWidth:4016,src:\"https://framerusercontent.com/images/fioxXrmuuMqWavHIc5Ok15UMI.jpg\",srcSet:\"https://framerusercontent.com/images/fioxXrmuuMqWavHIc5Ok15UMI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fioxXrmuuMqWavHIc5Ok15UMI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fioxXrmuuMqWavHIc5Ok15UMI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fioxXrmuuMqWavHIc5Ok15UMI.jpg 4016w\"},\"\"),z1FzoWszr:false})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":akAkaVkBZ\",webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:\"480px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-56dl0o-container\",\"data-framer-name\":\"work-ticker-02\",inComponentSlot:true,name:\"work-ticker-02\",nodeId:\"xLhz9zSrq\",rendersWithMotion:true,scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(K180StudiosWorkTickerImage,{Av54XStaH:\"Miracle on 74th Street\",height:\"100%\",id:\"xLhz9zSrq\",layoutId:\"xLhz9zSrq\",name:\"work-ticker-02\",NV7vTj9Mn:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",Xzn93EYAF:addImageAlt({pixelHeight:527,pixelWidth:937,src:\"https://framerusercontent.com/images/24ZG4eRr1CcsQ4rsamnTNtglGgs.jpeg\",srcSet:\"https://framerusercontent.com/images/24ZG4eRr1CcsQ4rsamnTNtglGgs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/24ZG4eRr1CcsQ4rsamnTNtglGgs.jpeg 937w\"},'The facade of an old building with large windows and the words \"Miracle on 74th Street\" displayed prominently.'),z1FzoWszr:false})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":X7c77qrFm\",webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:\"480px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12j5yky-container\",\"data-framer-name\":\"work-ticker-03\",inComponentSlot:true,name:\"work-ticker-03\",nodeId:\"ccx7RmBK6\",rendersWithMotion:true,scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(K180StudiosWorkTickerImage,{Av54XStaH:\"But I'm a Shoe\",height:\"100%\",id:\"ccx7RmBK6\",layoutId:\"ccx7RmBK6\",name:\"work-ticker-03\",NV7vTj9Mn:resolvedLinks2[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",Xzn93EYAF:addImageAlt({pixelHeight:1179,pixelWidth:2556,src:\"https://framerusercontent.com/images/bt1G6TdbJL3EVffxz5ipKPvA8.png\",srcSet:\"https://framerusercontent.com/images/bt1G6TdbJL3EVffxz5ipKPvA8.png?scale-down-to=512 512w,https://framerusercontent.com/images/bt1G6TdbJL3EVffxz5ipKPvA8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bt1G6TdbJL3EVffxz5ipKPvA8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bt1G6TdbJL3EVffxz5ipKPvA8.png 2556w\"},\"Illustration of a pair of yellow high-top sneakers with cartoon faces, laces untied and loosely coiled.\"),z1FzoWszr:false})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":nC2N9YdKZ\",webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:\"480px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-l1307e-container\",\"data-framer-name\":\"work-ticker-04\",inComponentSlot:true,name:\"work-ticker-04\",nodeId:\"SKwiwgsL4\",rendersWithMotion:true,scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(K180StudiosWorkTickerImage,{Av54XStaH:\"Frankenbabes\",height:\"100%\",id:\"SKwiwgsL4\",layoutId:\"SKwiwgsL4\",name:\"work-ticker-04\",NV7vTj9Mn:resolvedLinks3[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",Xzn93EYAF:addImageAlt({pixelHeight:535,pixelWidth:951,src:\"https://framerusercontent.com/images/dwzJPsl1Tw7MJ9F1GHc648h0DLc.jpeg\",srcSet:\"https://framerusercontent.com/images/dwzJPsl1Tw7MJ9F1GHc648h0DLc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/dwzJPsl1Tw7MJ9F1GHc648h0DLc.jpeg 951w\"},\"A woman with vibrant blue hair and stitched makeup lies on her back, appearing lifeless, with dramatic lighting casting shadows on her face.\"),z1FzoWszr:false})})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"button\",{className:\"framer-1490cv1\",\"data-framer-name\":\"button-stack\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined},{href:{webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined},{href:{webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined},{href:{webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined},{href:{webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{y:(componentViewport?.y||0)+0+1100+84+583.6+12+413.2+16+0},J7Fx3UdsR:{y:(componentViewport?.y||0)+0+1100+72+557.6+12+405.2+12+0},lu9Gca0T1:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1840px) - 28px)`,y:(componentViewport?.y||0)+0+1100+36+465.6+12+381.2+2+0},yb6Yagjd2:{y:(componentViewport?.y||0)+0+1100+48+491.6+2+389.2+4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+1100+64+541.6+12+397.2+8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vpor80-container\",nodeId:\"RxgLrgCGA\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{Esqkz7fYF:resolvedLinks4[1]},J7Fx3UdsR:{Esqkz7fYF:resolvedLinks4[2]},lu9Gca0T1:{Esqkz7fYF:resolvedLinks4[4],style:{width:\"100%\"}},yb6Yagjd2:{Esqkz7fYF:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(K180StudiosButton,{aQFq0p6uc:\"View Projects\",EaWoKopDO:\"House\",Esqkz7fYF:resolvedLinks4[0],height:\"100%\",id:\"RxgLrgCGA\",layoutId:\"RxgLrgCGA\",LYvPvRUe0:\"House\",pcxE2Y9ff:false,qrlwknv4O:false,variant:\"gJiazyqkW\",wCwSNSV3q:false,width:\"100%\",wXZl2BHJY:false})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hyao4a\",\"data-framer-name\":\"04-floaters\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f8agoz\",\"data-framer-name\":\"copy-media-stack\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ifpv7u\",\"data-framer-name\":\"copy-stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xa78xm\",\"data-framer-name\":\"headline-stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lu9Gca0T1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lwvhhf\",\"data-styles-preset\":\"lXmvpAMHb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"The Floaters\"})})},yb6Yagjd2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hhdbdl\",\"data-styles-preset\":\"ynetr5_84\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"The Floaters\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hhdbdl\",\"data-styles-preset\":\"ynetr5_84\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"The Floaters\"})}),className:\"framer-st5aeq\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d7js0g\",\"data-framer-name\":\"body-stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lu9Gca0T1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-144371a\",\"data-styles-preset\":\"nYDy24lQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"A struggling musician takes a last-resort job from her overachiever best friend: supervising misfits at their childhood Jewish summer camp.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-144371a\",\"data-styles-preset\":\"nYDy24lQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"With the camp\u2019s survival in the balance as it ramps up for competition with a longtime rival, the clashing friends and campers must overcome their differences to save the camp.\"})]})},yb6Yagjd2:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-144371a\",\"data-styles-preset\":\"nYDy24lQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"A struggling musician takes a last-resort job from her overachiever best friend: supervising misfits at their childhood Jewish summer camp.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-144371a\",\"data-styles-preset\":\"nYDy24lQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"With the camp\u2019s survival in the balance as it ramps up for competition with a longtime rival, the clashing friends and campers must overcome their differences to save the camp.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-144371a\",\"data-styles-preset\":\"nYDy24lQM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"A struggling musician takes a last-resort job from her overachiever best friend: supervising misfits at their childhood Jewish summer camp.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-144371a\",\"data-styles-preset\":\"nYDy24lQM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"With the camp\u2019s survival in the balance as it ramps up for competition with a longtime rival, the clashing friends and campers must overcome their differences to save the camp.\"})]}),className:\"framer-j2x34e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xh6t3a\",\"data-framer-name\":\"media-stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{background:{alt:\"A diverse group of young people, casually dressed, pose together in a colorful room with a painted mural and string lights.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+84+1196.8+0+0+12+12),pixelHeight:960,pixelWidth:1280,positionX:\"59.7%\",positionY:\"13.2%\",src:\"https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg\",srcSet:\"https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg 1280w\"}},J7Fx3UdsR:{background:{alt:\"A diverse group of young people, casually dressed, pose together in a colorful room with a painted mural and string lights.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+72+1146.8+0+0+31.6+12),pixelHeight:960,pixelWidth:1280,positionX:\"59.7%\",positionY:\"13.2%\",src:\"https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg\",srcSet:\"https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg 1280w\"}},lu9Gca0T1:{background:{alt:\"A diverse group of young people, casually dressed, pose together in a colorful room with a painted mural and string lights.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+36+970.8+0+0+2+440.2+12+0),pixelHeight:960,pixelWidth:1280,positionX:\"59.7%\",positionY:\"13.2%\",sizes:\"358px\",src:\"https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg\",srcSet:\"https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg 1280w\"}},yb6Yagjd2:{background:{alt:\"A diverse group of young people, casually dressed, pose together in a colorful room with a painted mural and string lights.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+48+1004.8+0+0+2+435.2+12+0),pixelHeight:960,pixelWidth:1280,positionX:\"59.7%\",positionY:\"13.2%\",sizes:\"720px\",src:\"https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg\",srcSet:\"https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"A diverse group of young people, casually dressed, pose together in a colorful room with a painted mural and string lights.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+64+1106.8+0+0+65.6+12),pixelHeight:960,pixelWidth:1280,positionX:\"59.7%\",positionY:\"13.2%\",src:\"https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg\",srcSet:\"https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KVYCQZqutbeI2qqVwSfva4nBs.jpeg 1280w\"},className:\"framer-rkhkao\",\"data-framer-name\":\"floaters-image\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mpey4m\",\"data-framer-name\":\"starring-stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lu9Gca0T1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-144371a\",\"data-styles-preset\":\"nYDy24lQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3cdb70b3-6cc2-4a34-abcb-a0ada425071f, rgb(101, 99, 109))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Starring:\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"Jackie Tohn, Sarah Podemski, Aya Cash, Seth Green, Judah Lewis,\",/*#__PURE__*/_jsx(\"br\",{}),\"Nina Bloomgarden, and Jake Ryan\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3cdb70b3-6cc2-4a34-abcb-a0ada425071f, rgb(101, 99, 109))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Directed by:\"})}),\" Rachel Israel\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-144371a\",\"data-styles-preset\":\"nYDy24lQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3cdb70b3-6cc2-4a34-abcb-a0ada425071f, rgb(101, 99, 109))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Starring:\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" \"}),\"Jackie Tohn, Sarah Podemski, Aya Cash, Seth Green,\",/*#__PURE__*/_jsx(\"br\",{}),\"Judah Lewis, Nina Bloomgarden, and Jake Ryan\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3cdb70b3-6cc2-4a34-abcb-a0ada425071f, rgb(101, 99, 109))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Directed by:\"})}),\" Rachel Israel\"]})}),className:\"framer-s0ac0s\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-krv3ji\",\"data-framer-name\":\"button-stack\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":tPr5cPc4z\",webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined},{href:{hash:\":tPr5cPc4z\",webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined},{href:{hash:\":tPr5cPc4z\",webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined},{href:{hash:\":tPr5cPc4z\",webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined},{href:{hash:\":tPr5cPc4z\",webPageId:\"pD_eoEjGO\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{y:(componentViewport?.y||0)+0+1100+84+1196.8+0+673+16+0},J7Fx3UdsR:{y:(componentViewport?.y||0)+0+1100+72+1146.8+0+658.2+12+0},lu9Gca0T1:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1840px) - 4px)`,y:(componentViewport?.y||0)+0+1100+36+970.8+0+857.2143+2+0},yb6Yagjd2:{y:(componentViewport?.y||0)+0+1100+48+1004.8+0+1064.2+4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+1100+64+1106.8+0+650.2+8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ki8az-container\",nodeId:\"hESC_ym5F\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{Esqkz7fYF:resolvedLinks5[1]},J7Fx3UdsR:{Esqkz7fYF:resolvedLinks5[2]},lu9Gca0T1:{Esqkz7fYF:resolvedLinks5[4],style:{width:\"100%\"}},yb6Yagjd2:{Esqkz7fYF:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(K180StudiosButton,{aQFq0p6uc:\"Read More\",EaWoKopDO:\"House\",Esqkz7fYF:resolvedLinks5[0],height:\"100%\",id:\"hESC_ym5F\",layoutId:\"hESC_ym5F\",LYvPvRUe0:\"House\",pcxE2Y9ff:false,qrlwknv4O:false,variant:\"dhRU4wGqS\",wCwSNSV3q:false,width:\"100%\",wXZl2BHJY:false})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n4z3bw\",\"data-framer-name\":\"05-kormans\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mqmgmh\",\"data-framer-name\":\"copy-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hhdbdl\",\"data-styles-preset\":\"ynetr5_84\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"The Kormans\"})}),className:\"framer-18vo4yj\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-144371a\",\"data-styles-preset\":\"nYDy24lQM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"K180\"}),\" is the brainchild of 3 siblings & their lifelong obsession with all things film!\"]})}),className:\"framer-a9bi03\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n26yqn\",\"data-framer-name\":\"image-stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{background:{alt:\"Black-and-white photo of the Korman siblings standing closely together.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+84+2045.8+12+282.2+16),pixelHeight:1024,pixelWidth:1280,positionX:\"54.8%\",positionY:\"15.3%\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg\",srcSet:\"https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg 1280w\"}},J7Fx3UdsR:{background:{alt:\"Black-and-white photo of the Korman siblings standing closely together.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+72+1965+12+274.2+14),pixelHeight:1024,pixelWidth:1280,positionX:\"54.8%\",positionY:\"15.3%\",sizes:\"1152px\",src:\"https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg\",srcSet:\"https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg 1280w\"}},lu9Gca0T1:{background:{alt:\"Black-and-white photo of the Korman siblings standing closely together.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+36+1928.0143+2+252.2+8+0),pixelHeight:1024,pixelWidth:1280,positionX:\"54.8%\",positionY:\"15.3%\",sizes:\"340px\",src:\"https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg\",srcSet:\"https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg 1280w\"}},yb6Yagjd2:{background:{alt:\"Black-and-white photo of the Korman siblings standing closely together.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+48+2189+2+258.2+10+0),pixelHeight:1024,pixelWidth:1280,positionX:\"54.8%\",positionY:\"15.3%\",sizes:\"720px\",src:\"https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg\",srcSet:\"https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Black-and-white photo of the Korman siblings standing closely together.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1100+64+1901+12+266.2+12),pixelHeight:1024,pixelWidth:1280,positionX:\"54.8%\",positionY:\"15.3%\",sizes:\"1024px\",src:\"https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg\",srcSet:\"https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/geF4rGYoybZVI4Hj3xXnPWJlH8.jpeg 1280w\"},className:\"framer-10qn2kh\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18raipv\",\"data-framer-name\":\"button-stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{y:(componentViewport?.y||0)+0+1100+84+2045.8+12+1066.2+16},J7Fx3UdsR:{y:(componentViewport?.y||0)+0+1100+72+1965+12+978.2+12},lu9Gca0T1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1840px) - 18px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1100+36+1928.0143+2+475.45+2},yb6Yagjd2:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1840px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1100+48+2189+2+703.2+4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+1100+64+1901+12+890.2+8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v0p8x6-container\",nodeId:\"GWQNcEzRy\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lu9Gca0T1:{aQFq0p6uc:\"Podcast\",style:{width:\"100%\"}},yb6Yagjd2:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(K180StudiosButton,{aQFq0p6uc:\"Listen To The Podcast\",EaWoKopDO:\"House\",Esqkz7fYF:\"https://frinightmovie.com\",height:\"100%\",id:\"GWQNcEzRy\",layoutId:\"GWQNcEzRy\",LYvPvRUe0:\"House\",pcxE2Y9ff:true,qrlwknv4O:false,variant:\"WH5NED5tW\",wCwSNSV3q:false,width:\"100%\",wXZl2BHJY:false})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":wVdSc1wdM\",webPageId:\"CfOQfXtw_\"},implicitPathVariables:undefined},{href:{hash:\":wVdSc1wdM\",webPageId:\"CfOQfXtw_\"},implicitPathVariables:undefined},{href:{hash:\":wVdSc1wdM\",webPageId:\"CfOQfXtw_\"},implicitPathVariables:undefined},{href:{hash:\":wVdSc1wdM\",webPageId:\"CfOQfXtw_\"},implicitPathVariables:undefined},{href:{hash:\":wVdSc1wdM\",webPageId:\"CfOQfXtw_\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{y:(componentViewport?.y||0)+0+1100+84+2045.8+12+1066.2+16},J7Fx3UdsR:{y:(componentViewport?.y||0)+0+1100+72+1965+12+978.2+12},lu9Gca0T1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1840px) - 18px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1100+36+1928.0143+2+475.45+2},yb6Yagjd2:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1840px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1100+48+2189+2+703.2+4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+1100+64+1901+12+890.2+8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18r66aq-container\",nodeId:\"NfY3lgdv0\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{Esqkz7fYF:resolvedLinks6[1]},J7Fx3UdsR:{Esqkz7fYF:resolvedLinks6[2]},lu9Gca0T1:{aQFq0p6uc:\"Origin Story\",Esqkz7fYF:resolvedLinks6[4],style:{width:\"100%\"}},yb6Yagjd2:{Esqkz7fYF:resolvedLinks6[3],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(K180StudiosButton,{aQFq0p6uc:\"Read The Origin Story\",EaWoKopDO:\"House\",Esqkz7fYF:resolvedLinks6[0],height:\"100%\",id:\"NfY3lgdv0\",layoutId:\"NfY3lgdv0\",LYvPvRUe0:\"House\",pcxE2Y9ff:false,qrlwknv4O:false,variant:\"gJiazyqkW\",wCwSNSV3q:false,width:\"100%\",wXZl2BHJY:false})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1csw0oz\",\"data-framer-name\":\"05-connect\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mzdrcy\",\"data-framer-name\":\"headline-stack\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hhdbdl\",\"data-styles-preset\":\"ynetr5_84\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-59d281aa-da14-49ab-9917-918c1dd31f5c, rgb(33, 31, 38))\"},children:\"Connect\"})}),className:\"framer-1thbilf\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{width:\"960px\",y:(componentViewport?.y||0)+0+1100+84+3312+12+111.2},J7Fx3UdsR:{width:\"880px\",y:(componentViewport?.y||0)+0+1100+72+3127.2+12+107.2},lu9Gca0T1:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1840px) - 24px)`,y:(componentViewport?.y||0)+0+1100+36+2507.4643+12+95.2},yb6Yagjd2:{width:\"720px\",y:(componentViewport?.y||0)+0+1100+48+3016.2+12+99.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:568,width:\"800px\",y:(componentViewport?.y||0)+0+1100+64+2959.2+12+103.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tcbm6c-container\",nodeId:\"CoaM8m3a5\",scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{variant:\"wmo1W798b\"},J7Fx3UdsR:{variant:\"SR2CoHTAc\"},lu9Gca0T1:{variant:\"JKXpioCYX\"},yb6Yagjd2:{variant:\"HK8kP2DbH\"}},children:/*#__PURE__*/_jsx(K180StudiosContactForm,{height:\"100%\",id:\"CoaM8m3a5\",layoutId:\"CoaM8m3a5\",style:{width:\"100%\"},variant:\"mktvVXSnU\",width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{y:(componentViewport?.y||0)+0+1100+84+4111.2},J7Fx3UdsR:{y:(componentViewport?.y||0)+0+1100+72+3914.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:546,width:\"1104px\",y:(componentViewport?.y||0)+0+1100+64+3734.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16zyiga-container hidden-gj4oi4 hidden-1gcmfsd\",id:elementId7,nodeId:\"utiaS2Cs8\",ref:ref8,scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(K180StudiosNewsletter,{height:\"100%\",id:\"utiaS2Cs8\",layoutId:\"utiaS2Cs8\",R2gMW2ceX:true,style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{y:(componentViewport?.y||0)+0+5925.2},J7Fx3UdsR:{y:(componentViewport?.y||0)+0+5704.4},lu9Gca0T1:{y:(componentViewport?.y||0)+0+4366.6643},yb6Yagjd2:{y:(componentViewport?.y||0)+0+4903.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:775,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5508.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i7o5l5-container\",\"data-framer-name\":\"footer\",id:elementId8,name:\"footer\",nodeId:\"esfs3sTO3\",ref:ref9,scopeId:\"r3imLFNfN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CP0RLWRLP:{variant:\"wKOJxzLy1\"},J7Fx3UdsR:{variant:\"dDt0Im6Ku\"},lu9Gca0T1:{variant:\"SyrARFNo2\"},yb6Yagjd2:{variant:\"pG_CPN5mO\"}},children:/*#__PURE__*/_jsx(K180StudiosFooterComponent,{height:\"100%\",id:\"esfs3sTO3\",layoutId:\"esfs3sTO3\",name:\"footer\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"daqxb2tVN\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6wHin.framer-351ri0, .framer-6wHin .framer-351ri0 { display: block; }\",\".framer-6wHin.framer-1fg9a0i { align-content: center; align-items: center; background-color: var(--token-71560297-6ad5-4045-9fc4-9486a789103f, #fdfcfd); 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-6wHin .framer-9ueipl-container, .framer-6wHin .framer-vpor80-container, .framer-6wHin .framer-3ki8az-container, .framer-6wHin .framer-1v0p8x6-container, .framer-6wHin .framer-18r66aq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-6wHin .framer-ty6adi-container, .framer-6wHin .framer-10siffz-container { flex: none; height: 1px; left: calc(50.00000000000002% - 1px / 2); position: absolute; top: 0px; width: 1px; z-index: 0; }\",\".framer-6wHin .framer-23z82z-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); pointer-events: none; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-6wHin .framer-13evh3c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-6wHin .framer-1el5hez { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 90vh; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-6wHin .framer-1i934d5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 90vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-6wHin .framer-yr9com { align-content: flex-start; align-items: flex-start; bottom: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 32px; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 4; }\",\".framer-6wHin .framer-1hqab5w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: min-content; }\",\".framer-6wHin .framer-on119v { align-content: center; align-items: center; aspect-ratio: 3.7037037037037037 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: var(--framer-aspect-ratio-supported, 236px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 600px; z-index: 2; }\",\".framer-6wHin .framer-8whsgt-container { aspect-ratio: 2.542372881355932 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 236px); position: relative; width: 100%; z-index: 2; }\",\".framer-6wHin .framer-iydq1g { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; mix-blend-mode: difference; overflow: visible; padding: 6px; position: relative; text-decoration: none; width: auto; z-index: 4; }\",\".framer-6wHin .framer-1ej1utg, .framer-6wHin .framer-1g91e5c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; mix-blend-mode: difference; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-6wHin .framer-pd3n0s { background: radial-gradient(100% 100% at 0% 100%, #0c130d 0%, rgba(37, 162, 74, 0) 50%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.2; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 3; }\",\".framer-6wHin .framer-1cbgy8p { align-content: center; align-items: center; bottom: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; mix-blend-mode: difference; overflow: hidden; padding: 0px; position: absolute; right: 32px; text-decoration: none; width: min-content; z-index: 4; }\",\".framer-6wHin .framer-ce4zwa-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); position: relative; width: 44px; }\",\".framer-6wHin .framer-oiko23-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-6wHin .framer-1tv8lf4 { align-content: center; align-items: center; background: radial-gradient(50% 10% at 50% 0%, var(--token-14342486-962f-41ac-8dee-b4e49c222278, #e6f7e8) 0%, var(--token-71560297-6ad5-4045-9fc4-9486a789103f, rgb(253, 252, 253)) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 48px 64px 48px; position: relative; width: 100%; z-index: 2; }\",\".framer-6wHin .framer-1wngcky { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; max-width: 1280px; padding: 96px 12px 12px 12px; position: relative; width: 100%; z-index: 2; }\",\".framer-6wHin .framer-12hhbdb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1840px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6wHin .framer-1jvog0u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 100%; }\",\".framer-6wHin .framer-7c2hs7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 4px; position: relative; width: min-content; }\",\".framer-6wHin .framer-1p1r4d5 { flex: none; height: 93px; position: relative; width: 400px; }\",\".framer-6wHin .framer-1x2lx2y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6wHin .framer-54vleg, .framer-6wHin .framer-ltkcbw, .framer-6wHin .framer-a9bi03 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 540px; position: relative; width: 100%; }\",\".framer-6wHin .framer-ao6c1x, .framer-6wHin .framer-n4z3bw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1840px; padding: 12px; position: relative; scroll-margin-top: 64px; width: 100%; z-index: 2; }\",\".framer-6wHin .framer-1nnjaqk, .framer-6wHin .framer-mzdrcy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-6wHin .framer-g4unhu, .framer-6wHin .framer-st5aeq, .framer-6wHin .framer-j2x34e, .framer-6wHin .framer-1thbilf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-6wHin .framer-1nuwhu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6wHin .framer-1bknj5g-container { flex: 1 0 0px; height: 270px; position: relative; width: 1px; }\",\".framer-6wHin .framer-pr0dqa-container, .framer-6wHin .framer-56dl0o-container, .framer-6wHin .framer-12j5yky-container, .framer-6wHin .framer-l1307e-container { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 270px); position: relative; width: 480px; }\",\".framer-6wHin .framer-1490cv1, .framer-6wHin .framer-krv3ji { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-6wHin .framer-hyao4a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1840px; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-6wHin .framer-f8agoz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1840px; overflow: visible; padding: 12px; position: relative; scroll-margin-top: 64px; width: 100%; }\",\".framer-6wHin .framer-1ifpv7u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6wHin .framer-xa78xm, .framer-6wHin .framer-d7js0g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-6wHin .framer-xh6t3a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: 1px; }\",\".framer-6wHin .framer-rkhkao { aspect-ratio: 1.773972602739726 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 361px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6wHin .framer-1mpey4m { 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: 800px; }\",\".framer-6wHin .framer-s0ac0s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6wHin .framer-1mqmgmh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-6wHin .framer-18vo4yj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6wHin .framer-n26yqn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: 100%; }\",\".framer-6wHin .framer-10qn2kh { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 576px); position: relative; width: 1024px; }\",\".framer-6wHin .framer-18raipv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-6wHin .framer-1csw0oz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1840px; overflow: visible; padding: 12px; position: relative; scroll-margin-top: 64px; width: 100%; z-index: 2; }\",\".framer-6wHin .framer-1tcbm6c-container { flex: none; height: auto; position: relative; width: 800px; }\",\".framer-6wHin .framer-16zyiga-container { flex: none; height: auto; position: relative; scroll-margin-top: 64px; width: 1104px; z-index: 2; }\",\".framer-6wHin .framer-1i7o5l5-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; z-index: 2; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 1840px) { .framer-6wHin.framer-1fg9a0i { width: 1840px; } .framer-6wHin .framer-yr9com { bottom: 40px; left: 40px; } .framer-6wHin .framer-on119v { height: var(--framer-aspect-ratio-supported, 307px); width: 780px; } .framer-6wHin .framer-8whsgt-container { height: var(--framer-aspect-ratio-supported, 307px); } .framer-6wHin .framer-1cbgy8p { bottom: 40px; right: 40px; } .framer-6wHin .framer-ce4zwa-container { height: var(--framer-aspect-ratio-supported, 59px); width: 56px; } .framer-6wHin .framer-1tv8lf4 { gap: 96px; padding: 84px 64px 84px 64px; } .framer-6wHin .framer-1wngcky { gap: 32px; padding: 106px 12px 12px 12px; } .framer-6wHin .framer-12hhbdb, .framer-6wHin .framer-1nuwhu, .framer-6wHin .framer-xh6t3a { gap: 40px; } .framer-6wHin .framer-1jvog0u { padding: 8px; } .framer-6wHin .framer-54vleg, .framer-6wHin .framer-ltkcbw, .framer-6wHin .framer-a9bi03 { max-width: 720px; } .framer-6wHin .framer-ao6c1x, .framer-6wHin .framer-n4z3bw, .framer-6wHin .framer-1csw0oz { gap: 32px; } .framer-6wHin .framer-1nnjaqk, .framer-6wHin .framer-1mpey4m, .framer-6wHin .framer-mzdrcy, .framer-6wHin .framer-1tcbm6c-container { width: 960px; } .framer-6wHin .framer-1490cv1, .framer-6wHin .framer-krv3ji, .framer-6wHin .framer-18raipv { gap: 20px; padding: 16px; } .framer-6wHin .framer-hyao4a { gap: 32px; max-width: unset; } .framer-6wHin .framer-f8agoz { gap: 20px; } .framer-6wHin .framer-xa78xm, .framer-6wHin .framer-d7js0g { width: 600px; } .framer-6wHin .framer-rkhkao { aspect-ratio: 1.7733990147783252 / 1; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; height: var(--framer-aspect-ratio-supported, 589px); } .framer-6wHin .framer-s0ac0s { --framer-text-wrap-override: balance; max-width: 680px; } .framer-6wHin .framer-1mqmgmh { gap: 16px; width: 960px; } .framer-6wHin .framer-n26yqn { gap: 40px; padding: 16px; } .framer-6wHin .framer-10qn2kh { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; height: var(--framer-aspect-ratio-supported, 720px); width: 1280px; }}\",\"@media (min-width: 1560px) and (max-width: 1839px) { .framer-6wHin.framer-1fg9a0i { width: 1560px; } .framer-6wHin .framer-yr9com { bottom: 36px; left: 36px; } .framer-6wHin .framer-on119v { height: var(--framer-aspect-ratio-supported, 268px); width: 680px; } .framer-6wHin .framer-8whsgt-container { height: var(--framer-aspect-ratio-supported, 268px); } .framer-6wHin .framer-1cbgy8p { bottom: 36px; right: 36px; } .framer-6wHin .framer-ce4zwa-container { height: var(--framer-aspect-ratio-supported, 51px); width: 48px; } .framer-6wHin .framer-1tv8lf4 { gap: 88px; padding: 72px 56px 72px 56px; } .framer-6wHin .framer-1wngcky { gap: 28px; padding: 100px 12px 12px 12px; } .framer-6wHin .framer-12hhbdb, .framer-6wHin .framer-1nuwhu, .framer-6wHin .framer-xh6t3a { gap: 36px; } .framer-6wHin .framer-54vleg, .framer-6wHin .framer-ltkcbw, .framer-6wHin .framer-s0ac0s, .framer-6wHin .framer-a9bi03 { max-width: 636px; } .framer-6wHin .framer-ao6c1x, .framer-6wHin .framer-n4z3bw { gap: 28px; overflow: visible; } .framer-6wHin .framer-1nnjaqk, .framer-6wHin .framer-1mpey4m, .framer-6wHin .framer-mzdrcy, .framer-6wHin .framer-1tcbm6c-container { width: 880px; } .framer-6wHin .framer-1490cv1, .framer-6wHin .framer-krv3ji, .framer-6wHin .framer-18raipv { gap: 18px; padding: 12px; } .framer-6wHin .framer-hyao4a, .framer-6wHin .framer-1csw0oz { gap: 28px; } .framer-6wHin .framer-f8agoz { gap: 18px; } .framer-6wHin .framer-xa78xm, .framer-6wHin .framer-d7js0g { width: 440px; } .framer-6wHin .framer-rkhkao { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 530px); } .framer-6wHin .framer-1mqmgmh { gap: 12px; width: 880px; } .framer-6wHin .framer-n26yqn { gap: 36px; padding: 14px; } .framer-6wHin .framer-10qn2kh { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; height: var(--framer-aspect-ratio-supported, 648px); width: 1152px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-6wHin.framer-1fg9a0i { width: 810px; } .framer-6wHin .framer-yr9com { bottom: 24px; left: 24px; } .framer-6wHin .framer-on119v { height: var(--framer-aspect-ratio-supported, 158px); width: 400px; } .framer-6wHin .framer-8whsgt-container { height: var(--framer-aspect-ratio-supported, 158px); } .framer-6wHin .framer-1cbgy8p { bottom: 24px; right: 24px; } .framer-6wHin .framer-ce4zwa-container { height: var(--framer-aspect-ratio-supported, 39px); width: 36px; } .framer-6wHin .framer-1tv8lf4 { gap: 64px; padding: 48px 32px 48px 32px; } .framer-6wHin .framer-1wngcky { gap: 20px; padding: 88px 2px 2px 2px; } .framer-6wHin .framer-12hhbdb, .framer-6wHin .framer-hyao4a, .framer-6wHin .framer-1csw0oz { gap: 20px; } .framer-6wHin .framer-1jvog0u { padding: 2px; } .framer-6wHin .framer-1x2lx2y, .framer-6wHin .framer-d7js0g, .framer-6wHin .framer-1mpey4m { width: 600px; } .framer-6wHin .framer-54vleg, .framer-6wHin .framer-ltkcbw, .framer-6wHin .framer-a9bi03 { max-width: unset; } .framer-6wHin .framer-ao6c1x, .framer-6wHin .framer-n4z3bw { gap: 20px; padding: 2px; } .framer-6wHin .framer-1nnjaqk, .framer-6wHin .framer-mzdrcy, .framer-6wHin .framer-1tcbm6c-container { width: 720px; } .framer-6wHin .framer-1nuwhu { flex-direction: column; gap: 20px; } .framer-6wHin .framer-1bknj5g-container { flex: none; width: 100%; } .framer-6wHin .framer-1490cv1, .framer-6wHin .framer-krv3ji, .framer-6wHin .framer-18raipv { gap: 12px; padding: 4px; } .framer-6wHin .framer-f8agoz { flex-direction: column; gap: 12px; padding: 2px; } .framer-6wHin .framer-1ifpv7u, .framer-6wHin .framer-xa78xm { width: 100%; } .framer-6wHin .framer-xh6t3a { flex: none; flex-direction: column; gap: 20px; width: 100%; } .framer-6wHin .framer-rkhkao { aspect-ratio: 1.7733990147783252 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 406px); width: 720px; } .framer-6wHin .framer-s0ac0s { --framer-text-wrap-override: balance; } .framer-6wHin .framer-1mqmgmh { gap: 4px; width: 600px; } .framer-6wHin .framer-n26yqn { flex-direction: column; gap: 20px; padding: 10px; } .framer-6wHin .framer-10qn2kh { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 405px); width: 720px; } .framer-6wHin .framer-1v0p8x6-container, .framer-6wHin .framer-18r66aq-container { flex: 1 0 0px; width: 1px; }}\",\"@media (max-width: 809px) { .framer-6wHin.framer-1fg9a0i { width: 390px; } .framer-6wHin .framer-yr9com { bottom: 40px; left: 50%; transform: translateX(-50%); } .framer-6wHin .framer-on119v { height: var(--framer-aspect-ratio-supported, 126px); width: 320px; } .framer-6wHin .framer-8whsgt-container { height: var(--framer-aspect-ratio-supported, 126px); } .framer-6wHin .framer-pd3n0s { background: linear-gradient(0deg, rgba(37, 162, 74, 0.4) 0%, rgba(37, 162, 74, 0) 32%); } .framer-6wHin .framer-1tv8lf4 { gap: 48px; padding: 36px 16px 36px 16px; } .framer-6wHin .framer-1wngcky { gap: 16px; padding: 82px 2px 2px 2px; } .framer-6wHin .framer-12hhbdb, .framer-6wHin .framer-ao6c1x, .framer-6wHin .framer-hyao4a, .framer-6wHin .framer-1csw0oz { gap: 16px; } .framer-6wHin .framer-1jvog0u { padding: 2px; } .framer-6wHin .framer-54vleg, .framer-6wHin .framer-ltkcbw, .framer-6wHin .framer-a9bi03 { max-width: unset; } .framer-6wHin .framer-1nnjaqk, .framer-6wHin .framer-vpor80-container, .framer-6wHin .framer-1ifpv7u, .framer-6wHin .framer-xa78xm, .framer-6wHin .framer-d7js0g, .framer-6wHin .framer-1mpey4m, .framer-6wHin .framer-3ki8az-container, .framer-6wHin .framer-mzdrcy, .framer-6wHin .framer-1tcbm6c-container { width: 100%; } .framer-6wHin .framer-1nuwhu { flex-direction: column; gap: 16px; } .framer-6wHin .framer-1bknj5g-container { flex: none; width: 100%; } .framer-6wHin .framer-1490cv1, .framer-6wHin .framer-krv3ji, .framer-6wHin .framer-18raipv { gap: 10px; padding: 2px; } .framer-6wHin .framer-f8agoz { flex-direction: column; gap: 8px; padding: 2px; } .framer-6wHin .framer-xh6t3a { flex: none; flex-direction: column; gap: 16px; width: 100%; } .framer-6wHin .framer-rkhkao { aspect-ratio: 1.7722772277227723 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 202px); width: 358px; } .framer-6wHin .framer-s0ac0s { --framer-text-wrap-override: balance; } .framer-6wHin .framer-n4z3bw { gap: 16px; padding: 2px; } .framer-6wHin .framer-1mqmgmh { gap: 2px; width: 100%; } .framer-6wHin .framer-n26yqn { flex-direction: column; gap: 16px; padding: 8px; } .framer-6wHin .framer-10qn2kh { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 191px); width: 340px; } .framer-6wHin .framer-1v0p8x6-container, .framer-6wHin .framer-18r66aq-container { flex: 1 0 0px; width: 1px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5519\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CP0RLWRLP\":{\"layout\":[\"fixed\",\"auto\"]},\"J7Fx3UdsR\":{\"layout\":[\"fixed\",\"auto\"]},\"yb6Yagjd2\":{\"layout\":[\"fixed\",\"auto\"]},\"lu9Gca0T1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"qLhcSi5Dk\":{\"pattern\":\":qLhcSi5Dk\",\"name\":\"01-hero\"},\"RxnUL4Nol\":{\"pattern\":\":RxnUL4Nol\",\"name\":\"02-intro\"},\"Z0VWdTp0Y\":{\"pattern\":\":Z0VWdTp0Y\",\"name\":\"03-work\"},\"aYfkQZwuP\":{\"pattern\":\":aYfkQZwuP\",\"name\":\"02-intro\"},\"tDV70eEZV\":{\"pattern\":\":tDV70eEZV\",\"name\":\"04-floaters\"},\"YhF2D_2_S\":{\"pattern\":\":YhF2D_2_S\",\"name\":\"05-kormans\"},\"oUht2SLln\":{\"pattern\":\":oUht2SLln\",\"name\":\"06-connect\"},\"utiaS2Cs8\":{\"pattern\":\":utiaS2Cs8\",\"name\":\"08-newsletter\"},\"esfs3sTO3\":{\"pattern\":\":esfs3sTO3\",\"name\":\"99-footer\"}}\n * @framerResponsiveScreen\n */const Framerr3imLFNfN=withCSS(Component,css,\"framer-6wHin\");export default Framerr3imLFNfN;Framerr3imLFNfN.displayName=\"Home\";Framerr3imLFNfN.defaultProps={height:5519,width:1200};addFonts(Framerr3imLFNfN,[{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:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...SmoothScrollFonts,...CustomScrollBarFonts,...TextSelectionColorFonts,...GrainFonts,...SvgUploaderFonts,...PhosphorFonts,...NavigationNavigationFonts,...K180StudiosWorkTickerImageFonts,...TickerFonts,...K180StudiosButtonFonts,...K180StudiosContactFormFonts,...K180StudiosNewsletterFonts,...K180StudiosFooterComponentFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr3imLFNfN\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CP0RLWRLP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J7Fx3UdsR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yb6Yagjd2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lu9Gca0T1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"qLhcSi5Dk\\\":{\\\"pattern\\\":\\\":qLhcSi5Dk\\\",\\\"name\\\":\\\"01-hero\\\"},\\\"RxnUL4Nol\\\":{\\\"pattern\\\":\\\":RxnUL4Nol\\\",\\\"name\\\":\\\"02-intro\\\"},\\\"Z0VWdTp0Y\\\":{\\\"pattern\\\":\\\":Z0VWdTp0Y\\\",\\\"name\\\":\\\"03-work\\\"},\\\"aYfkQZwuP\\\":{\\\"pattern\\\":\\\":aYfkQZwuP\\\",\\\"name\\\":\\\"02-intro\\\"},\\\"tDV70eEZV\\\":{\\\"pattern\\\":\\\":tDV70eEZV\\\",\\\"name\\\":\\\"04-floaters\\\"},\\\"YhF2D_2_S\\\":{\\\"pattern\\\":\\\":YhF2D_2_S\\\",\\\"name\\\":\\\"05-kormans\\\"},\\\"oUht2SLln\\\":{\\\"pattern\\\":\\\":oUht2SLln\\\",\\\"name\\\":\\\"06-connect\\\"},\\\"utiaS2Cs8\\\":{\\\"pattern\\\":\\\":utiaS2Cs8\\\",\\\"name\\\":\\\"08-newsletter\\\"},\\\"esfs3sTO3\\\":{\\\"pattern\\\":\\\":esfs3sTO3\\\",\\\"name\\\":\\\"99-footer\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5519\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SvgUploader", "svgPath", "strokeSize", "strokeColor", "fillColor", "state", "setState", "ye", "uniqueId", "se", "fetchSVG", "te", "prevState", "response", "svgContent", "svgDoc", "svgElement", "svgPathElement", "pathData", "svgElementToPath", "width", "height", "viewBox", "error", "ue", "u", "motion", "p", "addPropertyControls", "ControlType", "element", "type", "handlers", "ellipseToPath", "circleToPath", "rectToPath", "polygonToPath", "polylineToPath", "ellipse", "cx", "cy", "rx", "ry", "circle", "r", "rect", "x", "y", "polygon", "acc", "point", "i", "polyline", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll_Prod_default", "CustomScrollBarFonts", "CustomScrollBar", "TextSelectionColorFonts", "TextSelectionColor", "GrainFonts", "Grain", "SvgUploaderFonts", "SvgUploader", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "RichTextWithFX", "RichText2", "PhosphorFonts", "Icon", "MotionAWithFX", "ImageWithFX", "Image2", "NavigationNavigationFonts", "sO14iKaIH_default", "NavigationNavigationWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "K180StudiosWorkTickerImageFonts", "BY55NWMDd_default", "TickerFonts", "Ticker", "K180StudiosButtonFonts", "mxMgpmgMI_default", "K180StudiosContactFormFonts", "xcf4cdE4d_default", "K180StudiosNewsletterFonts", "EQNARCjXs_default", "K180StudiosFooterComponentFonts", "NF9TaMP3I_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "transition4", "transition5", "animation3", "transition6", "transition7", "animation4", "transformTemplate1", "_", "t", "transition8", "animation5", "animation6", "animation7", "transition9", "textEffect", "addImageAlt", "image", "alt", "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", "ref1", "elementId", "useRouteElementId", "isDisplayed", "ref2", "elementId1", "elementId2", "ref3", "router", "useRouter", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "isDisplayed1", "elementId7", "ref8", "elementId8", "ref9", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Link", "x", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "Framerr3imLFNfN", "withCSS", "r3imLFNfN_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
