{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/I3GA1LNcnfX23fOhSUyv/Vimeo.js", "ssg:https://framerusercontent.com/modules/serqTlWeq9YDBXAfX7w5/hizbUfnP8yIVomZ7WZ2O/XQBYKN4fA.js", "ssg:https://framerusercontent.com/modules/4PRmDEUnXQy7NWXnopjo/f0PSwRrw52qWp4X4fSe6/jTlLNTwGt.js", "ssg:https://framerusercontent.com/modules/1M7y56n6aNEGtUhI63zL/Z5bL6eAvlM9wXzFXIKWA/KU_OzewCO.js", "ssg:https://framerusercontent.com/modules/cv78zZ93RsaGLn1jJWcg/Ham9gT9hm20y3Rk8PGmn/PmM3lqEmr.js", "ssg:https://framerusercontent.com/modules/xK3swKARmvmYC1Ar5FLS/DqTydJ0RNVworT9cYJYt/Qml9s7Me1.js", "ssg:https://framerusercontent.com/modules/fAiFp5HimGzQC8NsVTZr/02chbTLNMnMZCAis6Ufy/VnmYoO0O_.js", "ssg:https://framerusercontent.com/modules/cc99A69TDHSPVZu7Ozcb/6yzp4l5nCKJr2VaMbAbQ/W8rbV9pn5.js", "ssg:https://framerusercontent.com/modules/5RyidbVKNcXQ3iKlL5O2/JMOLDqIAMK64coBvXg6e/DydP3S2L9.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import Player from\"@vimeo/player\";import{useEffect,useRef,useState}from\"react\";const vimeoRegex=/^https?:\\/\\/vimeo\\.com\\/(\\d+)/;/**\n * VIMEO\n *\n * @framerIntrinsicWidth 375\n * @framerIntrinsicHeight 210\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const Vimeo=withCSS(function Vimeo({video,autoplay,playOnCanvas,mute,controls,loop,titles,backgroundColor,onPlay=()=>{},onEnd=()=>{},style,...props}){const[key,setKey]=useState(0);const player=useRef();useEffect(()=>{if(!player.current)return;var ref;const[,id]=(ref=video.match(vimeoRegex))!==null&&ref!==void 0?ref:[null,0];const embeddedPlayer=new Player(player.current,{id,autopause:false,autoplay:RenderTarget.current()===RenderTarget.canvas?playOnCanvas&&autoplay:autoplay,byline:titles,controls:controls,loop:loop,title:titles,muted:mute,responsive:true});embeddedPlayer.on(\"play\",onPlay);embeddedPlayer.on(\"ended\",onEnd);},[player,key]);useEffect(()=>{setKey(key=>key+1);},[video,playOnCanvas,autoplay,mute,controls,loop,titles]);return /*#__PURE__*/ _jsx(motion.div,{style:{background:backgroundColor,...style,position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",overflow:\"hidden\"},...props,children:/*#__PURE__*/ _jsx(\"div\",{className:\"framer-vimeo\",ref:player,style:{width:\"100%\",height:\"100%\"}},key)});},[\".framer-vimeo > div { padding: 0 !important; width: 100%; height: 100%; }\",]);Vimeo.defaultProps={video:\"https://vimeo.com/642263700\",autoplay:false,playOnCanvas:false,loop:false,mute:false,backgroundColor:\"rgba(0, 0, 0, 0)\"};addPropertyControls(Vimeo,{video:{title:\"URL\",type:ControlType.String},autoplay:{title:\"Autoplay\",type:ControlType.Boolean,enabledTitle:\"Play\",disabledTitle:\"Pause\"},playOnCanvas:{title:\"On Canvas\",type:ControlType.Boolean,enabledTitle:\"Play\",disabledTitle:\"Pause\"},loop:{title:\"Loop\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},mute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},controls:{title:\"Controls\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\"},titles:{title:\"Titles\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0, 0, 0, 0)\"},onPlay:{type:ControlType.EventHandler},onEnd:{type:ControlType.EventHandler}});export default Vimeo;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Vimeo\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"375\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"210\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vimeo.map", "// Generated by Framer (a1bdbac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,Link,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/I3GA1LNcnfX23fOhSUyv/Vimeo.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/m520MzSlx7dcIazZ4IMI/tjEkOtoIIQ7trU7SHaXC/H3CjjHffY.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2agpzgPo53TLZOT40EXL/L8hfrGs7L3ayFKa12fcP/owIJoNWsP.js\";const VimeoFonts=getFonts(Vimeo);const enabledGestures={ULsvW2M2B:{hover:true}};const cycleOrder=[\"ULsvW2M2B\",\"bm7DqQK8e\"];const variantClassNames={bm7DqQK8e:\"framer-v-44jij7\",ULsvW2M2B:\"framer-v-f9igsu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Video Module - Desktop\":\"ULsvW2M2B\",\"Video Module - Tablet\":\"bm7DqQK8e\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"ULsvW2M2B\",videoTextLink:WfdjHkFjl=\"\",title:FQ9YsOaLE=\"Title\",category:WqX1liJz9=\"Commercial Ad\",background:tW3aJwLL0=\"rgb(18, 18, 18)\",thumbnail:NILaqekUq,link2:tygKzOeOI,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ULsvW2M2B\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if(baseVariant===\"bm7DqQK8e\")return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-4PVsJ\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-f9igsu\",className),\"data-framer-name\":\"Video Module - Desktop\",layoutDependency:layoutDependency,layoutId:\"ULsvW2M2B\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({\"ULsvW2M2B-hover\":{\"data-framer-name\":undefined},bm7DqQK8e:{\"data-framer-name\":\"Video Module - Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uqp6ob\",\"data-framer-name\":\"Background Wrap\",layoutDependency:layoutDependency,layoutId:\"qcsZCeprY\",style:{backgroundColor:\"rgb(18, 18, 18)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},transition:transition,variants:{\"ULsvW2M2B-hover\":{backgroundColor:tW3aJwLL0}},children:[/*#__PURE__*/_jsx(Link,{href:tygKzOeOI,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rr2oqx framer-1072uom\",layoutDependency:layoutDependency,layoutId:\"AfbQhWDKW\",transition:transition})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(NILaqekUq)},className:\"framer-1pmftpt\",\"data-framer-name\":\"Video Wrapper\",layoutDependency:layoutDependency,layoutId:\"OW8lqE_5K\",style:{borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17},transition:transition,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18xu4si-container\",layoutDependency:layoutDependency,layoutId:\"Tah_EZVvR-container\",transition:transition,children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:false,height:\"100%\",id:\"Tah_EZVvR\",layoutId:\"Tah_EZVvR\",loop:true,mute:true,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},titles:false,video:WfdjHkFjl,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v6ebva\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"L5Bh_Gs2r\",transition:transition,children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16po3i2\",\"data-styles-preset\":\"H3CjjHffY\",children:\"Title\"})}),className:\"framer-nfx2c9\",layoutDependency:layoutDependency,layoutId:\"kVIqk2rbP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:FQ9YsOaLE,transition:transition,variants:{\"ULsvW2M2B-hover\":{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16po3i2\",\"data-styles-preset\":\"H3CjjHffY\",children:\"Title\"})}),className:\"framer-gn1kjj\",layoutDependency:layoutDependency,layoutId:\"kgBS2FfEj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},text:FQ9YsOaLE,transition:transition,variants:{\"ULsvW2M2B-hover\":{opacity:1},bm7DqQK8e:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"ULsvW2M2B-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmphbGxhIE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Fjalla One\", \"Fjalla One Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-transform\":\"uppercase\"},children:\"Title\"})}),fonts:[\"GF;Fjalla One-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1keose7\",\"data-styles-preset\":\"owIJoNWsP\",children:\"Commercial Ad\"})}),className:\"framer-14cy1cc\",layoutDependency:layoutDependency,layoutId:\"j_Ma0JwMT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},text:WqX1liJz9,transition:transition,variants:{\"ULsvW2M2B-hover\":{opacity:1},bm7DqQK8e:{\"--extracted-r6o4lv\":\"rgb(220, 220, 220)\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bm7DqQK8e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1keose7\",\"data-styles-preset\":\"owIJoNWsP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Commercial Ad\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=['.framer-4PVsJ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4PVsJ * { box-sizing: border-box; }\",\".framer-4PVsJ .framer-1072uom { display: block; }\",\".framer-4PVsJ .framer-f9igsu { cursor: pointer; height: 498px; overflow: hidden; position: relative; width: 467px; }\",\".framer-4PVsJ .framer-uqp6ob { align-content: flex-start; align-items: flex-start; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; left: calc(49.892933618843706% - 100% / 2); overflow: hidden; padding: 5px 5px 5px 5px; position: absolute; top: 0px; width: 100%; will-change: transform; }\",\".framer-4PVsJ .framer-rr2oqx { bottom: 0px; flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; text-decoration: none; width: 100%; z-index: 10; }\",\".framer-4PVsJ .framer-1pmftpt { align-content: center; align-items: center; aspect-ratio: 1.0855106888361046 / 1; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 421px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; will-change: transform; z-index: 0; }\",\".framer-4PVsJ .framer-18xu4si-container { aspect-ratio: 1.005938242280285 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 842px); pointer-events: auto; position: relative; width: 185%; z-index: 10; }\",\".framer-4PVsJ .framer-v6ebva { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 68px; justify-content: space-evenly; overflow: visible; padding: 30px 0px 0px 10px; position: relative; width: 457px; }\",\".framer-4PVsJ .framer-nfx2c9 { flex: none; height: 25px; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-4PVsJ .framer-gn1kjj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 250px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-4PVsJ .framer-14cy1cc { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-4PVsJ .framer-v-f9igsu .framer-f9igsu { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4PVsJ .framer-1pmftpt { gap: 0px; } .framer-4PVsJ .framer-1pmftpt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-4PVsJ .framer-1pmftpt > :first-child { margin-top: 0px; } .framer-4PVsJ .framer-1pmftpt > :last-child { margin-bottom: 0px; } }\",\".framer-4PVsJ.framer-v-44jij7 .framer-f9igsu { height: 320px; width: 300px; }\",\".framer-4PVsJ.framer-v-44jij7 .framer-1pmftpt { height: var(--framer-aspect-ratio-supported, 267px); }\",\".framer-4PVsJ.framer-v-44jij7 .framer-18xu4si-container { height: var(--framer-aspect-ratio-supported, 534px); }\",\".framer-4PVsJ.framer-v-44jij7 .framer-v6ebva { gap: 0px; height: 48px; justify-content: center; padding: 0px 0px 0px 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4PVsJ.framer-v-44jij7 .framer-v6ebva { gap: 0px; } .framer-4PVsJ.framer-v-44jij7 .framer-v6ebva > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4PVsJ.framer-v-44jij7 .framer-v6ebva > :first-child { margin-top: 0px; } .framer-4PVsJ.framer-v-44jij7 .framer-v6ebva > :last-child { margin-bottom: 0px; } }\",\".framer-4PVsJ.framer-v-f9igsu.hover .framer-1pmftpt { gap: 0px; }\",\".framer-4PVsJ.framer-v-f9igsu.hover .framer-18xu4si-container { z-index: 3; }\",\".framer-4PVsJ.framer-v-f9igsu.hover .framer-v6ebva { gap: 1px; justify-content: center; padding: 0px 0px 0px 10px; }\",\".framer-4PVsJ.framer-v-f9igsu.hover .framer-nfx2c9 { height: auto; left: 10px; position: absolute; top: 0px; }\",\".framer-4PVsJ.framer-v-f9igsu.hover .framer-gn1kjj { white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4PVsJ.framer-v-f9igsu.hover .framer-1pmftpt, .framer-4PVsJ.framer-v-f9igsu.hover .framer-v6ebva { gap: 0px; } .framer-4PVsJ.framer-v-f9igsu.hover .framer-1pmftpt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4PVsJ.framer-v-f9igsu.hover .framer-1pmftpt > :first-child, .framer-4PVsJ.framer-v-f9igsu.hover .framer-v6ebva > :first-child { margin-top: 0px; } .framer-4PVsJ.framer-v-f9igsu.hover .framer-1pmftpt > :last-child, .framer-4PVsJ.framer-v-f9igsu.hover .framer-v6ebva > :last-child { margin-bottom: 0px; } .framer-4PVsJ.framer-v-f9igsu.hover .framer-v6ebva > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 498\n * @framerIntrinsicWidth 467\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bm7DqQK8e\":{\"layout\":[\"fixed\",\"fixed\"]},\"LR_g98Wxy\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"WfdjHkFjl\":\"videoTextLink\",\"FQ9YsOaLE\":\"title\",\"WqX1liJz9\":\"category\",\"tW3aJwLL0\":\"background\",\"NILaqekUq\":\"thumbnail\",\"tygKzOeOI\":\"link2\"}\n */const FramerXQBYKN4fA=withCSS(Component,css,\"framer-4PVsJ\");export default FramerXQBYKN4fA;FramerXQBYKN4fA.displayName=\"Video Card - Other Works\";FramerXQBYKN4fA.defaultProps={height:498,width:467};addPropertyControls(FramerXQBYKN4fA,{variant:{options:[\"ULsvW2M2B\",\"bm7DqQK8e\"],optionTitles:[\"Video Module - Desktop\",\"Video Module - Tablet\"],title:\"Variant\",type:ControlType.Enum},WfdjHkFjl:{defaultValue:\"\",title:\"Video Text Link\",type:ControlType.String},FQ9YsOaLE:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String},WqX1liJz9:{defaultValue:\"Commercial Ad\",title:\"Category\",type:ControlType.String},tW3aJwLL0:{defaultValue:\"rgb(18, 18, 18)\",title:\"Background\",type:ControlType.Color},NILaqekUq:{title:\"Thumbnail\",type:ControlType.ResponsiveImage},tygKzOeOI:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramerXQBYKN4fA,[{family:\"Fjalla One\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/XQBYKN4fA:default\",url:\"https://fonts.gstatic.com/s/fjallaone/v13/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/fjallaone/v13/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\",weight:\"400\"},...VimeoFonts,...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXQBYKN4fA\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bm7DqQK8e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LR_g98Wxy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"498\",\"framerIntrinsicWidth\":\"467\",\"framerVariables\":\"{\\\"WfdjHkFjl\\\":\\\"videoTextLink\\\",\\\"FQ9YsOaLE\\\":\\\"title\\\",\\\"WqX1liJz9\\\":\\\"category\\\",\\\"tW3aJwLL0\\\":\\\"background\\\",\\\"NILaqekUq\\\":\\\"thumbnail\\\",\\\"tygKzOeOI\\\":\\\"link2\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,PathVariablesContext,ResolveLinks,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Arbeiten from\"https://framerusercontent.com/modules/ut0YElWWJHosddsAJ45V/zgG0YfEWGNziBpQ7RlFK/ZGUx9nMll.js\";import VideoCardOtherWorks from\"https://framerusercontent.com/modules/serqTlWeq9YDBXAfX7w5/hizbUfnP8yIVomZ7WZ2O/XQBYKN4fA.js\";const VideoCardOtherWorksFonts=getFonts(VideoCardOtherWorks);const enabledGestures={dh_4RVwiH:{hover:true}};const cycleOrder=[\"dh_4RVwiH\",\"FsRvhLEax\",\"sfYqHHmeK\",\"XUUhg1hFh\",\"j7swz7D9Q\"];const serializationHash=\"framer-dnRh6\";const variantClassNames={dh_4RVwiH:\"framer-v-gc9x4a\",FsRvhLEax:\"framer-v-que4wy\",j7swz7D9Q:\"framer-v-a6kxp1\",sfYqHHmeK:\"framer-v-npmo78\",XUUhg1hFh:\"framer-v-1lqfzm2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:.7,ease:[.12,.23,.13,.96],type:\"tween\"};const transition3={delay:0,duration:.7,ease:[.12,.23,.5,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Other Projects - Desktop\":\"dh_4RVwiH\",\"Other Projects - Mobile Rotation\":\"j7swz7D9Q\",\"Other Projects - Mobile\":\"XUUhg1hFh\",\"Other Projects - Tablet Rotation\":\"sfYqHHmeK\",\"Other Projects - Tablet\":\"FsRvhLEax\"};const getProps=({height,id,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,uK_V8AQ_l:title!==null&&title!==void 0?title:props.uK_V8AQ_l,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"dh_4RVwiH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,uK_V8AQ_l,Xev7mbXUwJHD8Ktq78,ouLlUyS0qJHD8Ktq78,pNME0L8H5JHD8Ktq78,aASrV9wN5JHD8Ktq78,geSEpzafmJHD8Ktq78,HNmH8C0PZJHD8Ktq78,idJHD8Ktq78,Xev7mbXUwJQGV8JIOt,ouLlUyS0qJQGV8JIOt,pNME0L8H5JQGV8JIOt,aASrV9wN5JQGV8JIOt,geSEpzafmJQGV8JIOt,HNmH8C0PZJQGV8JIOt,idJQGV8JIOt,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dh_4RVwiH\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({j7swz7D9Q:{value:transition2},sfYqHHmeK:{value:transition2},XUUhg1hFh:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gc9x4a\",className,classNames),\"data-framer-name\":\"Other Projects - Desktop\",layoutDependency:layoutDependency,layoutId:\"dh_4RVwiH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"dh_4RVwiH-hover\":{\"data-framer-name\":undefined},FsRvhLEax:{\"data-framer-name\":\"Other Projects - Tablet\"},j7swz7D9Q:{\"data-framer-name\":\"Other Projects - Mobile Rotation\"},sfYqHHmeK:{\"data-framer-name\":\"Other Projects - Tablet Rotation\"},XUUhg1hFh:{\"data-framer-name\":\"Other Projects - Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Arbeiten,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{name:\"Xev7mbXUw\",type:\"Identifier\"},{name:\"ouLlUyS0q\",type:\"Identifier\"},{name:\"pNME0L8H5\",type:\"Identifier\"},{name:\"aASrV9wN5\",type:\"Identifier\"},{name:\"geSEpzafm\",type:\"Identifier\"},{name:\"HNmH8C0PZ\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"ouLlUyS0q\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:uK_V8AQ_l},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1acy99s\",layoutDependency:layoutDependency,layoutId:\"JHD8Ktq78\",style:{rotate:0},variants:{\"dh_4RVwiH-hover\":{rotate:-18},j7swz7D9Q:{rotate:10},sfYqHHmeK:{rotate:-18}},children:collection.map(({Xev7mbXUw:Xev7mbXUwJHD8Ktq78,ouLlUyS0q:ouLlUyS0qJHD8Ktq78,pNME0L8H5:pNME0L8H5JHD8Ktq78,aASrV9wN5:aASrV9wN5JHD8Ktq78,geSEpzafm:geSEpzafmJHD8Ktq78,HNmH8C0PZ:HNmH8C0PZJHD8Ktq78,id:idJHD8Ktq78},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`JHD8Ktq78-${idJHD8Ktq78}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{HNmH8C0PZ:HNmH8C0PZJHD8Ktq78},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s2cl8j\",layoutDependency:layoutDependency,layoutId:\"NwhjdBcws\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJHD8Ktq78},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined},{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJHD8Ktq78},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined},{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJHD8Ktq78},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined},{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJHD8Ktq78},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined},{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJHD8Ktq78},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined},{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJHD8Ktq78},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hxkvhy-container\",layoutDependency:layoutDependency,layoutId:\"FNQf3KELA-container\",children:/*#__PURE__*/_jsx(VideoCardOtherWorks,{background:aASrV9wN5JHD8Ktq78,category:pNME0L8H5JHD8Ktq78,height:\"100%\",id:\"FNQf3KELA\",layoutId:\"FNQf3KELA\",link2:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},thumbnail:toResponsiveImage(geSEpzafmJHD8Ktq78),title:ouLlUyS0qJHD8Ktq78,variant:\"ULsvW2M2B\",videoTextLink:Xev7mbXUwJHD8Ktq78,width:\"100%\",...addPropertyOverrides({\"dh_4RVwiH-hover\":{link2:resolvedLinks[5]},FsRvhLEax:{link2:resolvedLinks[1],variant:\"bm7DqQK8e\"},j7swz7D9Q:{link2:resolvedLinks[4],variant:\"bm7DqQK8e\"},sfYqHHmeK:{link2:resolvedLinks[2],variant:\"bm7DqQK8e\"},XUUhg1hFh:{link2:resolvedLinks[3],variant:\"bm7DqQK8e\"}},baseVariant,gestureVariant)})})})})})})},idJHD8Ktq78);})})}),/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Arbeiten,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{name:\"Xev7mbXUw\",type:\"Identifier\"},{name:\"ouLlUyS0q\",type:\"Identifier\"},{name:\"pNME0L8H5\",type:\"Identifier\"},{name:\"aASrV9wN5\",type:\"Identifier\"},{name:\"geSEpzafm\",type:\"Identifier\"},{name:\"HNmH8C0PZ\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"ouLlUyS0q\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:uK_V8AQ_l},type:\"BinaryOperation\"}}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qk7ov8\",layoutDependency:layoutDependency,layoutId:\"JQGV8JIOt\",style:{rotate:0},transformTemplate:transformTemplate1,variants:{\"dh_4RVwiH-hover\":{rotate:18},j7swz7D9Q:{rotate:-10},sfYqHHmeK:{rotate:18}},...addPropertyOverrides({\"dh_4RVwiH-hover\":{transformTemplate:undefined},FsRvhLEax:{transformTemplate:undefined},j7swz7D9Q:{transformTemplate:undefined},sfYqHHmeK:{transformTemplate:undefined},XUUhg1hFh:{transformTemplate:undefined}},baseVariant,gestureVariant),children:collection1.map(({Xev7mbXUw:Xev7mbXUwJQGV8JIOt,ouLlUyS0q:ouLlUyS0qJQGV8JIOt,pNME0L8H5:pNME0L8H5JQGV8JIOt,aASrV9wN5:aASrV9wN5JQGV8JIOt,geSEpzafm:geSEpzafmJQGV8JIOt,HNmH8C0PZ:HNmH8C0PZJQGV8JIOt,id:idJQGV8JIOt},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`JQGV8JIOt-${idJQGV8JIOt}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{HNmH8C0PZ:HNmH8C0PZJQGV8JIOt},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-47g7d4\",layoutDependency:layoutDependency,layoutId:\"jlir10Ela\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJQGV8JIOt},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined},{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJQGV8JIOt},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined},{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJQGV8JIOt},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined},{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJQGV8JIOt},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined},{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJQGV8JIOt},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined},{href:{pathVariables:{HNmH8C0PZ:HNmH8C0PZJQGV8JIOt},webPageId:\"DydP3S2L9\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19043h2-container\",layoutDependency:layoutDependency,layoutId:\"lk6T4SGwm-container\",children:/*#__PURE__*/_jsx(VideoCardOtherWorks,{background:aASrV9wN5JQGV8JIOt,category:pNME0L8H5JQGV8JIOt,height:\"100%\",id:\"lk6T4SGwm\",layoutId:\"lk6T4SGwm\",link2:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},thumbnail:toResponsiveImage(geSEpzafmJQGV8JIOt),title:ouLlUyS0qJQGV8JIOt,variant:\"ULsvW2M2B\",videoTextLink:Xev7mbXUwJQGV8JIOt,width:\"100%\",...addPropertyOverrides({\"dh_4RVwiH-hover\":{link2:resolvedLinks1[5]},FsRvhLEax:{link2:resolvedLinks1[1],variant:\"bm7DqQK8e\"},j7swz7D9Q:{link2:resolvedLinks1[4],variant:\"bm7DqQK8e\"},sfYqHHmeK:{link2:resolvedLinks1[2],variant:\"bm7DqQK8e\"},XUUhg1hFh:{link2:resolvedLinks1[3],variant:\"bm7DqQK8e\"}},baseVariant,gestureVariant)})})})})})})},idJQGV8JIOt);})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dnRh6.framer-oqz51g, .framer-dnRh6 .framer-oqz51g { display: block; }\",\".framer-dnRh6.framer-gc9x4a { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 684px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-dnRh6 .framer-1acy99s { align-content: center; align-items: center; bottom: 345px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; padding: 0px; position: absolute; right: 500px; width: auto; z-index: 1; }\",\".framer-dnRh6 .framer-1s2cl8j, .framer-dnRh6 .framer-47g7d4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; left: 50%; padding: 0px; pointer-events: auto; position: absolute; top: 50%; width: min-content; z-index: 10; }\",\".framer-dnRh6 .framer-hxkvhy-container { aspect-ratio: 0.9377510040160643 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 420px); position: relative; width: 394px; }\",\".framer-dnRh6 .framer-1qk7ov8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; left: 50%; padding: 0px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-dnRh6 .framer-19043h2-container { aspect-ratio: 0.9377510040160643 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 420px); pointer-events: auto; position: relative; width: 394px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dnRh6.framer-gc9x4a, .framer-dnRh6 .framer-1acy99s, .framer-dnRh6 .framer-1s2cl8j, .framer-dnRh6 .framer-1qk7ov8, .framer-dnRh6 .framer-47g7d4 { gap: 0px; } .framer-dnRh6.framer-gc9x4a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dnRh6.framer-gc9x4a > :first-child, .framer-dnRh6 .framer-1acy99s > :first-child, .framer-dnRh6 .framer-1s2cl8j > :first-child, .framer-dnRh6 .framer-1qk7ov8 > :first-child, .framer-dnRh6 .framer-47g7d4 > :first-child { margin-left: 0px; } .framer-dnRh6.framer-gc9x4a > :last-child, .framer-dnRh6 .framer-1acy99s > :last-child, .framer-dnRh6 .framer-1s2cl8j > :last-child, .framer-dnRh6 .framer-1qk7ov8 > :last-child, .framer-dnRh6 .framer-47g7d4 > :last-child { margin-right: 0px; } .framer-dnRh6 .framer-1acy99s > *, .framer-dnRh6 .framer-1s2cl8j > *, .framer-dnRh6 .framer-1qk7ov8 > *, .framer-dnRh6 .framer-47g7d4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-dnRh6.framer-v-que4wy.framer-gc9x4a, .framer-dnRh6.framer-v-npmo78.framer-gc9x4a { cursor: unset; width: 600px; }\",\".framer-dnRh6.framer-v-que4wy .framer-1acy99s { bottom: 327px; left: 303px; right: unset; }\",\".framer-dnRh6.framer-v-que4wy .framer-hxkvhy-container, .framer-dnRh6.framer-v-npmo78 .framer-hxkvhy-container, .framer-dnRh6.framer-v-1lqfzm2 .framer-hxkvhy-container, .framer-dnRh6.framer-v-a6kxp1 .framer-hxkvhy-container { height: var(--framer-aspect-ratio-supported, 320px); width: 300px; }\",\".framer-dnRh6.framer-v-que4wy .framer-1qk7ov8 { left: unset; right: 297px; top: 357px; }\",\".framer-dnRh6.framer-v-que4wy .framer-19043h2-container, .framer-dnRh6.framer-v-npmo78 .framer-19043h2-container, .framer-dnRh6.framer-v-1lqfzm2 .framer-19043h2-container, .framer-dnRh6.framer-v-a6kxp1 .framer-19043h2-container { height: var(--framer-aspect-ratio-supported, 320px); order: 0; width: 300px; }\",\".framer-dnRh6.framer-v-npmo78 .framer-1acy99s { bottom: 196px; left: 188px; right: unset; }\",\".framer-dnRh6.framer-v-npmo78 .framer-1qk7ov8 { left: unset; right: 188px; top: 198px; }\",\".framer-dnRh6.framer-v-1lqfzm2.framer-gc9x4a, .framer-dnRh6.framer-v-a6kxp1.framer-gc9x4a { cursor: unset; width: 390px; }\",\".framer-dnRh6.framer-v-1lqfzm2 .framer-1acy99s { bottom: 344px; left: 193px; right: unset; }\",\".framer-dnRh6.framer-v-1lqfzm2 .framer-1qk7ov8 { left: unset; right: 197px; top: 340px; }\",\".framer-dnRh6.framer-v-a6kxp1 .framer-1acy99s { bottom: 182px; left: 177px; right: unset; }\",\".framer-dnRh6.framer-v-a6kxp1 .framer-1qk7ov8 { left: unset; right: 174px; top: 183px; }\",\".framer-dnRh6.framer-v-gc9x4a.hover .framer-1acy99s { left: 251px; right: unset; }\",\".framer-dnRh6.framer-v-gc9x4a.hover .framer-1qk7ov8 { bottom: 325px; left: unset; right: 249px; top: unset; }\",\".framer-dnRh6.framer-v-gc9x4a.hover .framer-19043h2-container { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 684\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"FsRvhLEax\":{\"layout\":[\"fixed\",\"fixed\"]},\"sfYqHHmeK\":{\"layout\":[\"fixed\",\"fixed\"]},\"XUUhg1hFh\":{\"layout\":[\"fixed\",\"fixed\"]},\"j7swz7D9Q\":{\"layout\":[\"fixed\",\"fixed\"]},\"vwmKuOZow\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"uK_V8AQ_l\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjTlLNTwGt=withCSS(Component,css,\"framer-dnRh6\");export default FramerjTlLNTwGt;FramerjTlLNTwGt.displayName=\"Other Video Cards\";FramerjTlLNTwGt.defaultProps={height:684,width:1e3};addPropertyControls(FramerjTlLNTwGt,{variant:{options:[\"dh_4RVwiH\",\"FsRvhLEax\",\"sfYqHHmeK\",\"XUUhg1hFh\",\"j7swz7D9Q\"],optionTitles:[\"Other Projects - Desktop\",\"Other Projects - Tablet\",\"Other Projects - Tablet Rotation\",\"Other Projects - Mobile\",\"Other Projects - Mobile Rotation\"],title:\"Variant\",type:ControlType.Enum},uK_V8AQ_l:{defaultValue:\"\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String}});addFonts(FramerjTlLNTwGt,[{explicitInter:true,fonts:[]},...VideoCardOtherWorksFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjTlLNTwGt\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FsRvhLEax\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sfYqHHmeK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XUUhg1hFh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j7swz7D9Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vwmKuOZow\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"684\",\"framerVariables\":\"{\\\"uK_V8AQ_l\\\":\\\"title\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"}]}];export const css=['.framer-n9q54 .framer-styles-preset-17yn57u:not(.rich-text-wrapper), .framer-n9q54 .framer-styles-preset-17yn57u.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --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: 60px) { .framer-n9q54 .framer-styles-preset-17yn57u:not(.rich-text-wrapper), .framer-n9q54 .framer-styles-preset-17yn57u.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 59px) and (min-width: 0px) { .framer-n9q54 .framer-styles-preset-17yn57u:not(.rich-text-wrapper), .framer-n9q54 .framer-styles-preset-17yn57u.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-n9q54\";\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 (461de17)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fjalla One-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fjalla One\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnONwkxgtUb8.woff2\",weight:\"400\"}]}];export const css=['.framer-03DjR .framer-styles-preset-1lyte23:not(.rich-text-wrapper), .framer-03DjR .framer-styles-preset-1lyte23.rich-text-wrapper h3 { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 2.3em; --framer-paragraph-spacing: 12px; --framer-text-alignment: center; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 600px) { .framer-03DjR .framer-styles-preset-1lyte23:not(.rich-text-wrapper), .framer-03DjR .framer-styles-preset-1lyte23.rich-text-wrapper h3 { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 2.3em; --framer-paragraph-spacing: 12px; --framer-text-alignment: center; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 599px) and (min-width: 0px) { .framer-03DjR .framer-styles-preset-1lyte23:not(.rich-text-wrapper), .framer-03DjR .framer-styles-preset-1lyte23.rich-text-wrapper h3 { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 2.3em; --framer-paragraph-spacing: 12px; --framer-text-alignment: center; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-03DjR\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fjalla One-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fjalla One\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnONwkxgtUb8.woff2\",weight:\"400\"}]}];export const css=['.framer-ExtRC .framer-styles-preset-6ba489:not(.rich-text-wrapper), .framer-ExtRC .framer-styles-preset-6ba489.rich-text-wrapper p { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 0px; --framer-text-alignment: right; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-ExtRC .framer-styles-preset-6ba489:not(.rich-text-wrapper), .framer-ExtRC .framer-styles-preset-6ba489.rich-text-wrapper p { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 0px; --framer-text-alignment: right; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-ExtRC .framer-styles-preset-6ba489:not(.rich-text-wrapper), .framer-ExtRC .framer-styles-preset-6ba489.rich-text-wrapper p { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 0px; --framer-text-alignment: right; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: capitalize; } }'];export const className=\"framer-ExtRC\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (461de17)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"}]}];export const css=['.framer-cnQ96 .framer-styles-preset-tojcwj:not(.rich-text-wrapper), .framer-cnQ96 .framer-styles-preset-tojcwj.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --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: 600px) { .framer-cnQ96 .framer-styles-preset-tojcwj:not(.rich-text-wrapper), .framer-cnQ96 .framer-styles-preset-tojcwj.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 599px) and (min-width: 0px) { .framer-cnQ96 .framer-styles-preset-tojcwj:not(.rich-text-wrapper), .framer-cnQ96 .framer-styles-preset-tojcwj.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-cnQ96\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (90417e1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fjalla One-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fjalla One\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnONwkxgtUb8.woff2\",weight:\"400\"}]}];export const css=['.framer-LYken .framer-styles-preset-1s58l1t:not(.rich-text-wrapper), .framer-LYken .framer-styles-preset-1s58l1t.rich-text-wrapper h1 { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 288px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -4px; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b913f763-65f4-48e7-bb78-ce220cb023c8, #d6a7bc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 600px) { .framer-LYken .framer-styles-preset-1s58l1t:not(.rich-text-wrapper), .framer-LYken .framer-styles-preset-1s58l1t.rich-text-wrapper h1 { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 160px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -4px; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b913f763-65f4-48e7-bb78-ce220cb023c8, #d6a7bc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 599px) and (min-width: 0px) { .framer-LYken .framer-styles-preset-1s58l1t:not(.rich-text-wrapper), .framer-LYken .framer-styles-preset-1s58l1t.rich-text-wrapper h1 { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 100px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -4px; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-b913f763-65f4-48e7-bb78-ce220cb023c8, #d6a7bc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-LYken\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import FooterFooter from\"#framer/local/canvasComponent/g0_GsE4T3/g0_GsE4T3.js\";import OtherVideoCards from\"#framer/local/canvasComponent/jTlLNTwGt/jTlLNTwGt.js\";import NavigationNavigation from\"#framer/local/canvasComponent/ybeA4oG0v/ybeA4oG0v.js\";import Arbeiten from\"#framer/local/collection/ZGUx9nMll/ZGUx9nMll.js\";import*as sharedStyle1 from\"#framer/local/css/cIWEZs4S7/cIWEZs4S7.js\";import*as sharedStyle7 from\"#framer/local/css/KjEL69wIH/KjEL69wIH.js\";import*as sharedStyle3 from\"#framer/local/css/KU_OzewCO/KU_OzewCO.js\";import*as sharedStyle8 from\"#framer/local/css/MXhKL9RD2/MXhKL9RD2.js\";import*as sharedStyle5 from\"#framer/local/css/PmM3lqEmr/PmM3lqEmr.js\";import*as sharedStyle2 from\"#framer/local/css/Qml9s7Me1/Qml9s7Me1.js\";import*as sharedStyle6 from\"#framer/local/css/VnmYoO0O_/VnmYoO0O_.js\";import*as sharedStyle from\"#framer/local/css/W8rbV9pn5/W8rbV9pn5.js\";import*as sharedStyle4 from\"#framer/local/css/wOyzhwLIH/wOyzhwLIH.js\";import metadataProvider from\"#framer/local/webPageMetadata/DydP3S2L9/DydP3S2L9.js\";const NavigationNavigationFonts=getFonts(NavigationNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const EmbedFonts=getFonts(Embed);const MotionDivWithFX=withFX(motion.div);const OtherVideoCardsFonts=getFonts(OtherVideoCards);const OtherVideoCardsWithVariantAppearEffect=withVariantAppearEffect(OtherVideoCards);const FooterFooterFonts=getFonts(FooterFooter);const breakpoints={AQGYqBb7L:\"(min-width: 600px) and (max-width: 1199px)\",iF_oMPLPl:\"(max-width: 599px)\",O_3ApxtdM:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hr2mK\";const variantClassNames={AQGYqBb7L:\"framer-v-p6x7rg\",iF_oMPLPl:\"framer-v-asale3\",O_3ApxtdM:\"framer-v-wpzf57\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:.1,duration:1,ease:[.12,.23,.13,.96],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition2={delay:0,duration:1,ease:[.12,.23,.13,.96],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:380};const transition3={delay:.2,duration:1.5,ease:[0,0,1,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation6={opacity:.85,rotate:358,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation7={opacity:.001,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation8={opacity:.85,rotate:357,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation9={opacity:.001,rotate:359,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:.4,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition5={delay:0,duration:1.4,ease:[.12,.23,.13,.96],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"O_3ApxtdM\",Phone:\"iF_oMPLPl\",Tablet:\"AQGYqBb7L\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"O_3ApxtdM\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"DydP3S2L9\",data:Arbeiten,type:\"Collection\"},select:[{collection:\"DydP3S2L9\",name:\"ouLlUyS0q\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"t6SjSaSc3\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"hwclVqL0a\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"BQITB2aFH\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"dyjWRxoM7\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"jB_SgMzuq\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"aASrV9wN5\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"pNME0L8H5\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"T1up2QMLI\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"JWfikj_UC\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"JWy1zZbkr\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"dgBEy2Lod\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"uVFYvauEg\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"v_ITUPQ3y\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"hNqtEZfmd\",type:\"Identifier\"},{collection:\"DydP3S2L9\",name:\"lk_IhyAo3\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"DydP3S2L9\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6,_getFromCurrentRouteData7,_getFromCurrentRouteData8,_getFromCurrentRouteData9;const{style,className,layoutId,variant,aASrV9wN5=(_getFromCurrentRouteData=getFromCurrentRouteData(\"aASrV9wN5\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"#09F\",ouLlUyS0q=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"ouLlUyS0q\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",pNME0L8H5=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"pNME0L8H5\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",JWfikj_UC=getFromCurrentRouteData(\"JWfikj_UC\"),JWy1zZbkr=getFromCurrentRouteData(\"JWy1zZbkr\"),dgBEy2Lod=getFromCurrentRouteData(\"dgBEy2Lod\"),uVFYvauEg=getFromCurrentRouteData(\"uVFYvauEg\"),v_ITUPQ3y=getFromCurrentRouteData(\"v_ITUPQ3y\"),hNqtEZfmd=getFromCurrentRouteData(\"hNqtEZfmd\"),t6SjSaSc3=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"t6SjSaSc3\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",hwclVqL0a=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"hwclVqL0a\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",BQITB2aFH=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"BQITB2aFH\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",dyjWRxoM7=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"dyjWRxoM7\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:\"\",jB_SgMzuq=(_getFromCurrentRouteData7=getFromCurrentRouteData(\"jB_SgMzuq\"))!==null&&_getFromCurrentRouteData7!==void 0?_getFromCurrentRouteData7:\"\",T1up2QMLI=(_getFromCurrentRouteData8=getFromCurrentRouteData(\"T1up2QMLI\"))!==null&&_getFromCurrentRouteData8!==void 0?_getFromCurrentRouteData8:\"\",lk_IhyAo3=(_getFromCurrentRouteData9=getFromCurrentRouteData(\"lk_IhyAo3\"))!==null&&_getFromCurrentRouteData9!==void 0?_getFromCurrentRouteData9:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-hr2mK`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-hr2mK`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"AQGYqBb7L\",\"iF_oMPLPl\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"iF_oMPLPl\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"AQGYqBb7L\")return true;return false;};const elementId=useRouteElementId(\"evyCFBvbi\");const ref2=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"O_3ApxtdM\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wpzf57\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iF_oMPLPl:{height:1e3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iF_oMPLPl:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1m21qbl-container\",\"data-framer-appear-id\":\"1m21qbl\",\"data-framer-name\":\"Navigation\",initial:animation1,layoutScroll:true,name:\"Navigation\",optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQGYqBb7L:{variant:\"S9kejZlWA\"},iF_oMPLPl:{style:{height:\"100%\",width:\"100%\"},variant:\"TbZox9XCf\"}},children:/*#__PURE__*/_jsx(NavigationNavigation,{height:\"100%\",id:\"bSCaWvEvM\",layoutId:\"bSCaWvEvM\",name:\"Navigation\",style:{width:\"100%\"},variant:\"NOEcktwvv\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-zlo68k\",\"data-framer-name\":\"Main Wrapper\",name:\"Main Wrapper\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-3g5tq\",\"data-framer-name\":\"Section Header\",name:\"Section Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1por4t2\",\"data-framer-name\":\"Header Title Container\",name:\"Header Title Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f5jgha\",\"data-framer-name\":\"Title Wrapper\",name:\"Title Wrapper\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1s58l1t\",\"data-styles-preset\":\"W8rbV9pn5\",style:{\"--framer-text-color\":\"var(--variable-reference-aASrV9wN5-DydP3S2L9)\"},children:\"Content\"})}),className:\"framer-1okxayl\",\"data-framer-appear-id\":\"1okxayl\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation3,name:\"Title\",optimized:true,style:{\"--variable-reference-aASrV9wN5-DydP3S2L9\":aASrV9wN5,transformPerspective:1200},text:ouLlUyS0q,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u5umr9\",\"data-framer-name\":\"Header Tag Wrapper\",name:\"Header Tag Wrapper\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-893xc8\",\"data-styles-preset\":\"cIWEZs4S7\",children:\"Content\"})}),className:\"framer-1sz1f34\",\"data-framer-appear-id\":\"1sz1f34\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},text:pNME0L8H5,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1vnidqk-container hidden-p6x7rg hidden-asale3\",\"data-framer-appear-id\":\"1vnidqk\",\"data-framer-name\":\"Project Image Ticker - Desktop\",initial:animation7,name:\"Project Image Ticker - Desktop\",optimized:true,style:{rotate:358,transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.4,fadeContent:true,fadeInset:0,fadeWidth:51,overflow:false},gap:10,height:\"100%\",hoverFactor:.3,id:\"vgVWOsz7n\",layoutId:\"vgVWOsz7n\",name:\"Project Image Ticker - Desktop\",padding:10,paddingBottom:50,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:100,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-120vvkp\",\"data-framer-name\":\"Loop Image Wrapper - Desktop 1\",name:\"Loop Image Wrapper - Desktop 1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"453px\",...toResponsiveImage(JWfikj_UC)},className:\"framer-1ovjen1\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s4s9hf\",\"data-framer-name\":\"Loop Image Wrapper - Desktop 2\",name:\"Loop Image Wrapper - Desktop 2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"453px\",...toResponsiveImage(JWy1zZbkr)},className:\"framer-modh5s\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-176oph0\",\"data-framer-name\":\"Loop Image Wrapper - Desktop 3\",name:\"Loop Image Wrapper - Desktop 3\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"453px\",...toResponsiveImage(dgBEy2Lod)},className:\"framer-77qy10\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4eu3f2\",\"data-framer-name\":\"Loop Image Wrapper - Desktop 4\",name:\"Loop Image Wrapper - Desktop 4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"453px\",...toResponsiveImage(uVFYvauEg)},className:\"framer-72kxop\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gdhulh\",\"data-framer-name\":\"Loop Image Wrapper - Desktop 5\",name:\"Loop Image Wrapper - Desktop 5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"453px\",...toResponsiveImage(v_ITUPQ3y)},className:\"framer-1aan55a\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r6vwzq\",\"data-framer-name\":\"Loop Image Wrapper - Desktop 6\",name:\"Loop Image Wrapper - Desktop 6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"453px\",...toResponsiveImage(hNqtEZfmd)},className:\"framer-1mx9r1t\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-pqozop-container hidden-wpzf57 hidden-p6x7rg\",\"data-framer-appear-id\":\"pqozop\",\"data-framer-name\":\"Project Image Ticker - Mobile\",initial:animation9,name:\"Project Image Ticker - Mobile\",optimized:true,style:{rotate:357,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iF_oMPLPl:{fadeOptions:{fadeAlpha:.4,fadeContent:true,fadeInset:0,fadeWidth:51,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.4,fadeContent:false,fadeInset:0,fadeWidth:51,overflow:false},gap:0,height:\"100%\",hoverFactor:.3,id:\"lcoQEi5Gh\",layoutId:\"lcoQEi5Gh\",name:\"Project Image Ticker - Mobile\",padding:10,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jldi41\",\"data-framer-name\":\"Loop Image Wrapper - Mobile 1\",name:\"Loop Image Wrapper - Mobile 1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"240px\",...toResponsiveImage(JWfikj_UC)},className:\"framer-1cy3ig9\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t68kkl\",\"data-framer-name\":\"Loop Image Wrapper - Mobile 2\",name:\"Loop Image Wrapper - Mobile 2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"240px\",...toResponsiveImage(JWy1zZbkr)},className:\"framer-4j1t5v\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hbh3s0\",\"data-framer-name\":\"Loop Image Wrapper - Mobile 3\",name:\"Loop Image Wrapper - Mobile 3\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"240px\",...toResponsiveImage(dgBEy2Lod)},className:\"framer-p6c91w\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c3j0ty\",\"data-framer-name\":\"Loop Image Wrapper - Mobile 4\",name:\"Loop Image Wrapper - Mobile 4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"240px\",...toResponsiveImage(uVFYvauEg)},className:\"framer-1085sng\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m952f2\",\"data-framer-name\":\"Loop Image Wrapper - Mobile 5\",name:\"Loop Image Wrapper - Mobile 5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"240px\",...toResponsiveImage(v_ITUPQ3y)},className:\"framer-15kekoj\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ugcqq6\",\"data-framer-name\":\"Loop Image Wrapper - Mobile 6\",name:\"Loop Image Wrapper - Mobile 6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"240px\",...toResponsiveImage(hNqtEZfmd)},className:\"framer-1s9ap73\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1bdomif-container hidden-wpzf57 hidden-asale3\",\"data-framer-appear-id\":\"1bdomif\",\"data-framer-name\":\"Project Image Ticker - Tablet\",initial:animation9,name:\"Project Image Ticker - Tablet\",optimized:true,style:{rotate:357,transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.4,fadeContent:true,fadeInset:0,fadeWidth:51,overflow:false},gap:10,height:\"100%\",hoverFactor:.3,id:\"wNuC_vGpY\",layoutId:\"wNuC_vGpY\",name:\"Project Image Ticker - Tablet\",padding:10,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-obq7rr\",\"data-framer-name\":\"Loop Image Wrapper - Tablet 1\",name:\"Loop Image Wrapper - Tablet 1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"340px\",...toResponsiveImage(JWfikj_UC)},className:\"framer-pixgee\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-25g751\",\"data-framer-name\":\"Loop Image Wrapper - Tablet 2\",name:\"Loop Image Wrapper - Tablet 2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"340px\",...toResponsiveImage(JWy1zZbkr)},className:\"framer-14qj4wm\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zq28v6\",\"data-framer-name\":\"Loop Image Wrapper - Tablet 3\",name:\"Loop Image Wrapper - Tablet 3\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"340px\",...toResponsiveImage(dgBEy2Lod)},className:\"framer-1q1zhhg\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wtzktf\",\"data-framer-name\":\"Loop Image Wrapper - Tablet 4\",name:\"Loop Image Wrapper - Tablet 4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"340px\",...toResponsiveImage(uVFYvauEg)},className:\"framer-1uinzpa\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jxmcwo\",\"data-framer-name\":\"Loop Image Wrapper - Tablet 5\",name:\"Loop Image Wrapper - Tablet 5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"340px\",...toResponsiveImage(v_ITUPQ3y)},className:\"framer-14ck59e\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lw0xea\",\"data-framer-name\":\"Loop Image Wrapper - Tablet 6\",name:\"Loop Image Wrapper - Tablet 6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"340px\",...toResponsiveImage(hNqtEZfmd)},className:\"framer-16ht0ht\",\"data-framer-name\":\"Loop Image\",name:\"Loop Image\"})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qepiun\",\"data-framer-name\":\"Project Details\",name:\"Project Details\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h2vohe\",\"data-framer-name\":\"Details Wrapper\",name:\"Details Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13vhlix\",\"data-framer-name\":\"Roles Wrapper\",name:\"Roles Wrapper\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__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-6ba489\",\"data-styles-preset\":\"Qml9s7Me1\",children:\"CLIENT\"})}),className:\"framer-16zo3d2\",\"data-framer-name\":\"DIRECTOR DIRECTOR PRODUCER CINEMATOGRAPHER CAMERA OPERATOR CAMERA OPERATOR GRIP + ELECTRIC SOUND DESIGN SOUND DESIGN FILM ASSISTANT SOUND ASSISTANT INTERN\",fonts:[\"Inter\"],name:\"DIRECTOR DIRECTOR PRODUCER CINEMATOGRAPHER CAMERA OPERATOR CAMERA OPERATOR GRIP + ELECTRIC SOUND DESIGN SOUND DESIGN FILM ASSISTANT SOUND ASSISTANT INTERN\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__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-6ba489\",\"data-styles-preset\":\"Qml9s7Me1\",children:\"DIRECTED BY\"})}),className:\"framer-1ovvoqb\",\"data-framer-name\":\"DIRECTOR DIRECTOR PRODUCER CINEMATOGRAPHER CAMERA OPERATOR CAMERA OPERATOR GRIP + ELECTRIC SOUND DESIGN SOUND DESIGN FILM ASSISTANT SOUND ASSISTANT INTERN\",fonts:[\"Inter\"],name:\"DIRECTOR DIRECTOR PRODUCER CINEMATOGRAPHER CAMERA OPERATOR CAMERA OPERATOR GRIP + ELECTRIC SOUND DESIGN SOUND DESIGN FILM ASSISTANT SOUND ASSISTANT INTERN\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__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-6ba489\",\"data-styles-preset\":\"Qml9s7Me1\",children:\"CREW SIZE\"})}),className:\"framer-24eder\",\"data-framer-name\":\"DIRECTOR DIRECTOR PRODUCER CINEMATOGRAPHER CAMERA OPERATOR CAMERA OPERATOR GRIP + ELECTRIC SOUND DESIGN SOUND DESIGN FILM ASSISTANT SOUND ASSISTANT INTERN\",fonts:[\"Inter\"],name:\"DIRECTOR DIRECTOR PRODUCER CINEMATOGRAPHER CAMERA OPERATOR CAMERA OPERATOR GRIP + ELECTRIC SOUND DESIGN SOUND DESIGN FILM ASSISTANT SOUND ASSISTANT INTERN\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__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-6ba489\",\"data-styles-preset\":\"Qml9s7Me1\",children:\"FORMATS\"})}),className:\"framer-1el8rjy\",\"data-framer-name\":\"DIRECTOR DIRECTOR PRODUCER CINEMATOGRAPHER CAMERA OPERATOR CAMERA OPERATOR GRIP + ELECTRIC SOUND DESIGN SOUND DESIGN FILM ASSISTANT SOUND ASSISTANT INTERN\",fonts:[\"Inter\"],name:\"DIRECTOR DIRECTOR PRODUCER CINEMATOGRAPHER CAMERA OPERATOR CAMERA OPERATOR GRIP + ELECTRIC SOUND DESIGN SOUND DESIGN FILM ASSISTANT SOUND ASSISTANT INTERN\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__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-6ba489\",\"data-styles-preset\":\"Qml9s7Me1\",children:\"YEAR\"})}),className:\"framer-1813wvw\",\"data-framer-name\":\"DIRECTOR DIRECTOR PRODUCER CINEMATOGRAPHER CAMERA OPERATOR CAMERA OPERATOR GRIP + ELECTRIC SOUND DESIGN SOUND DESIGN FILM ASSISTANT SOUND ASSISTANT INTERN\",fonts:[\"Inter\"],name:\"DIRECTOR DIRECTOR PRODUCER CINEMATOGRAPHER CAMERA OPERATOR CAMERA OPERATOR GRIP + ELECTRIC SOUND DESIGN SOUND DESIGN FILM ASSISTANT SOUND ASSISTANT INTERN\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i5e8li\",\"data-framer-name\":\"Names Wrapper\",name:\"Names Wrapper\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__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-17yn57u\",\"data-styles-preset\":\"KU_OzewCO\",children:\"Content\"})}),className:\"framer-1whburo\",\"data-framer-name\":\"Louis Meyer Colin Grey Hans Room Colin Grey Zaire Lubin Justin Torff Ashlynn Madsen Zain Philips Lindsey Gouse Charlie Donin Erin Carder Aspen Dokidis\",fonts:[\"Inter\"],name:\"Louis Meyer Colin Grey Hans Room Colin Grey Zaire Lubin Justin Torff Ashlynn Madsen Zain Philips Lindsey Gouse Charlie Donin Erin Carder Aspen Dokidis\",style:{transformPerspective:1200},text:t6SjSaSc3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__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-17yn57u\",\"data-styles-preset\":\"KU_OzewCO\",children:\"Content\"})}),className:\"framer-tco8q7\",\"data-framer-name\":\"Louis Meyer Colin Grey Hans Room Colin Grey Zaire Lubin Justin Torff Ashlynn Madsen Zain Philips Lindsey Gouse Charlie Donin Erin Carder Aspen Dokidis\",fonts:[\"Inter\"],name:\"Louis Meyer Colin Grey Hans Room Colin Grey Zaire Lubin Justin Torff Ashlynn Madsen Zain Philips Lindsey Gouse Charlie Donin Erin Carder Aspen Dokidis\",style:{transformPerspective:1200},text:hwclVqL0a,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__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-17yn57u\",\"data-styles-preset\":\"KU_OzewCO\",children:\"Content\"})}),className:\"framer-483o8c\",\"data-framer-name\":\"Louis Meyer Colin Grey Hans Room Colin Grey Zaire Lubin Justin Torff Ashlynn Madsen Zain Philips Lindsey Gouse Charlie Donin Erin Carder Aspen Dokidis\",fonts:[\"Inter\"],name:\"Louis Meyer Colin Grey Hans Room Colin Grey Zaire Lubin Justin Torff Ashlynn Madsen Zain Philips Lindsey Gouse Charlie Donin Erin Carder Aspen Dokidis\",style:{transformPerspective:1200},text:BQITB2aFH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__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-17yn57u\",\"data-styles-preset\":\"KU_OzewCO\",children:\"Content\"})}),className:\"framer-s79tnf\",\"data-framer-name\":\"Louis Meyer Colin Grey Hans Room Colin Grey Zaire Lubin Justin Torff Ashlynn Madsen Zain Philips Lindsey Gouse Charlie Donin Erin Carder Aspen Dokidis\",fonts:[\"Inter\"],name:\"Louis Meyer Colin Grey Hans Room Colin Grey Zaire Lubin Justin Torff Ashlynn Madsen Zain Philips Lindsey Gouse Charlie Donin Erin Carder Aspen Dokidis\",style:{transformPerspective:1200},text:dyjWRxoM7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__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-17yn57u\",\"data-styles-preset\":\"KU_OzewCO\",children:\"Content\"})}),className:\"framer-jy3m0u\",\"data-framer-name\":\"Louis Meyer Colin Grey Hans Room Colin Grey Zaire Lubin Justin Torff Ashlynn Madsen Zain Philips Lindsey Gouse Charlie Donin Erin Carder Aspen Dokidis\",fonts:[\"Inter\"],name:\"Louis Meyer Colin Grey Hans Room Colin Grey Zaire Lubin Justin Torff Ashlynn Madsen Zain Philips Lindsey Gouse Charlie Donin Erin Carder Aspen Dokidis\",style:{transformPerspective:1200},text:jB_SgMzuq,verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1eifmjm\",\"data-framer-name\":\"Section Video\",name:\"Section Video\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s9ceph\",\"data-framer-name\":\"Video Embed Wrapper\",name:\"Video Embed Wrapper\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gggw4p-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:T1up2QMLI,id:\"nQzdOiVkN\",layoutId:\"nQzdOiVkN\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-fku50r\",\"data-framer-name\":\"Section Description\",name:\"Section Description\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:lk_IhyAo3,className:\"framer-128am44\",\"data-framer-name\":\"Rich Text\",fonts:[\"Inter\"],name:\"Rich Text\",style:{transformPerspective:1200},stylesPresetsClassNames:{a:\"framer-styles-preset-1y6hx4h\",h1:\"framer-styles-preset-50erjx\",h2:\"framer-styles-preset-893xc8\",h3:\"framer-styles-preset-1lyte23\",p:\"framer-styles-preset-tojcwj\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-8hkh7o\",\"data-framer-name\":\"Section - Other Works\",name:\"Section - Other Works\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eqk99b\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:7,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:246,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:88}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pzxrpj\",\"data-styles-preset\":\"MXhKL9RD2\",children:\"Other projects\"})}),className:\"framer-fjeig3\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQGYqBb7L:{width:\"600px\",y:2194.825},iF_oMPLPl:{width:undefined,y:2051.075}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:684,width:\"1000px\",y:2551.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12ljxe8-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQGYqBb7L:{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"sfYqHHmeK\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,variant:\"FsRvhLEax\"},iF_oMPLPl:{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"j7swz7D9Q\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,style:{height:\"100%\"},variant:\"XUUhg1hFh\"}},children:/*#__PURE__*/_jsx(OtherVideoCardsWithVariantAppearEffect,{height:\"100%\",id:\"evyCFBvbi\",layoutId:\"evyCFBvbi\",style:{width:\"100%\"},uK_V8AQ_l:ouLlUyS0q,variant:\"dh_4RVwiH\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQGYqBb7L:{y:2878.825},iF_oMPLPl:{y:2835.075}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:162,width:\"100vw\",y:3235.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bb3wht-container\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AQGYqBb7L:{variant:\"cwBh6qcbN\"},iF_oMPLPl:{variant:\"yDFEMKB6E\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"LBTXyV11C\",layoutId:\"LBTXyV11C\",name:\"Footer\",style:{width:\"100%\"},variant:\"RTjqnbUMm\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-hr2mK { background: var(--token-c2b9fcb6-3578-4f14-a6bc-a214ca55b7a5, rgb(0, 0, 0)); }`,\".framer-hr2mK.framer-ytr1cu, .framer-hr2mK .framer-ytr1cu { display: block; }\",\".framer-hr2mK.framer-wpzf57 { align-content: center; align-items: center; background-color: var(--token-c2b9fcb6-3578-4f14-a6bc-a214ca55b7a5, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-hr2mK .framer-1m21qbl-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-hr2mK .framer-zlo68k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hr2mK .framer-3g5tq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; padding: 185px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-hr2mK .framer-1por4t2 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hr2mK .framer-1f5jgha { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-hr2mK .framer-1okxayl { --variable-reference-aASrV9wN5-DydP3S2L9: var(--vn0r2l); flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hr2mK .framer-1u5umr9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 214px; }\",\".framer-hr2mK .framer-1sz1f34 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 214px; word-break: break-word; word-wrap: break-word; }\",\".framer-hr2mK .framer-1vnidqk-container { flex: none; height: 390px; opacity: 0.85; position: relative; width: 100%; z-index: 1; }\",\".framer-hr2mK .framer-120vvkp, .framer-hr2mK .framer-1s4s9hf, .framer-hr2mK .framer-176oph0, .framer-hr2mK .framer-4eu3f2, .framer-hr2mK .framer-gdhulh, .framer-hr2mK .framer-1r6vwzq { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 316px; justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 463px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hr2mK .framer-1ovjen1, .framer-hr2mK .framer-modh5s, .framer-hr2mK .framer-77qy10, .framer-hr2mK .framer-72kxop, .framer-hr2mK .framer-1aan55a, .framer-hr2mK .framer-1mx9r1t, .framer-hr2mK .framer-pixgee, .framer-hr2mK .framer-14qj4wm, .framer-hr2mK .framer-1q1zhhg, .framer-hr2mK .framer-1uinzpa, .framer-hr2mK .framer-14ck59e, .framer-hr2mK .framer-16ht0ht { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hr2mK .framer-pqozop-container { flex: none; height: 260px; opacity: 0.85; position: relative; width: 1726px; z-index: 1; }\",\".framer-hr2mK .framer-1jldi41 { align-content: center; align-items: center; aspect-ratio: 1.4659685863874345 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 171px); justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 250px; }\",\".framer-hr2mK .framer-1cy3ig9, .framer-hr2mK .framer-4j1t5v, .framer-hr2mK .framer-p6c91w, .framer-hr2mK .framer-1085sng, .framer-hr2mK .framer-15kekoj, .framer-hr2mK .framer-1s9ap73 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hr2mK .framer-t68kkl, .framer-hr2mK .framer-m952f2 { align-content: center; align-items: center; aspect-ratio: 1.4583333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 172px); justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 250px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hr2mK .framer-hbh3s0, .framer-hr2mK .framer-c3j0ty { align-content: center; align-items: center; aspect-ratio: 1.4659685863874345 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 171px); justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 250px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hr2mK .framer-1ugcqq6 { align-content: center; align-items: center; aspect-ratio: 1.4598540145985401 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 172px); justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 250px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hr2mK .framer-1bdomif-container { flex: none; height: 300px; opacity: 0.85; position: relative; width: 100%; z-index: 1; }\",\".framer-hr2mK .framer-obq7rr, .framer-hr2mK .framer-25g751, .framer-hr2mK .framer-zq28v6, .framer-hr2mK .framer-1wtzktf, .framer-hr2mK .framer-1jxmcwo, .framer-hr2mK .framer-1lw0xea { align-content: center; align-items: center; aspect-ratio: 1.4736842105263157 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 238px); justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hr2mK .framer-qepiun { align-content: center; align-items: center; background-color: rgba(153, 238, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-hr2mK .framer-h2vohe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hr2mK .framer-13vhlix { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-hr2mK .framer-16zo3d2, .framer-hr2mK .framer-1ovvoqb, .framer-hr2mK .framer-24eder, .framer-hr2mK .framer-1el8rjy, .framer-hr2mK .framer-1813wvw, .framer-hr2mK .framer-1whburo, .framer-hr2mK .framer-tco8q7, .framer-hr2mK .framer-483o8c, .framer-hr2mK .framer-s79tnf, .framer-hr2mK .framer-jy3m0u { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hr2mK .framer-1i5e8li { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-hr2mK .framer-1eifmjm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-hr2mK .framer-s9ceph { align-content: center; align-items: center; aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 563px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hr2mK .framer-gggw4p-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-hr2mK .framer-fku50r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; padding: 50px 200px 50px 200px; position: relative; width: 100%; }\",\".framer-hr2mK .framer-128am44 { --framer-paragraph-spacing: 0px; cursor: default; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 650px; word-break: break-word; word-wrap: break-word; }\",\".framer-hr2mK .framer-8hkh7o { align-content: center; align-items: center; background-color: rgba(68, 204, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 170px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-hr2mK .framer-eqk99b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hr2mK .framer-fjeig3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hr2mK .framer-12ljxe8-container { flex: none; height: auto; position: relative; width: 1000px; }\",\".framer-hr2mK .framer-bb3wht-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hr2mK.framer-wpzf57, .framer-hr2mK .framer-zlo68k, .framer-hr2mK .framer-3g5tq, .framer-hr2mK .framer-1por4t2, .framer-hr2mK .framer-1f5jgha, .framer-hr2mK .framer-1u5umr9, .framer-hr2mK .framer-120vvkp, .framer-hr2mK .framer-1s4s9hf, .framer-hr2mK .framer-176oph0, .framer-hr2mK .framer-4eu3f2, .framer-hr2mK .framer-gdhulh, .framer-hr2mK .framer-1r6vwzq, .framer-hr2mK .framer-1jldi41, .framer-hr2mK .framer-t68kkl, .framer-hr2mK .framer-hbh3s0, .framer-hr2mK .framer-c3j0ty, .framer-hr2mK .framer-m952f2, .framer-hr2mK .framer-1ugcqq6, .framer-hr2mK .framer-obq7rr, .framer-hr2mK .framer-25g751, .framer-hr2mK .framer-zq28v6, .framer-hr2mK .framer-1wtzktf, .framer-hr2mK .framer-1jxmcwo, .framer-hr2mK .framer-1lw0xea, .framer-hr2mK .framer-qepiun, .framer-hr2mK .framer-h2vohe, .framer-hr2mK .framer-13vhlix, .framer-hr2mK .framer-1i5e8li, .framer-hr2mK .framer-1eifmjm, .framer-hr2mK .framer-s9ceph, .framer-hr2mK .framer-fku50r, .framer-hr2mK .framer-8hkh7o, .framer-hr2mK .framer-eqk99b { gap: 0px; } .framer-hr2mK.framer-wpzf57 > *, .framer-hr2mK .framer-1por4t2 > *, .framer-hr2mK .framer-qepiun > *, .framer-hr2mK .framer-8hkh7o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hr2mK.framer-wpzf57 > :first-child, .framer-hr2mK .framer-zlo68k > :first-child, .framer-hr2mK .framer-3g5tq > :first-child, .framer-hr2mK .framer-1por4t2 > :first-child, .framer-hr2mK .framer-1f5jgha > :first-child, .framer-hr2mK .framer-qepiun > :first-child, .framer-hr2mK .framer-13vhlix > :first-child, .framer-hr2mK .framer-1i5e8li > :first-child, .framer-hr2mK .framer-fku50r > :first-child, .framer-hr2mK .framer-8hkh7o > :first-child, .framer-hr2mK .framer-eqk99b > :first-child { margin-top: 0px; } .framer-hr2mK.framer-wpzf57 > :last-child, .framer-hr2mK .framer-zlo68k > :last-child, .framer-hr2mK .framer-3g5tq > :last-child, .framer-hr2mK .framer-1por4t2 > :last-child, .framer-hr2mK .framer-1f5jgha > :last-child, .framer-hr2mK .framer-qepiun > :last-child, .framer-hr2mK .framer-13vhlix > :last-child, .framer-hr2mK .framer-1i5e8li > :last-child, .framer-hr2mK .framer-fku50r > :last-child, .framer-hr2mK .framer-8hkh7o > :last-child, .framer-hr2mK .framer-eqk99b > :last-child { margin-bottom: 0px; } .framer-hr2mK .framer-zlo68k > *, .framer-hr2mK .framer-1f5jgha > *, .framer-hr2mK .framer-eqk99b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hr2mK .framer-3g5tq > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-hr2mK .framer-1u5umr9 > *, .framer-hr2mK .framer-120vvkp > *, .framer-hr2mK .framer-1s4s9hf > *, .framer-hr2mK .framer-176oph0 > *, .framer-hr2mK .framer-4eu3f2 > *, .framer-hr2mK .framer-gdhulh > *, .framer-hr2mK .framer-1r6vwzq > *, .framer-hr2mK .framer-1jldi41 > *, .framer-hr2mK .framer-t68kkl > *, .framer-hr2mK .framer-hbh3s0 > *, .framer-hr2mK .framer-c3j0ty > *, .framer-hr2mK .framer-m952f2 > *, .framer-hr2mK .framer-1ugcqq6 > *, .framer-hr2mK .framer-obq7rr > *, .framer-hr2mK .framer-25g751 > *, .framer-hr2mK .framer-zq28v6 > *, .framer-hr2mK .framer-1wtzktf > *, .framer-hr2mK .framer-1jxmcwo > *, .framer-hr2mK .framer-1lw0xea > *, .framer-hr2mK .framer-1eifmjm > *, .framer-hr2mK .framer-s9ceph > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hr2mK .framer-1u5umr9 > :first-child, .framer-hr2mK .framer-120vvkp > :first-child, .framer-hr2mK .framer-1s4s9hf > :first-child, .framer-hr2mK .framer-176oph0 > :first-child, .framer-hr2mK .framer-4eu3f2 > :first-child, .framer-hr2mK .framer-gdhulh > :first-child, .framer-hr2mK .framer-1r6vwzq > :first-child, .framer-hr2mK .framer-1jldi41 > :first-child, .framer-hr2mK .framer-t68kkl > :first-child, .framer-hr2mK .framer-hbh3s0 > :first-child, .framer-hr2mK .framer-c3j0ty > :first-child, .framer-hr2mK .framer-m952f2 > :first-child, .framer-hr2mK .framer-1ugcqq6 > :first-child, .framer-hr2mK .framer-obq7rr > :first-child, .framer-hr2mK .framer-25g751 > :first-child, .framer-hr2mK .framer-zq28v6 > :first-child, .framer-hr2mK .framer-1wtzktf > :first-child, .framer-hr2mK .framer-1jxmcwo > :first-child, .framer-hr2mK .framer-1lw0xea > :first-child, .framer-hr2mK .framer-h2vohe > :first-child, .framer-hr2mK .framer-1eifmjm > :first-child, .framer-hr2mK .framer-s9ceph > :first-child { margin-left: 0px; } .framer-hr2mK .framer-1u5umr9 > :last-child, .framer-hr2mK .framer-120vvkp > :last-child, .framer-hr2mK .framer-1s4s9hf > :last-child, .framer-hr2mK .framer-176oph0 > :last-child, .framer-hr2mK .framer-4eu3f2 > :last-child, .framer-hr2mK .framer-gdhulh > :last-child, .framer-hr2mK .framer-1r6vwzq > :last-child, .framer-hr2mK .framer-1jldi41 > :last-child, .framer-hr2mK .framer-t68kkl > :last-child, .framer-hr2mK .framer-hbh3s0 > :last-child, .framer-hr2mK .framer-c3j0ty > :last-child, .framer-hr2mK .framer-m952f2 > :last-child, .framer-hr2mK .framer-1ugcqq6 > :last-child, .framer-hr2mK .framer-obq7rr > :last-child, .framer-hr2mK .framer-25g751 > :last-child, .framer-hr2mK .framer-zq28v6 > :last-child, .framer-hr2mK .framer-1wtzktf > :last-child, .framer-hr2mK .framer-1jxmcwo > :last-child, .framer-hr2mK .framer-1lw0xea > :last-child, .framer-hr2mK .framer-h2vohe > :last-child, .framer-hr2mK .framer-1eifmjm > :last-child, .framer-hr2mK .framer-s9ceph > :last-child { margin-right: 0px; } .framer-hr2mK .framer-h2vohe > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-hr2mK .framer-13vhlix > *, .framer-hr2mK .framer-1i5e8li > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-hr2mK .framer-fku50r > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,`@media (min-width: 600px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-hr2mK { background: var(--token-c2b9fcb6-3578-4f14-a6bc-a214ca55b7a5, rgb(0, 0, 0)); } .framer-hr2mK.framer-wpzf57, .framer-hr2mK .framer-12ljxe8-container { width: 600px; } .framer-hr2mK .framer-zlo68k { gap: 0px; } .framer-hr2mK .framer-1por4t2 { padding: 0px 0px 50px 0px; } .framer-hr2mK .framer-qepiun { padding: 30px 0px 50px 0px; } .framer-hr2mK .framer-s9ceph { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 366px); width: 650px; } .framer-hr2mK .framer-128am44 { width: 480px; } .framer-hr2mK .framer-8hkh7o { padding: 100px 0px 0px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hr2mK .framer-zlo68k { gap: 0px; } .framer-hr2mK .framer-zlo68k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hr2mK .framer-zlo68k > :first-child { margin-top: 0px; } .framer-hr2mK .framer-zlo68k > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 599px) { .${metadata.bodyClassName}-framer-hr2mK { background: var(--token-c2b9fcb6-3578-4f14-a6bc-a214ca55b7a5, rgb(0, 0, 0)); } .framer-hr2mK.framer-wpzf57 { width: 390px; } .framer-hr2mK .framer-1m21qbl-container { height: 100%; left: calc(50.00000000000002% - 100% / 2); pointer-events: none; transform: unset; } .framer-hr2mK .framer-zlo68k { gap: 30px; } .framer-hr2mK .framer-1por4t2 { order: 0; overflow: visible; } .framer-hr2mK .framer-1f5jgha { padding: 10px 0px 0px 0px; } .framer-hr2mK .framer-pqozop-container { order: 1; } .framer-hr2mK .framer-qepiun { order: 4; } .framer-hr2mK .framer-s9ceph { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; height: var(--framer-aspect-ratio-supported, 197px); width: 350px; } .framer-hr2mK .framer-128am44 { width: 300px; } .framer-hr2mK .framer-8hkh7o { padding: 100px 0px 100px 0px; } .framer-hr2mK .framer-12ljxe8-container { height: 684px; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hr2mK .framer-zlo68k { gap: 0px; } .framer-hr2mK .framer-zlo68k > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-hr2mK .framer-zlo68k > :first-child { margin-top: 0px; } .framer-hr2mK .framer-zlo68k > :last-child { margin-bottom: 0px; } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4064\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AQGYqBb7L\":{\"layout\":[\"fixed\",\"auto\"]},\"iF_oMPLPl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerDydP3S2L9=withCSS(Component,css,\"framer-hr2mK\");export default FramerDydP3S2L9;FramerDydP3S2L9.displayName=\"Works\";FramerDydP3S2L9.defaultProps={height:4064,width:1200};addFonts(FramerDydP3S2L9,[{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\"}]},...NavigationNavigationFonts,...TickerFonts,...EmbedFonts,...OtherVideoCardsFonts,...FooterFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDydP3S2L9\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"4064\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AQGYqBb7L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iF_oMPLPl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "vimeoRegex", "Vimeo", "withCSS", "video", "autoplay", "playOnCanvas", "mute", "controls", "loop", "titles", "backgroundColor", "onPlay", "onEnd", "style", "props", "key", "setKey", "ye", "player", "pe", "ue", "ref", "id", "embeddedPlayer", "c", "RenderTarget", "p", "motion", "addPropertyControls", "ControlType", "Vimeo_default", "VimeoFonts", "getFonts", "Vimeo_default", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "WfdjHkFjl", "FQ9YsOaLE", "WqX1liJz9", "tW3aJwLL0", "NILaqekUq", "tygKzOeOI", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "Link", "Image2", "RichText2", "x", "css", "FramerXQBYKN4fA", "withCSS", "XQBYKN4fA_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "VideoCardOtherWorksFonts", "getFonts", "XQBYKN4fA_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "uK_V8AQ_l", "Xev7mbXUwJHD8Ktq78", "ouLlUyS0qJHD8Ktq78", "pNME0L8H5JHD8Ktq78", "aASrV9wN5JHD8Ktq78", "geSEpzafmJHD8Ktq78", "HNmH8C0PZJHD8Ktq78", "idJHD8Ktq78", "Xev7mbXUwJQGV8JIOt", "ouLlUyS0qJQGV8JIOt", "pNME0L8H5JQGV8JIOt", "aASrV9wN5JQGV8JIOt", "geSEpzafmJQGV8JIOt", "HNmH8C0PZJQGV8JIOt", "idJQGV8JIOt", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ZGUx9nMll_default", "collection", "paginationInfo", "loadMore", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks1", "css", "FramerjTlLNTwGt", "withCSS", "jTlLNTwGt_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationNavigationFonts", "getFonts", "ybeA4oG0v_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "TickerFonts", "Ticker", "RichTextWithFX", "withFX", "EmbedFonts", "Embed", "MotionDivWithFX", "motion", "OtherVideoCardsFonts", "jTlLNTwGt_default", "OtherVideoCardsWithVariantAppearEffect", "withVariantAppearEffect", "FooterFooterFonts", "g0_GsE4T3_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "animation6", "animation7", "toResponsiveImage", "value", "animation8", "animation9", "animation10", "transition4", "animation11", "animation12", "transition5", "animation13", "transition6", "animation14", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "ZGUx9nMll_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "_getFromCurrentRouteData7", "_getFromCurrentRouteData8", "_getFromCurrentRouteData9", "style", "className", "layoutId", "variant", "aASrV9wN5", "ouLlUyS0q", "pNME0L8H5", "JWfikj_UC", "JWy1zZbkr", "dgBEy2Lod", "uVFYvauEg", "v_ITUPQ3y", "hNqtEZfmd", "t6SjSaSc3", "hwclVqL0a", "BQITB2aFH", "dyjWRxoM7", "jB_SgMzuq", "T1up2QMLI", "lk_IhyAo3", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId", "useRouteElementId", "ref2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "LayoutGroup", "cx", "PropertyOverrides2", "ComponentViewportProvider", "x", "Image2", "css", "FramerDydP3S2L9", "withCSS", "DydP3S2L9_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
