{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/7ybXfe5KQu4P4pfOjhpA/DBnAzerzaPi9wXB4GmHc/XQBYKN4fA.js", "ssg:https://framerusercontent.com/modules/vfmWllFTCw0LjWEDv1gw/ZBjvxrg9bsi82uuWZdfl/jTlLNTwGt.js", "ssg:https://framerusercontent.com/modules/xcUIs9rVu9txmtRoZgoG/fK0cKGnvinggt0mxMDkR/PmM3lqEmr.js", "ssg:https://framerusercontent.com/modules/mUMrsOv5THs5SAr6E1d2/ndWxZyaNVabSjrfkeRHC/VnmYoO0O_.js", "ssg:https://framerusercontent.com/modules/ysLzmbOKKsL7wEI11xJ2/P0OPrrNpbUS7NTy6c5Oc/W8rbV9pn5.js", "ssg:https://framerusercontent.com/modules/auO7q0xSgVVIDdV6Kw6b/Xvp3enFniUNi2fgaMZBu/DydP3S2L9.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useEffect, useRef, useState } from \"react\";\nimport { addPropertyControls, ControlType } from \"framer\";\nimport { 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                                                                                                                */\nexport default function Embed({\n  type,\n  url,\n  html\n}) {\n  if (type === \"url\" && url) {\n    return /*#__PURE__*/_jsx(EmbedURL, {\n      url: url\n    });\n  }\n  if (type === \"html\" && html) {\n    return /*#__PURE__*/_jsx(EmbedHTML, {\n      html: html\n    });\n  }\n  return /*#__PURE__*/_jsx(Instructions, {});\n}\n;\naddPropertyControls(Embed, {\n  type: {\n    type: ControlType.Enum,\n    defaultValue: \"url\",\n    displaySegmentedControl: true,\n    options: [\"url\", \"html\"],\n    optionTitles: [\"URL\", \"HTML\"]\n  },\n  url: {\n    title: \"URL\",\n    type: ControlType.String,\n    description: \"Some websites don\u2019t support embedding.\",\n    hidden(props) {\n      return props.type !== \"url\";\n    }\n  },\n  html: {\n    title: \"HTML\",\n    displayTextArea: true,\n    type: ControlType.String,\n    hidden(props) {\n      return props.type !== \"html\";\n    }\n  }\n});\nfunction Instructions() {\n  return /*#__PURE__*/_jsx(\"div\", {\n    style: {\n      ...emptyStateStyle,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: centerTextStyle,\n      children: \"To embed a website or widget, add it to the properties\\xa0panel.\"\n    })\n  });\n}\nfunction EmbedURL({\n  url\n}) {\n  // Add https:// if the URL does not have a protocol.\n  if (!/[a-z]+:\\/\\//.test(url)) {\n    url = \"https://\" + url;\n  }\n  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.\n  const [state, setState] = useState(onCanvas ? undefined : false);\n  useEffect(() => {\n    // We only want to check on the canvas.\n    // On the website we want to avoid the additional delay.\n    if (!onCanvas) return; // TODO: We could also use AbortController here.\n    let isLastEffect = true;\n    setState(undefined);\n    async function load() {\n      const response = await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\" + encodeURIComponent(url));\n      if (response.status == 200) {\n        const {\n          isBlocked\n        } = await response.json();\n        if (isLastEffect) {\n          setState(isBlocked);\n        }\n      } else {\n        const message = await response.text();\n        console.error(message);\n        const error = new Error(\"This site can\u2019t be reached.\");\n        setState(error);\n      }\n    }\n    load().catch(error => {\n      console.error(error);\n      setState(error);\n    });\n    return () => {\n      isLastEffect = false;\n    };\n  }, [url]);\n  if (!url.startsWith(\"https://\")) {\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: \"Unsupported protocol.\"\n    });\n  }\n  if (state === undefined) {\n    return /*#__PURE__*/_jsx(LoadingIndicator, {});\n  }\n  if (state instanceof Error) {\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: state.message\n    });\n  }\n  if (state === true) {\n    const message = `Can't embed ${url} due to its content security policy.`;\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: message\n    });\n  }\n  return /*#__PURE__*/_jsx(\"iframe\", {\n    src: url,\n    style: iframeStyle,\n    loading: \"lazy\",\n    // @ts-ignore\n    fetchPriority: onCanvas ? \"low\" : \"auto\",\n    referrerPolicy: \"no-referrer\",\n    sandbox: getSandbox(onCanvas)\n  });\n}\nconst iframeStyle = {\n  width: \"100%\",\n  height: \"100%\",\n  border: \"none\"\n};\nfunction getSandbox(onCanvas) {\n  const result = [\"allow-same-origin\", \"allow-scripts\"];\n  if (!onCanvas) {\n    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\");\n  }\n  return result.join(\" \");\n}\nfunction EmbedHTML({\n  html\n}) {\n  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.\n  const hasScript = html.includes(\"</script>\");\n  useEffect(() => {\n    if (!hasScript) return;\n    const div = ref.current;\n    div.innerHTML = html;\n    executeScripts(div);\n    return () => {\n      div.innerHTML = \"\";\n    };\n  }, [html, hasScript]);\n  return /*#__PURE__*/_jsx(\"div\", {\n    ref: ref,\n    style: htmlStyle,\n    dangerouslySetInnerHTML: !hasScript ? {\n      __html: html\n    } : undefined\n  });\n}\nconst htmlStyle = {\n  width: \"100%\",\n  height: \"100%\",\n  display: \"flex\",\n  flexDirection: \"column\",\n  justifyContent: \"center\",\n  alignItems: \"center\"\n}; // This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node) {\n  if (node instanceof Element && node.tagName === \"SCRIPT\") {\n    const script = document.createElement(\"script\");\n    script.text = node.innerHTML;\n    for (const {\n      name,\n      value\n    } of node.attributes) {\n      script.setAttribute(name, value);\n    }\n    node.parentElement.replaceChild(script, node);\n  } else {\n    for (const child of node.childNodes) {\n      executeScripts(child);\n    }\n  }\n} // Generic components\nfunction LoadingIndicator() {\n  return /*#__PURE__*/_jsx(\"div\", {\n    className: \"framerInternalUI-componentPlaceholder\",\n    style: {\n      ...containerStyles,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: centerTextStyle,\n      children: \"Loading\u2026\"\n    })\n  });\n}\nfunction ErrorMessage({\n  message\n}) {\n  return /*#__PURE__*/_jsx(\"div\", {\n    className: \"framerInternalUI-errorPlaceholder\",\n    style: {\n      ...containerStyles,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsxs(\"div\", {\n      style: centerTextStyle,\n      children: [\"Error: \", message]\n    })\n  });\n}\nconst centerTextStyle = {\n  textAlign: \"center\",\n  minWidth: 140\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Embed\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"fixed\",\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerDisableUnlink\": \"\",\n        \"framerIntrinsicWidth\": \"600\",\n        \"framerIntrinsicHeight\": \"400\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (a1bdbac)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, Image, Link, RichText, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Vimeo from \"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/I3GA1LNcnfX23fOhSUyv/Vimeo.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/dD0r9MQvnNviX73YD1gn/OuTsFB7qBAn3tpXVFTTV/H3CjjHffY.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/RRxZiv7BAY1evUOFZfCA/nlShg1kb2I3sDb4rCL3b/owIJoNWsP.js\";\nconst VimeoFonts = getFonts(Vimeo);\nconst enabledGestures = {\n  ULsvW2M2B: {\n    hover: true\n  }\n};\nconst cycleOrder = [\"ULsvW2M2B\", \"bm7DqQK8e\"];\nconst variantClassNames = {\n  bm7DqQK8e: \"framer-v-44jij7\",\n  ULsvW2M2B: \"framer-v-f9igsu\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst humanReadableVariantMap = {\n  \"Video Module - Desktop\": \"ULsvW2M2B\",\n  \"Video Module - Tablet\": \"bm7DqQK8e\"\n};\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    duration: .3,\n    ease: [.44, 0, .56, 1],\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst toResponsiveImage = value => {\n  if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {\n    return value;\n  }\n  return typeof value === \"string\" ? {\n    src: value\n  } : undefined;\n};\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"ULsvW2M2B\",\n  videoTextLink: WfdjHkFjl = \"\",\n  title: FQ9YsOaLE = \"Title\",\n  category: WqX1liJz9 = \"Commercial Ad\",\n  background: tW3aJwLL0 = \"rgb(18, 18, 18)\",\n  thumbnail: NILaqekUq,\n  link2: tygKzOeOI,\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"ULsvW2M2B\",\n    enabledGestures,\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const isDisplayed = () => {\n    if (baseVariant === \"bm7DqQK8e\") return false;\n    return true;\n  };\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-4PVsJ\", sharedStyle.className, sharedStyle1.className, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(motion.div, {\n        ...restProps,\n        className: cx(\"framer-f9igsu\", className),\n        \"data-framer-name\": \"Video Module - Desktop\",\n        layoutDependency: layoutDependency,\n        layoutId: \"ULsvW2M2B\",\n        ref: ref,\n        style: {\n          ...style\n        },\n        transition: transition,\n        ...addPropertyOverrides({\n          \"ULsvW2M2B-hover\": {\n            \"data-framer-name\": undefined\n          },\n          bm7DqQK8e: {\n            \"data-framer-name\": \"Video Module - Tablet\"\n          }\n        }, baseVariant, gestureVariant),\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          className: \"framer-uqp6ob\",\n          \"data-framer-name\": \"Background Wrap\",\n          layoutDependency: layoutDependency,\n          layoutId: \"qcsZCeprY\",\n          style: {\n            backgroundColor: \"rgb(18, 18, 18)\",\n            borderBottomLeftRadius: 20,\n            borderBottomRightRadius: 20,\n            borderTopLeftRadius: 20,\n            borderTopRightRadius: 20\n          },\n          transition: transition,\n          variants: {\n            \"ULsvW2M2B-hover\": {\n              backgroundColor: tW3aJwLL0\n            }\n          },\n          children: [/*#__PURE__*/_jsx(Link, {\n            href: tygKzOeOI,\n            children: /*#__PURE__*/_jsx(motion.a, {\n              className: \"framer-rr2oqx framer-1072uom\",\n              layoutDependency: layoutDependency,\n              layoutId: \"AfbQhWDKW\",\n              transition: transition\n            })\n          }), /*#__PURE__*/_jsx(Image, {\n            background: {\n              alt: \"\",\n              fit: \"fill\",\n              ...toResponsiveImage(NILaqekUq)\n            },\n            className: \"framer-1pmftpt\",\n            \"data-framer-name\": \"Video Wrapper\",\n            layoutDependency: layoutDependency,\n            layoutId: \"OW8lqE_5K\",\n            style: {\n              borderBottomLeftRadius: 17,\n              borderBottomRightRadius: 17,\n              borderTopLeftRadius: 17,\n              borderTopRightRadius: 17\n            },\n            transition: transition,\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-18xu4si-container\",\n              layoutDependency: layoutDependency,\n              layoutId: \"Tah_EZVvR-container\",\n              transition: transition,\n              children: /*#__PURE__*/_jsx(Vimeo, {\n                autoplay: true,\n                backgroundColor: \"rgba(0, 0, 0, 0)\",\n                controls: false,\n                height: \"100%\",\n                id: \"Tah_EZVvR\",\n                layoutId: \"Tah_EZVvR\",\n                loop: true,\n                mute: true,\n                playOnCanvas: false,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                titles: false,\n                video: WfdjHkFjl,\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-v6ebva\",\n            \"data-framer-name\": \"Text Wrapper\",\n            layoutDependency: layoutDependency,\n            layoutId: \"L5Bh_Gs2r\",\n            transition: transition,\n            children: [isDisplayed() && /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.p, {\n                  className: \"framer-styles-preset-16po3i2\",\n                  \"data-styles-preset\": \"H3CjjHffY\",\n                  children: \"Title\"\n                })\n              }),\n              className: \"framer-nfx2c9\",\n              layoutDependency: layoutDependency,\n              layoutId: \"kVIqk2rbP\",\n              style: {\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\",\n                opacity: 1\n              },\n              text: FQ9YsOaLE,\n              transition: transition,\n              variants: {\n                \"ULsvW2M2B-hover\": {\n                  opacity: 0\n                }\n              },\n              verticalAlignment: \"top\",\n              withExternalLayout: true\n            }), /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.p, {\n                  className: \"framer-styles-preset-16po3i2\",\n                  \"data-styles-preset\": \"H3CjjHffY\",\n                  children: \"Title\"\n                })\n              }),\n              className: \"framer-gn1kjj\",\n              layoutDependency: layoutDependency,\n              layoutId: \"kgBS2FfEj\",\n              style: {\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\",\n                opacity: 0\n              },\n              text: FQ9YsOaLE,\n              transition: transition,\n              variants: {\n                \"ULsvW2M2B-hover\": {\n                  opacity: 1\n                },\n                bm7DqQK8e: {\n                  opacity: 1\n                }\n              },\n              verticalAlignment: \"top\",\n              withExternalLayout: true,\n              ...addPropertyOverrides({\n                \"ULsvW2M2B-hover\": {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.p, {\n                      style: {\n                        \"--font-selector\": \"R0Y7RmphbGxhIE9uZS1yZWd1bGFy\",\n                        \"--framer-font-family\": '\"Fjalla One\", \"Fjalla One Placeholder\", sans-serif',\n                        \"--framer-font-size\": \"18px\",\n                        \"--framer-line-height\": \"1em\",\n                        \"--framer-text-transform\": \"uppercase\"\n                      },\n                      children: \"Title\"\n                    })\n                  }),\n                  fonts: [\"GF;Fjalla One-regular\"]\n                }\n              }, baseVariant, gestureVariant)\n            }), /*#__PURE__*/_jsx(RichText, {\n              __fromCanvasComponent: true,\n              children: /*#__PURE__*/_jsx(React.Fragment, {\n                children: /*#__PURE__*/_jsx(motion.p, {\n                  className: \"framer-styles-preset-1keose7\",\n                  \"data-styles-preset\": \"owIJoNWsP\",\n                  children: \"Commercial Ad\"\n                })\n              }),\n              className: \"framer-14cy1cc\",\n              layoutDependency: layoutDependency,\n              layoutId: \"j_Ma0JwMT\",\n              style: {\n                \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                \"--framer-link-text-decoration\": \"underline\",\n                \"--framer-paragraph-spacing\": \"0px\",\n                opacity: 0\n              },\n              text: WqX1liJz9,\n              transition: transition,\n              variants: {\n                \"ULsvW2M2B-hover\": {\n                  opacity: 1\n                },\n                bm7DqQK8e: {\n                  \"--extracted-r6o4lv\": \"rgb(220, 220, 220)\",\n                  opacity: 1\n                }\n              },\n              verticalAlignment: \"top\",\n              withExternalLayout: true,\n              ...addPropertyOverrides({\n                bm7DqQK8e: {\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(motion.p, {\n                      className: \"framer-styles-preset-1keose7\",\n                      \"data-styles-preset\": \"owIJoNWsP\",\n                      style: {\n                        \"--framer-text-color\": \"var(--extracted-r6o4lv)\"\n                      },\n                      children: \"Commercial Ad\"\n                    })\n                  })\n                }\n              }, baseVariant, gestureVariant)\n            })]\n          })]\n        })\n      })\n    })\n  });\n});\nconst 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 */\nconst FramerXQBYKN4fA = withCSS(Component, css, \"framer-4PVsJ\");\nexport default FramerXQBYKN4fA;\nFramerXQBYKN4fA.displayName = \"Video Card - Other Works\";\nFramerXQBYKN4fA.defaultProps = {\n  height: 498,\n  width: 467\n};\naddPropertyControls(FramerXQBYKN4fA, {\n  variant: {\n    options: [\"ULsvW2M2B\", \"bm7DqQK8e\"],\n    optionTitles: [\"Video Module - Desktop\", \"Video Module - Tablet\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  WfdjHkFjl: {\n    defaultValue: \"\",\n    title: \"Video Text Link\",\n    type: ControlType.String\n  },\n  FQ9YsOaLE: {\n    defaultValue: \"Title\",\n    title: \"Title\",\n    type: ControlType.String\n  },\n  WqX1liJz9: {\n    defaultValue: \"Commercial Ad\",\n    title: \"Category\",\n    type: ControlType.String\n  },\n  tW3aJwLL0: {\n    defaultValue: \"rgb(18, 18, 18)\",\n    title: \"Background\",\n    type: ControlType.Color\n  },\n  NILaqekUq: {\n    title: \"Thumbnail\",\n    type: ControlType.ResponsiveImage\n  },\n  tygKzOeOI: {\n    title: \"Link 2\",\n    type: ControlType.Link\n  }\n});\naddFonts(FramerXQBYKN4fA, [{\n  family: \"Fjalla One\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:canvasComponent/XQBYKN4fA:default\",\n    url: \"https://fonts.gstatic.com/s/fjallaone/v13/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/fjallaone/v13/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\",\n  weight: \"400\"\n}, ...VimeoFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerXQBYKN4fA\",\n      \"slots\": [],\n      \"annotations\": {\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        \"framerIntrinsicWidth\": \"467\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"498\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./XQBYKN4fA.map", "// Generated by Framer (a1bdbac)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, PathVariablesContext, resolveLink, useRouter, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Works from \"https://framerusercontent.com/modules/78mlRgZGG1O5heCCgii7/aVOObJsqSBk9uFTjjJ3f/ZGUx9nMll.js\";\nimport VideoCardOtherWorks from \"https://framerusercontent.com/modules/7ybXfe5KQu4P4pfOjhpA/DBnAzerzaPi9wXB4GmHc/XQBYKN4fA.js\";\nconst VideoCardOtherWorksFonts = getFonts(VideoCardOtherWorks);\nconst enabledGestures = {\n  dh_4RVwiH: {\n    hover: true\n  }\n};\nconst cycleOrder = [\"dh_4RVwiH\", \"FsRvhLEax\", \"sfYqHHmeK\", \"XUUhg1hFh\", \"j7swz7D9Q\"];\nconst variantClassNames = {\n  dh_4RVwiH: \"framer-v-gc9x4a\",\n  FsRvhLEax: \"framer-v-que4wy\",\n  j7swz7D9Q: \"framer-v-a6kxp1\",\n  sfYqHHmeK: \"framer-v-npmo78\",\n  XUUhg1hFh: \"framer-v-1lqfzm2\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst humanReadableVariantMap = {\n  \"Other Projects - Desktop\": \"dh_4RVwiH\",\n  \"Other Projects - Mobile Rotation\": \"j7swz7D9Q\",\n  \"Other Projects - Mobile\": \"XUUhg1hFh\",\n  \"Other Projects - Tablet Rotation\": \"sfYqHHmeK\",\n  \"Other Projects - Tablet\": \"FsRvhLEax\"\n};\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    duration: .3,\n    ease: [.44, 0, .56, 1],\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  },\n  j7swz7D9Q: {\n    damping: 60,\n    delay: 0,\n    duration: .7,\n    ease: [.12, .23, .13, .96],\n    mass: 1,\n    stiffness: 500,\n    type: \"tween\"\n  },\n  sfYqHHmeK: {\n    damping: 60,\n    delay: 0,\n    duration: .7,\n    ease: [.12, .23, .13, .96],\n    mass: 1,\n    stiffness: 500,\n    type: \"tween\"\n  },\n  XUUhg1hFh: {\n    damping: 100,\n    delay: 0,\n    duration: .7,\n    ease: [.12, .23, .5, 1],\n    mass: 1,\n    stiffness: 345,\n    type: \"tween\"\n  }\n};\nconst transformTemplate = (_, t) => `translateY(-50%) ${t}`;\nconst transformTemplate1 = (_, t) => `translate(-50%, -50%) ${t}`;\nconst toResponsiveImage = value => {\n  if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {\n    return value;\n  }\n  return typeof value === \"string\" ? {\n    src: value\n  } : undefined;\n};\nconst equals = (a, b) => {\n  return typeof a === \"string\" && typeof b === \"string\" ? a.toLowerCase() === b.toLowerCase() : a === b;\n};\nconst negate = value => {\n  return !value;\n};\nconst reverseArray = value => {\n  return Array.isArray(value) ? Array.from(value).reverse() : [];\n};\nconst offsetAndLimitArray = (value, offset, limit) => {\n  if (!Array.isArray(value)) return [];\n  const end = typeof limit === \"number\" ? offset + limit : undefined;\n  return value.slice(offset, end);\n};\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"dh_4RVwiH\",\n  title: uK_V8AQ_l = \"\",\n  Xev7mbXUwJHD8Ktq78,\n  ouLlUyS0qJHD8Ktq78,\n  pNME0L8H5JHD8Ktq78,\n  aASrV9wN5JHD8Ktq78,\n  geSEpzafmJHD8Ktq78,\n  HNmH8C0PZJHD8Ktq78,\n  idJHD8Ktq78,\n  Xev7mbXUwJQGV8JIOt,\n  ouLlUyS0qJQGV8JIOt,\n  pNME0L8H5JQGV8JIOt,\n  aASrV9wN5JQGV8JIOt,\n  geSEpzafmJQGV8JIOt,\n  HNmH8C0PZJQGV8JIOt,\n  idJQGV8JIOt,\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"dh_4RVwiH\",\n    enabledGestures,\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = variants.join(\"-\") + restProps.layoutDependency;\n  const router = useRouter();\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-Xi5iV\", classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        ...restProps,\n        className: cx(\"framer-gc9x4a\", className),\n        \"data-framer-name\": \"Other Projects - Desktop\",\n        layoutDependency: layoutDependency,\n        layoutId: \"dh_4RVwiH\",\n        ref: ref,\n        style: {\n          ...style\n        },\n        transition: transition,\n        ...addPropertyOverrides({\n          \"dh_4RVwiH-hover\": {\n            \"data-framer-name\": undefined\n          },\n          FsRvhLEax: {\n            \"data-framer-name\": \"Other Projects - Tablet\"\n          },\n          j7swz7D9Q: {\n            \"data-framer-name\": \"Other Projects - Mobile Rotation\"\n          },\n          sfYqHHmeK: {\n            \"data-framer-name\": \"Other Projects - Tablet Rotation\"\n          },\n          XUUhg1hFh: {\n            \"data-framer-name\": \"Other Projects - Mobile\"\n          }\n        }, baseVariant, gestureVariant),\n        children: [/*#__PURE__*/_jsx(motion.div, {\n          className: \"framer-1acy99s\",\n          layoutDependency: layoutDependency,\n          layoutId: \"JHD8Ktq78\",\n          style: {\n            rotate: 0\n          },\n          transformTemplate: transformTemplate,\n          transition: transition,\n          variants: {\n            \"dh_4RVwiH-hover\": {\n              rotate: -18\n            },\n            j7swz7D9Q: {\n              rotate: 10\n            },\n            sfYqHHmeK: {\n              rotate: -18\n            }\n          },\n          ...addPropertyOverrides({\n            FsRvhLEax: {\n              transformTemplate: undefined\n            },\n            j7swz7D9Q: {\n              transformTemplate: undefined\n            },\n            sfYqHHmeK: {\n              transformTemplate: undefined\n            },\n            XUUhg1hFh: {\n              transformTemplate: undefined\n            }\n          }, baseVariant, gestureVariant),\n          children: offsetAndLimitArray(reverseArray(Works.filter(item1u7zkct => {\n            if (!negate(equals(item1u7zkct[\"ouLlUyS0q\"], uK_V8AQ_l))) return false;\n            return true;\n          })), 3, 1).map(({\n            Xev7mbXUw: Xev7mbXUwJHD8Ktq78,\n            ouLlUyS0q: ouLlUyS0qJHD8Ktq78,\n            pNME0L8H5: pNME0L8H5JHD8Ktq78,\n            aASrV9wN5: aASrV9wN5JHD8Ktq78,\n            geSEpzafm: geSEpzafmJHD8Ktq78,\n            HNmH8C0PZ: HNmH8C0PZJHD8Ktq78,\n            id: idJHD8Ktq78\n          }, i) => /*#__PURE__*/_jsx(LayoutGroup, {\n            id: `JHD8Ktq78-${idJHD8Ktq78}`,\n            children: /*#__PURE__*/_jsx(PathVariablesContext.Provider, {\n              value: {\n                HNmH8C0PZ: HNmH8C0PZJHD8Ktq78\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1s2cl8j\",\n                layoutDependency: layoutDependency,\n                layoutId: \"NwhjdBcws\",\n                style: {\n                  \"--aASrV9wN5JHD8Ktq78\": aASrV9wN5JHD8Ktq78\n                },\n                transformTemplate: transformTemplate1,\n                transition: transition,\n                children: /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-hxkvhy-container\",\n                  layoutDependency: layoutDependency,\n                  layoutId: \"FNQf3KELA-container\",\n                  transition: transition,\n                  children: /*#__PURE__*/_jsx(VideoCardOtherWorks, {\n                    background: aASrV9wN5JHD8Ktq78,\n                    category: pNME0L8H5JHD8Ktq78,\n                    height: \"100%\",\n                    id: \"FNQf3KELA\",\n                    layoutId: \"FNQf3KELA\",\n                    link2: resolveLink({\n                      pathVariables: {\n                        HNmH8C0PZ: HNmH8C0PZJHD8Ktq78\n                      },\n                      webPageId: \"DydP3S2L9\"\n                    }, router),\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    thumbnail: toResponsiveImage(geSEpzafmJHD8Ktq78),\n                    title: ouLlUyS0qJHD8Ktq78,\n                    variant: \"ULsvW2M2B\",\n                    videoTextLink: Xev7mbXUwJHD8Ktq78,\n                    width: \"100%\",\n                    ...addPropertyOverrides({\n                      FsRvhLEax: {\n                        variant: \"bm7DqQK8e\"\n                      },\n                      j7swz7D9Q: {\n                        variant: \"bm7DqQK8e\"\n                      },\n                      sfYqHHmeK: {\n                        variant: \"bm7DqQK8e\"\n                      },\n                      XUUhg1hFh: {\n                        variant: \"bm7DqQK8e\"\n                      }\n                    }, baseVariant, gestureVariant)\n                  })\n                })\n              })\n            })\n          }, idJHD8Ktq78))\n        }), /*#__PURE__*/_jsx(motion.div, {\n          className: \"framer-1qk7ov8\",\n          layoutDependency: layoutDependency,\n          layoutId: \"JQGV8JIOt\",\n          style: {\n            rotate: 0\n          },\n          transformTemplate: transformTemplate1,\n          transition: transition,\n          variants: {\n            \"dh_4RVwiH-hover\": {\n              rotate: 18\n            },\n            j7swz7D9Q: {\n              rotate: -10\n            },\n            sfYqHHmeK: {\n              rotate: 18\n            }\n          },\n          ...addPropertyOverrides({\n            \"dh_4RVwiH-hover\": {\n              transformTemplate: undefined\n            },\n            FsRvhLEax: {\n              transformTemplate: undefined\n            },\n            j7swz7D9Q: {\n              transformTemplate: undefined\n            },\n            sfYqHHmeK: {\n              transformTemplate: undefined\n            },\n            XUUhg1hFh: {\n              transformTemplate: undefined\n            }\n          }, baseVariant, gestureVariant),\n          children: offsetAndLimitArray(Works.filter(item1281dgq => {\n            if (!negate(equals(item1281dgq[\"ouLlUyS0q\"], uK_V8AQ_l))) return false;\n            return true;\n          }), 3, 1).map(({\n            Xev7mbXUw: Xev7mbXUwJQGV8JIOt,\n            ouLlUyS0q: ouLlUyS0qJQGV8JIOt,\n            pNME0L8H5: pNME0L8H5JQGV8JIOt,\n            aASrV9wN5: aASrV9wN5JQGV8JIOt,\n            geSEpzafm: geSEpzafmJQGV8JIOt,\n            HNmH8C0PZ: HNmH8C0PZJQGV8JIOt,\n            id: idJQGV8JIOt\n          }, i) => /*#__PURE__*/_jsx(LayoutGroup, {\n            id: `JQGV8JIOt-${idJQGV8JIOt}`,\n            children: /*#__PURE__*/_jsx(PathVariablesContext.Provider, {\n              value: {\n                HNmH8C0PZ: HNmH8C0PZJQGV8JIOt\n              },\n              children: /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-47g7d4\",\n                layoutDependency: layoutDependency,\n                layoutId: \"jlir10Ela\",\n                style: {\n                  \"--aASrV9wN5JQGV8JIOt\": aASrV9wN5JQGV8JIOt\n                },\n                transformTemplate: transformTemplate1,\n                transition: transition,\n                children: /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-19043h2-container\",\n                  layoutDependency: layoutDependency,\n                  layoutId: \"lk6T4SGwm-container\",\n                  transition: transition,\n                  children: /*#__PURE__*/_jsx(VideoCardOtherWorks, {\n                    background: aASrV9wN5JQGV8JIOt,\n                    category: pNME0L8H5JQGV8JIOt,\n                    height: \"100%\",\n                    id: \"lk6T4SGwm\",\n                    layoutId: \"lk6T4SGwm\",\n                    link2: resolveLink({\n                      pathVariables: {\n                        HNmH8C0PZ: HNmH8C0PZJQGV8JIOt\n                      },\n                      webPageId: \"DydP3S2L9\"\n                    }, router),\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    thumbnail: toResponsiveImage(geSEpzafmJQGV8JIOt),\n                    title: ouLlUyS0qJQGV8JIOt,\n                    variant: \"ULsvW2M2B\",\n                    videoTextLink: Xev7mbXUwJQGV8JIOt,\n                    width: \"100%\",\n                    ...addPropertyOverrides({\n                      FsRvhLEax: {\n                        variant: \"bm7DqQK8e\"\n                      },\n                      j7swz7D9Q: {\n                        variant: \"bm7DqQK8e\"\n                      },\n                      sfYqHHmeK: {\n                        variant: \"bm7DqQK8e\"\n                      },\n                      XUUhg1hFh: {\n                        variant: \"bm7DqQK8e\"\n                      }\n                    }, baseVariant, gestureVariant)\n                  })\n                })\n              })\n            })\n          }, idJQGV8JIOt))\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-Xi5iV [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-Xi5iV * { box-sizing: border-box; }\", \".framer-Xi5iV .framer-oqz51g { display: block; }\", \".framer-Xi5iV .framer-gc9x4a { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 684px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\", \".framer-Xi5iV .framer-1acy99s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 412px; min-width: 386px; padding: 0px 0px 0px 0px; position: absolute; right: 307px; top: 50%; width: min-content; z-index: 1; }\", \".framer-Xi5iV .framer-1s2cl8j, .framer-Xi5iV .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 0px 0px 0px; pointer-events: auto; position: absolute; top: 50%; width: min-content; z-index: 10; }\", \".framer-Xi5iV .framer-hxkvhy-container { aspect-ratio: 0.9377510040160643 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 420px); position: relative; width: 394px; }\", \".framer-Xi5iV .framer-1qk7ov8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; min-height: 412px; min-width: 386px; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\", \".framer-Xi5iV .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; }\", \".framer-Xi5iV .framer-v-gc9x4a .framer-gc9x4a { cursor: pointer; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Xi5iV .framer-gc9x4a, .framer-Xi5iV .framer-1acy99s, .framer-Xi5iV .framer-1s2cl8j, .framer-Xi5iV .framer-1qk7ov8, .framer-Xi5iV .framer-47g7d4 { gap: 0px; } .framer-Xi5iV .framer-gc9x4a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Xi5iV .framer-gc9x4a > :first-child, .framer-Xi5iV .framer-1acy99s > :first-child, .framer-Xi5iV .framer-1s2cl8j > :first-child, .framer-Xi5iV .framer-1qk7ov8 > :first-child, .framer-Xi5iV .framer-47g7d4 > :first-child { margin-left: 0px; } .framer-Xi5iV .framer-gc9x4a > :last-child, .framer-Xi5iV .framer-1acy99s > :last-child, .framer-Xi5iV .framer-1s2cl8j > :last-child, .framer-Xi5iV .framer-1qk7ov8 > :last-child, .framer-Xi5iV .framer-47g7d4 > :last-child { margin-right: 0px; } .framer-Xi5iV .framer-1acy99s > *, .framer-Xi5iV .framer-1s2cl8j > *, .framer-Xi5iV .framer-1qk7ov8 > *, .framer-Xi5iV .framer-47g7d4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\", \".framer-Xi5iV.framer-v-que4wy .framer-gc9x4a, .framer-Xi5iV.framer-v-npmo78 .framer-gc9x4a { width: 600px; }\", \".framer-Xi5iV.framer-v-que4wy .framer-1acy99s { bottom: 136px; left: 107px; right: unset; top: unset; }\", \".framer-Xi5iV.framer-v-que4wy .framer-hxkvhy-container, .framer-Xi5iV.framer-v-npmo78 .framer-hxkvhy-container, .framer-Xi5iV.framer-v-1lqfzm2 .framer-hxkvhy-container, .framer-Xi5iV.framer-v-a6kxp1 .framer-hxkvhy-container { height: var(--framer-aspect-ratio-supported, 320px); width: 300px; }\", \".framer-Xi5iV.framer-v-que4wy .framer-1qk7ov8 { left: unset; right: 107px; top: 136px; }\", \".framer-Xi5iV.framer-v-que4wy .framer-19043h2-container, .framer-Xi5iV.framer-v-npmo78 .framer-19043h2-container, .framer-Xi5iV.framer-v-1lqfzm2 .framer-19043h2-container, .framer-Xi5iV.framer-v-a6kxp1 .framer-19043h2-container { height: var(--framer-aspect-ratio-supported, 320px); order: 0; width: 300px; }\", \".framer-Xi5iV.framer-v-npmo78 .framer-1acy99s { bottom: 136px; left: 0px; min-height: 412px; right: unset; top: unset; }\", \".framer-Xi5iV.framer-v-npmo78 .framer-1qk7ov8 { left: unset; right: 0px; top: 136px; }\", \".framer-Xi5iV.framer-v-1lqfzm2 .framer-gc9x4a, .framer-Xi5iV.framer-v-a6kxp1 .framer-gc9x4a { width: 390px; }\", \".framer-Xi5iV.framer-v-1lqfzm2 .framer-1acy99s { bottom: 136px; left: 2px; right: unset; top: unset; }\", \".framer-Xi5iV.framer-v-1lqfzm2 .framer-1qk7ov8 { left: unset; right: 2px; top: 136px; }\", \".framer-Xi5iV.framer-v-a6kxp1 .framer-1acy99s { bottom: 0px; left: 2px; right: unset; top: unset; }\", \".framer-Xi5iV.framer-v-a6kxp1 .framer-1qk7ov8 { left: unset; right: 2px; top: 0px; }\", \".framer-Xi5iV.framer-v-gc9x4a.hover .framer-1acy99s { left: 120px; min-height: 412px; right: unset; }\", \".framer-Xi5iV.framer-v-gc9x4a.hover .framer-1qk7ov8 { bottom: 136px; left: unset; right: 120px; top: unset; }\", \".framer-Xi5iV.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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    */\nconst FramerjTlLNTwGt = withCSS(Component, css, \"framer-Xi5iV\");\nexport default FramerjTlLNTwGt;\nFramerjTlLNTwGt.displayName = \"Other Video Cards\";\nFramerjTlLNTwGt.defaultProps = {\n  height: 684,\n  width: 1e3\n};\naddPropertyControls(FramerjTlLNTwGt, {\n  variant: {\n    options: [\"dh_4RVwiH\", \"FsRvhLEax\", \"sfYqHHmeK\", \"XUUhg1hFh\", \"j7swz7D9Q\"],\n    optionTitles: [\"Other Projects - Desktop\", \"Other Projects - Tablet\", \"Other Projects - Tablet Rotation\", \"Other Projects - Mobile\", \"Other Projects - Mobile Rotation\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  uK_V8AQ_l: {\n    defaultValue: \"\",\n    displayTextArea: false,\n    placeholder: \"\",\n    title: \"Title\",\n    type: ControlType.String\n  }\n});\naddFonts(FramerjTlLNTwGt, [...VideoCardOtherWorksFonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerjTlLNTwGt\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerVariables\": \"{\\\"uK_V8AQ_l\\\":\\\"title\\\"}\",\n        \"framerIntrinsicHeight\": \"684\",\n        \"framerContractVersion\": \"1\",\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      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore } from \"framer\";\nfontStore.loadWebFontsFromSelectors([\"GF;Fjalla One-regular\"]);\nexport const fonts = [{\n  family: \"Fjalla One\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/PmM3lqEmr:default\",\n    url: \"https://fonts.gstatic.com/s/fjallaone/v13/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/fjallaone/v13/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\",\n  weight: \"400\"\n}];\nexport const css = ['.framer-NTpix .framer-styles-preset-1lyte23:not(.rich-text-wrapper), .framer-NTpix .framer-styles-preset-1lyte23.rich-text-wrapper h3, .framer-NTpix .framer-styles-preset-1lyte23.rich-text-wrapper [data-preset-tag=\"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: 0px; --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-transform: uppercase; }', '@media (max-width: 1199px) and (min-width: 600px) { .framer-NTpix .framer-styles-preset-1lyte23:not(.rich-text-wrapper), .framer-NTpix .framer-styles-preset-1lyte23.rich-text-wrapper h3, .framer-NTpix .framer-styles-preset-1lyte23.rich-text-wrapper [data-preset-tag=\"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: 0px; --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-transform: uppercase; } }', '@media (max-width: 599px) and (min-width: 0px) { .framer-NTpix .framer-styles-preset-1lyte23:not(.rich-text-wrapper), .framer-NTpix .framer-styles-preset-1lyte23.rich-text-wrapper h3, .framer-NTpix .framer-styles-preset-1lyte23.rich-text-wrapper [data-preset-tag=\"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: 0px; --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-transform: uppercase; } }'];\nexport const className = \"framer-NTpix\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore } from \"framer\";\nfontStore.loadWebFontsFromSelectors([\"GF;Poppins-regular\"]);\nexport const fonts = [{\n  family: \"Poppins\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/VnmYoO0O_:default\",\n    url: \"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\",\n  weight: \"400\"\n}];\nexport const css = ['.framer-6uoqA .framer-styles-preset-tojcwj:not(.rich-text-wrapper), .framer-6uoqA .framer-styles-preset-tojcwj.rich-text-wrapper p, .framer-6uoqA .framer-styles-preset-tojcwj.rich-text-wrapper [data-preset-tag=\"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: left; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-transform: none; }', '@media (max-width: 1199px) and (min-width: 600px) { .framer-6uoqA .framer-styles-preset-tojcwj:not(.rich-text-wrapper), .framer-6uoqA .framer-styles-preset-tojcwj.rich-text-wrapper p, .framer-6uoqA .framer-styles-preset-tojcwj.rich-text-wrapper [data-preset-tag=\"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: left; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-transform: none; } }', '@media (max-width: 599px) and (min-width: 0px) { .framer-6uoqA .framer-styles-preset-tojcwj:not(.rich-text-wrapper), .framer-6uoqA .framer-styles-preset-tojcwj.rich-text-wrapper p, .framer-6uoqA .framer-styles-preset-tojcwj.rich-text-wrapper [data-preset-tag=\"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: left; --framer-text-color: var(--token-99c2a2fb-c572-4a21-9b3a-79ca65ab414d, #dcdcdc); --framer-text-decoration: none; --framer-text-transform: none; } }'];\nexport const className = \"framer-6uoqA\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "import { fontStore } from \"framer\";\nfontStore.loadWebFontsFromSelectors([\"GF;Fjalla One-regular\"]);\nexport const fonts = [{\n  family: \"Fjalla One\",\n  moduleAsset: {\n    localModuleIdentifier: \"local-module:css/W8rbV9pn5:default\",\n    url: \"https://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\"\n  },\n  style: \"normal\",\n  url: \"https://fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\",\n  weight: \"400\"\n}];\nexport const css = ['.framer-njtc9 .framer-styles-preset-1s58l1t:not(.rich-text-wrapper), .framer-njtc9 .framer-styles-preset-1s58l1t.rich-text-wrapper h1, .framer-njtc9 .framer-styles-preset-1s58l1t.rich-text-wrapper [data-preset-tag=\"h1\"] { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-size: 240px; --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-transform: uppercase; }', '@media (max-width: 1199px) and (min-width: 600px) { .framer-njtc9 .framer-styles-preset-1s58l1t:not(.rich-text-wrapper), .framer-njtc9 .framer-styles-preset-1s58l1t.rich-text-wrapper h1, .framer-njtc9 .framer-styles-preset-1s58l1t.rich-text-wrapper [data-preset-tag=\"h1\"] { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-size: 125px; --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-transform: uppercase; } }', '@media (max-width: 599px) and (min-width: 0px) { .framer-njtc9 .framer-styles-preset-1s58l1t:not(.rich-text-wrapper), .framer-njtc9 .framer-styles-preset-1s58l1t.rich-text-wrapper h1, .framer-njtc9 .framer-styles-preset-1s58l1t.rich-text-wrapper [data-preset-tag=\"h1\"] { --framer-font-family: \"Fjalla One\", \"Fjalla One Placeholder\", sans-serif; --framer-font-size: 80px; --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-transform: uppercase; } }'];\nexport const className = \"framer-njtc9\";\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"css\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"className\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"fonts\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};", "// Generated by Framer (5b5d553)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, Image, NotFoundError, optimizeAppear, optimizeAppearTransformTemplate, PropertyOverrides, removeHiddenBreakpointLayers, RichText, useCurrentPathVariables, useDataRecord, useHydratedBreakpointVariants, useRouteElementId, withCSS, withFX, withVariantAppearEffect } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport Ticker from \"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/ozEmHfjNuPlYdOaimlhV/Ticker.js\";\nimport Embed from \"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";\nimport FooterFooter from \"https://framerusercontent.com/modules/1pjfzXesictI7m05UBwX/GAWuntYunaY4nzp91wbL/g0_GsE4T3.js\";\nimport OtherVideoCards from \"https://framerusercontent.com/modules/vfmWllFTCw0LjWEDv1gw/ZBjvxrg9bsi82uuWZdfl/jTlLNTwGt.js\";\nimport NavigationNavigation from \"https://framerusercontent.com/modules/mPuvsOp6FIpbsVdPImu4/DzfXHqvNwWvcnOnAQI56/ybeA4oG0v.js\";\nimport Works from \"https://framerusercontent.com/modules/78mlRgZGG1O5heCCgii7/aVOObJsqSBk9uFTjjJ3f/ZGUx9nMll.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/8EW8Y9FDzcgkwttM2gwV/nK85fJyeDRiUfCnRP5qB/cIWEZs4S7.js\";\nimport * as sharedStyle5 from \"https://framerusercontent.com/modules/liEkn0BtxPug8H0FPxFy/DJJaQpAduyrnLI4utLtb/KjEL69wIH.js\";\nimport * as sharedStyle6 from \"https://framerusercontent.com/modules/jD3ddpeAhkbvTMftSi5Q/wPH0LaFvbimJyBpPRsFa/MXhKL9RD2.js\";\nimport * as sharedStyle3 from \"https://framerusercontent.com/modules/xcUIs9rVu9txmtRoZgoG/fK0cKGnvinggt0mxMDkR/PmM3lqEmr.js\";\nimport * as sharedStyle4 from \"https://framerusercontent.com/modules/mUMrsOv5THs5SAr6E1d2/ndWxZyaNVabSjrfkeRHC/VnmYoO0O_.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/ysLzmbOKKsL7wEI11xJ2/P0OPrrNpbUS7NTy6c5Oc/W8rbV9pn5.js\";\nimport * as sharedStyle2 from \"https://framerusercontent.com/modules/tYH2puchKZvgITYqtn9S/xAwfs7vGRod6o9qEgUtL/wOyzhwLIH.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/fPfXbDzD3gv4dVFhG1kG/HpOgQX1o0MOYvZGWPLBH/DydP3S2L9.js\";\nconst NavigationNavigationFonts = getFonts(NavigationNavigation);\nconst TickerFonts = getFonts(Ticker);\nconst RichTextWithFX = withFX(RichText);\nconst EmbedFonts = getFonts(Embed);\nconst MotionDivWithFX = withFX(motion.div);\nconst OtherVideoCardsFonts = getFonts(OtherVideoCards);\nconst OtherVideoCardsWithVariantAppearEffect = withVariantAppearEffect(OtherVideoCards);\nconst FooterFooterFonts = getFonts(FooterFooter);\nconst cycleOrder = [\"O_3ApxtdM\", \"AQGYqBb7L\", \"iF_oMPLPl\"];\nconst breakpoints = {\n  AQGYqBb7L: \"(min-width: 600px) and (max-width: 1199px)\",\n  iF_oMPLPl: \"(max-width: 599px)\",\n  O_3ApxtdM: \"(min-width: 1200px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  AQGYqBb7L: \"framer-v-p6x7rg\",\n  iF_oMPLPl: \"framer-v-asale3\",\n  O_3ApxtdM: \"framer-v-wpzf57\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"O_3ApxtdM\", breakpoints, variantClassNames);\n}\nconst humanReadableVariantMap = {\n  Desktop: \"O_3ApxtdM\",\n  Phone: \"iF_oMPLPl\",\n  Tablet: \"AQGYqBb7L\"\n};\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst transition1 = {\n  delay: .1,\n  duration: 1,\n  ease: [.12, .23, .13, .96],\n  type: \"tween\"\n};\nconst animation = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: -150\n};\nconst transformTemplate = (_, t) => `perspective(1200px) translateX(-50%) ${t}`;\nconst animation1 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition1,\n  x: 0,\n  y: 0\n};\nconst animation2 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: -150\n};\nconst transformTemplate1 = (_, t) => `perspective(1200px) ${t}`;\nconst transition2 = {\n  delay: 0,\n  duration: 1,\n  ease: [.12, .23, .13, .96],\n  type: \"tween\"\n};\nconst animation3 = {\n  opacity: 1,\n  rotate: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 380\n};\nconst animation4 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst animation5 = {\n  opacity: 1,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 380\n};\nconst transition3 = {\n  delay: .2,\n  duration: 1.5,\n  ease: [0, 0, 1, 1],\n  type: \"tween\"\n};\nconst animation6 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 0\n};\nconst animation7 = {\n  opacity: 1,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition3,\n  x: 0,\n  y: 0\n};\nconst animation8 = {\n  opacity: .001,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 0\n};\nconst animation9 = {\n  opacity: 0,\n  rotate: 2,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 150\n};\nconst transformTemplate2 = (_, t) => `perspective(1200px) ${t} rotate(358deg)`;\nconst animation10 = {\n  opacity: .85,\n  rotate: 0,\n  rotateX: 0,\n  rotateY: 0,\n  scale: 1,\n  transition: transition2,\n  x: 0,\n  y: 0\n};\nconst animation11 = {\n  opacity: .001,\n  rotate: 2,\n  scale: 1,\n  x: 0,\n  y: 150\n};\nconst toResponsiveImage = value => {\n  if (typeof value === \"object\" && value !== null && typeof value.src === \"string\") {\n    return value;\n  }\n  return typeof value === \"string\" ? {\n    src: value\n  } : undefined;\n};\nconst transformTemplate3 = (_, t) => `perspective(1200px) ${t} rotate(357deg)`;\nconst animation12 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  x: 0,\n  y: 0\n};\nconst transition4 = {\n  delay: 0,\n  duration: 1,\n  ease: [0, 0, 1, 1],\n  type: \"tween\"\n};\nconst animation13 = {\n  opacity: 0,\n  rotate: 0,\n  scale: 1,\n  transition: transition4,\n  x: 0,\n  y: 0\n};\nconst animation14 = {\n  opacity: 0,\n  rotate: 0,\n  scale: .9,\n  x: 0,\n  y: 0\n};\nconst transition5 = {\n  delay: 0,\n  duration: 1.4,\n  ease: [.12, .23, .13, .96],\n  type: \"tween\"\n};\nconst animation15 = {\n  opacity: 0,\n  rotate: 0,\n  scale: .9,\n  transition: transition5,\n  x: 0,\n  y: 0\n};\nconst metadata = metadataProvider();\nconst Component = /*#__PURE__*/React.forwardRef(function ({\n  id,\n  style,\n  className,\n  width,\n  height,\n  layoutId,\n  variant: outerVariant = \"O_3ApxtdM\",\n  aASrV9wN5,\n  ouLlUyS0q,\n  pNME0L8H5,\n  JWfikj_UC,\n  JWy1zZbkr,\n  dgBEy2Lod,\n  uVFYvauEg,\n  v_ITUPQ3y,\n  hNqtEZfmd,\n  lk_IhyAo3,\n  T1up2QMLI,\n  ...restProps\n}, ref) {\n  const outerVariantId = humanReadableVariantMap[outerVariant];\n  const variant = outerVariantId || outerVariant;\n  const currentPathVariables = useCurrentPathVariables();\n  const currentRouteData = useDataRecord(Works, currentPathVariables);\n  const getFromCurrentRouteData = key => {\n    if (!currentRouteData) throw new NotFoundError(`No data in \"Works\" matches path variables: ${JSON.stringify(currentPathVariables)}`);\n    return currentRouteData[key];\n  };\n  if (ouLlUyS0q === undefined) ouLlUyS0q = getFromCurrentRouteData(\"ouLlUyS0q\");\n  if (aASrV9wN5 === undefined) aASrV9wN5 = getFromCurrentRouteData(\"aASrV9wN5\");\n  if (pNME0L8H5 === undefined) pNME0L8H5 = getFromCurrentRouteData(\"pNME0L8H5\");\n  if (T1up2QMLI === undefined) T1up2QMLI = getFromCurrentRouteData(\"T1up2QMLI\");\n  if (JWfikj_UC === undefined) JWfikj_UC = getFromCurrentRouteData(\"JWfikj_UC\");\n  if (JWy1zZbkr === undefined) JWy1zZbkr = getFromCurrentRouteData(\"JWy1zZbkr\");\n  if (dgBEy2Lod === undefined) dgBEy2Lod = getFromCurrentRouteData(\"dgBEy2Lod\");\n  if (uVFYvauEg === undefined) uVFYvauEg = getFromCurrentRouteData(\"uVFYvauEg\");\n  if (v_ITUPQ3y === undefined) v_ITUPQ3y = getFromCurrentRouteData(\"v_ITUPQ3y\");\n  if (hNqtEZfmd === undefined) hNqtEZfmd = getFromCurrentRouteData(\"hNqtEZfmd\");\n  if (lk_IhyAo3 === undefined) lk_IhyAo3 = getFromCurrentRouteData(\"lk_IhyAo3\");\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider(currentRouteData);\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, [currentRouteData]);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const isDisplayed = () => {\n    if ([\"AQGYqBb7L\", \"iF_oMPLPl\"].includes(baseVariant)) return !isBrowser();\n    return true;\n  };\n  const id1 = useRouteElementId(\"TF_4g3eZj\");\n  const ref1 = React.useRef(null);\n  const isDisplayed1 = () => {\n    if (baseVariant === \"iF_oMPLPl\") return true;\n    return !isBrowser();\n  };\n  const isDisplayed2 = () => {\n    if (baseVariant === \"AQGYqBb7L\") return true;\n    return !isBrowser();\n  };\n  const id2 = useRouteElementId(\"evyCFBvbi\");\n  const ref2 = React.useRef(null);\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"O_3ApxtdM\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-43Mk4\", sharedStyle.className, sharedStyle1.className, sharedStyle2.className, sharedStyle3.className, sharedStyle4.className, sharedStyle5.className, sharedStyle6.className),\n        style: {\n          \"--aASrV9wN5\": aASrV9wN5,\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-wpzf57\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(PropertyOverrides, {\n            breakpoint: baseVariant,\n            overrides: {\n              AQGYqBb7L: {\n                \"data-framer-appear-id\": \"wq2suj\",\n                animate: optimizeAppear(\"animate\", \"wq2suj\", animation1, \"p6x7rg\"),\n                initial: optimizeAppear(\"initial\", \"wq2suj\", animation2, \"p6x7rg\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"wq2suj\", transformTemplate)\n              },\n              iF_oMPLPl: {\n                \"data-framer-appear-id\": \"10sqf3a\",\n                animate: optimizeAppear(\"animate\", \"10sqf3a\", animation1, \"asale3\"),\n                initial: optimizeAppear(\"initial\", \"10sqf3a\", animation2, \"asale3\"),\n                transformTemplate: optimizeAppearTransformTemplate(\"10sqf3a\", transformTemplate1)\n              }\n            },\n            children: /*#__PURE__*/_jsx(Container, {\n              animate: optimizeAppear(\"animate\", \"1m21qbl\", animation1, \"wpzf57\"),\n              className: \"framer-1m21qbl-container\",\n              \"data-framer-appear-id\": \"1m21qbl\",\n              \"data-framer-name\": \"Navigation\",\n              exit: animation,\n              initial: optimizeAppear(\"initial\", \"1m21qbl\", animation2, \"wpzf57\"),\n              layoutScroll: true,\n              name: \"Navigation\",\n              transformTemplate: optimizeAppearTransformTemplate(\"1m21qbl\", transformTemplate),\n              children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  AQGYqBb7L: {\n                    variant: \"S9kejZlWA\"\n                  },\n                  iF_oMPLPl: {\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    variant: \"TbZox9XCf\"\n                  }\n                },\n                children: /*#__PURE__*/_jsx(NavigationNavigation, {\n                  height: \"100%\",\n                  id: \"bSCaWvEvM\",\n                  layoutId: \"bSCaWvEvM\",\n                  name: \"Navigation\",\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"NOEcktwvv\",\n                  width: \"100%\"\n                })\n              })\n            })\n          }), isDisplayed() && /*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-1kpsdsr hidden-p6x7rg hidden-asale3\",\n            \"data-framer-name\": \"Buy Template Module\",\n            name: \"Buy Template Module\",\n            children: /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1kanbo3\",\n              \"data-framer-name\": \"Button Wrapper\",\n              name: \"Button Wrapper\"\n            })\n          }), /*#__PURE__*/_jsxs(motion.main, {\n            className: \"framer-zlo68k\",\n            \"data-framer-name\": \"Main Wrapper\",\n            name: \"Main Wrapper\",\n            children: [/*#__PURE__*/_jsxs(motion.header, {\n              className: \"framer-3g5tq\",\n              \"data-framer-name\": \"Section Header\",\n              name: \"Section Header\",\n              children: [/*#__PURE__*/_jsxs(motion.div, {\n                className: \"framer-1por4t2\",\n                \"data-framer-name\": \"Header Title Container\",\n                name: \"Header Title Container\",\n                children: [/*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-1f5jgha\",\n                  \"data-framer-name\": \"Title Wrapper\",\n                  name: \"Title Wrapper\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      AQGYqBb7L: {\n                        \"data-framer-appear-id\": \"1majv41\",\n                        animate: optimizeAppear(\"animate\", \"1majv41\", animation4, \"p6x7rg\"),\n                        initial: optimizeAppear(\"initial\", \"1majv41\", animation5, \"p6x7rg\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"1majv41\", transformTemplate1)\n                      },\n                      iF_oMPLPl: {\n                        \"data-framer-appear-id\": \"h3bmpw\",\n                        animate: optimizeAppear(\"animate\", \"h3bmpw\", animation4, \"asale3\"),\n                        initial: optimizeAppear(\"initial\", \"h3bmpw\", animation5, \"asale3\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"h3bmpw\", transformTemplate1)\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      animate: optimizeAppear(\"animate\", \"1okxayl\", animation4, \"wpzf57\"),\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h1\", {\n                          className: \"framer-styles-preset-1s58l1t\",\n                          \"data-styles-preset\": \"W8rbV9pn5\",\n                          style: {\n                            \"--framer-text-color\": \"var(--variable-reference-aASrV9wN5-DydP3S2L9)\"\n                          },\n                          children: \"Rakhi & Peppe\"\n                        })\n                      }),\n                      className: \"framer-1okxayl\",\n                      \"data-framer-appear-id\": \"1okxayl\",\n                      \"data-framer-name\": \"Title\",\n                      exit: animation3,\n                      id: id1,\n                      initial: optimizeAppear(\"initial\", \"1okxayl\", animation5, \"wpzf57\"),\n                      name: \"Title\",\n                      ref: ref1,\n                      text: ouLlUyS0q,\n                      transformTemplate: optimizeAppearTransformTemplate(\"1okxayl\", transformTemplate1),\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })\n                }), /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-1u5umr9\",\n                  \"data-framer-name\": \"Header Tag Wrapper\",\n                  name: \"Header Tag Wrapper\",\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      AQGYqBb7L: {\n                        \"data-framer-appear-id\": \"hi9hj1\",\n                        animate: optimizeAppear(\"animate\", \"hi9hj1\", animation7, \"p6x7rg\"),\n                        initial: optimizeAppear(\"initial\", \"hi9hj1\", animation8, \"p6x7rg\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"hi9hj1\", transformTemplate1)\n                      },\n                      iF_oMPLPl: {\n                        \"data-framer-appear-id\": \"1gqvtz\",\n                        animate: optimizeAppear(\"animate\", \"1gqvtz\", animation7, \"asale3\"),\n                        initial: optimizeAppear(\"initial\", \"1gqvtz\", animation8, \"asale3\"),\n                        transformTemplate: optimizeAppearTransformTemplate(\"1gqvtz\", transformTemplate1)\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(RichText, {\n                      __fromCanvasComponent: true,\n                      animate: optimizeAppear(\"animate\", \"1sz1f34\", animation7, \"wpzf57\"),\n                      children: /*#__PURE__*/_jsx(React.Fragment, {\n                        children: /*#__PURE__*/_jsx(\"h2\", {\n                          className: \"framer-styles-preset-893xc8\",\n                          \"data-styles-preset\": \"cIWEZs4S7\",\n                          children: \"Commercial\"\n                        })\n                      }),\n                      className: \"framer-1sz1f34\",\n                      \"data-framer-appear-id\": \"1sz1f34\",\n                      exit: animation6,\n                      initial: optimizeAppear(\"initial\", \"1sz1f34\", animation8, \"wpzf57\"),\n                      text: pNME0L8H5,\n                      transformTemplate: optimizeAppearTransformTemplate(\"1sz1f34\", transformTemplate1),\n                      verticalAlignment: \"top\",\n                      withExternalLayout: true\n                    })\n                  })\n                })]\n              }), isDisplayed() && /*#__PURE__*/_jsx(Container, {\n                animate: optimizeAppear(\"animate\", \"1vnidqk\", animation10, \"wpzf57\"),\n                className: \"framer-1vnidqk-container hidden-p6x7rg hidden-asale3\",\n                \"data-framer-appear-id\": \"1vnidqk\",\n                \"data-framer-name\": \"Project Image Ticker - Desktop\",\n                exit: animation9,\n                initial: optimizeAppear(\"initial\", \"1vnidqk\", animation11, \"wpzf57\"),\n                name: \"Project Image Ticker - Desktop\",\n                transformTemplate: optimizeAppearTransformTemplate(\"1vnidqk\", transformTemplate2),\n                children: /*#__PURE__*/_jsx(Ticker, {\n                  alignment: \"center\",\n                  direction: \"left\",\n                  fadeOptions: {\n                    fadeAlpha: .4,\n                    fadeContent: true,\n                    fadeInset: 0,\n                    fadeWidth: 19,\n                    overflow: false\n                  },\n                  gap: 15,\n                  height: \"100%\",\n                  hoverFactor: .3,\n                  id: \"vgVWOsz7n\",\n                  layoutId: \"vgVWOsz7n\",\n                  name: \"Project Image Ticker - Desktop\",\n                  padding: 10,\n                  paddingBottom: 1,\n                  paddingLeft: 0,\n                  paddingPerSide: true,\n                  paddingRight: 0,\n                  paddingTop: 1,\n                  sizingOptions: {\n                    heightType: false,\n                    widthType: true\n                  },\n                  slots: [/*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-120vvkp\",\n                    \"data-framer-name\": \"Loop Image Wrapper - Desktop 1\",\n                    name: \"Loop Image Wrapper - Desktop 1\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        ...toResponsiveImage(JWfikj_UC)\n                      },\n                      className: \"framer-1ovjen1\",\n                      \"data-framer-name\": \"Loop Image\",\n                      name: \"Loop Image\"\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1s4s9hf\",\n                    \"data-framer-name\": \"Loop Image Wrapper - Desktop 2\",\n                    name: \"Loop Image Wrapper - Desktop 2\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        ...toResponsiveImage(JWy1zZbkr)\n                      },\n                      className: \"framer-modh5s\",\n                      \"data-framer-name\": \"Loop Image\",\n                      name: \"Loop Image\"\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-176oph0\",\n                    \"data-framer-name\": \"Loop Image Wrapper - Desktop 3\",\n                    name: \"Loop Image Wrapper - Desktop 3\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        ...toResponsiveImage(dgBEy2Lod)\n                      },\n                      className: \"framer-77qy10\",\n                      \"data-framer-name\": \"Loop Image\",\n                      name: \"Loop Image\"\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-4eu3f2\",\n                    \"data-framer-name\": \"Loop Image Wrapper - Desktop 4\",\n                    name: \"Loop Image Wrapper - Desktop 4\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        ...toResponsiveImage(uVFYvauEg)\n                      },\n                      className: \"framer-72kxop\",\n                      \"data-framer-name\": \"Loop Image\",\n                      name: \"Loop Image\"\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-gdhulh\",\n                    \"data-framer-name\": \"Loop Image Wrapper - Desktop 5\",\n                    name: \"Loop Image Wrapper - Desktop 5\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        ...toResponsiveImage(v_ITUPQ3y)\n                      },\n                      className: \"framer-1aan55a\",\n                      \"data-framer-name\": \"Loop Image\",\n                      name: \"Loop Image\"\n                    })\n                  }), /*#__PURE__*/_jsx(motion.div, {\n                    className: \"framer-1r6vwzq\",\n                    \"data-framer-name\": \"Loop Image Wrapper - Desktop 6\",\n                    name: \"Loop Image Wrapper - Desktop 6\",\n                    children: /*#__PURE__*/_jsx(Image, {\n                      background: {\n                        alt: \"\",\n                        fit: \"fill\",\n                        ...toResponsiveImage(hNqtEZfmd)\n                      },\n                      className: \"framer-1mx9r1t\",\n                      \"data-framer-name\": \"Loop Image\",\n                      name: \"Loop Image\"\n                    })\n                  })],\n                  speed: 80,\n                  style: {\n                    height: \"100%\",\n                    width: \"100%\"\n                  },\n                  width: \"100%\"\n                })\n              }), isDisplayed1() && /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  iF_oMPLPl: {\n                    \"data-framer-appear-id\": \"b16q1u\",\n                    animate: optimizeAppear(\"animate\", \"b16q1u\", animation10, \"asale3\"),\n                    initial: optimizeAppear(\"initial\", \"b16q1u\", animation11, \"asale3\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"b16q1u\", transformTemplate3)\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Container, {\n                  animate: optimizeAppear(\"animate\", \"pqozop\", animation10, \"wpzf57\"),\n                  className: \"framer-pqozop-container hidden-wpzf57 hidden-p6x7rg\",\n                  \"data-framer-appear-id\": \"pqozop\",\n                  \"data-framer-name\": \"Project Image Ticker - Mobile\",\n                  exit: animation9,\n                  initial: optimizeAppear(\"initial\", \"pqozop\", animation11, \"wpzf57\"),\n                  name: \"Project Image Ticker - Mobile\",\n                  transformTemplate: optimizeAppearTransformTemplate(\"pqozop\", transformTemplate3),\n                  children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                    breakpoint: baseVariant,\n                    overrides: {\n                      iF_oMPLPl: {\n                        fadeOptions: {\n                          fadeAlpha: .4,\n                          fadeContent: true,\n                          fadeInset: 0,\n                          fadeWidth: 51,\n                          overflow: false\n                        }\n                      }\n                    },\n                    children: /*#__PURE__*/_jsx(Ticker, {\n                      alignment: \"center\",\n                      direction: \"left\",\n                      fadeOptions: {\n                        fadeAlpha: .4,\n                        fadeContent: false,\n                        fadeInset: 0,\n                        fadeWidth: 51,\n                        overflow: false\n                      },\n                      gap: 0,\n                      height: \"100%\",\n                      hoverFactor: .3,\n                      id: \"lcoQEi5Gh\",\n                      layoutId: \"lcoQEi5Gh\",\n                      name: \"Project Image Ticker - Mobile\",\n                      padding: 10,\n                      paddingBottom: 0,\n                      paddingLeft: 0,\n                      paddingPerSide: true,\n                      paddingRight: 0,\n                      paddingTop: 0,\n                      sizingOptions: {\n                        heightType: false,\n                        widthType: true\n                      },\n                      slots: [/*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1jldi41\",\n                        \"data-framer-name\": \"Loop Image Wrapper - Mobile 1\",\n                        name: \"Loop Image Wrapper - Mobile 1\",\n                        children: /*#__PURE__*/_jsx(Image, {\n                          background: {\n                            alt: \"\",\n                            fit: \"fill\",\n                            ...toResponsiveImage(JWfikj_UC)\n                          },\n                          className: \"framer-1cy3ig9\",\n                          \"data-framer-name\": \"Loop Image\",\n                          name: \"Loop Image\"\n                        })\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-t68kkl\",\n                        \"data-framer-name\": \"Loop Image Wrapper - Mobile 2\",\n                        name: \"Loop Image Wrapper - Mobile 2\",\n                        children: /*#__PURE__*/_jsx(Image, {\n                          background: {\n                            alt: \"\",\n                            fit: \"fill\",\n                            ...toResponsiveImage(JWy1zZbkr)\n                          },\n                          className: \"framer-4j1t5v\",\n                          \"data-framer-name\": \"Loop Image\",\n                          name: \"Loop Image\"\n                        })\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-hbh3s0\",\n                        \"data-framer-name\": \"Loop Image Wrapper - Mobile 3\",\n                        name: \"Loop Image Wrapper - Mobile 3\",\n                        children: /*#__PURE__*/_jsx(Image, {\n                          background: {\n                            alt: \"\",\n                            fit: \"fill\",\n                            ...toResponsiveImage(dgBEy2Lod)\n                          },\n                          className: \"framer-p6c91w\",\n                          \"data-framer-name\": \"Loop Image\",\n                          name: \"Loop Image\"\n                        })\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-c3j0ty\",\n                        \"data-framer-name\": \"Loop Image Wrapper - Mobile 4\",\n                        name: \"Loop Image Wrapper - Mobile 4\",\n                        children: /*#__PURE__*/_jsx(Image, {\n                          background: {\n                            alt: \"\",\n                            fit: \"fill\",\n                            ...toResponsiveImage(uVFYvauEg)\n                          },\n                          className: \"framer-1085sng\",\n                          \"data-framer-name\": \"Loop Image\",\n                          name: \"Loop Image\"\n                        })\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-m952f2\",\n                        \"data-framer-name\": \"Loop Image Wrapper - Mobile 5\",\n                        name: \"Loop Image Wrapper - Mobile 5\",\n                        children: /*#__PURE__*/_jsx(Image, {\n                          background: {\n                            alt: \"\",\n                            fit: \"fill\",\n                            ...toResponsiveImage(v_ITUPQ3y)\n                          },\n                          className: \"framer-15kekoj\",\n                          \"data-framer-name\": \"Loop Image\",\n                          name: \"Loop Image\"\n                        })\n                      }), /*#__PURE__*/_jsx(motion.div, {\n                        className: \"framer-1ugcqq6\",\n                        \"data-framer-name\": \"Loop Image Wrapper - Mobile 6\",\n                        name: \"Loop Image Wrapper - Mobile 6\",\n                        children: /*#__PURE__*/_jsx(Image, {\n                          background: {\n                            alt: \"\",\n                            fit: \"fill\",\n                            ...toResponsiveImage(hNqtEZfmd)\n                          },\n                          className: \"framer-1s9ap73\",\n                          \"data-framer-name\": \"Loop Image\",\n                          name: \"Loop Image\"\n                        })\n                      })],\n                      speed: 50,\n                      style: {\n                        height: \"100%\",\n                        width: \"100%\"\n                      },\n                      width: \"100%\"\n                    })\n                  })\n                })\n              }), isDisplayed2() && /*#__PURE__*/_jsx(PropertyOverrides, {\n                breakpoint: baseVariant,\n                overrides: {\n                  AQGYqBb7L: {\n                    \"data-framer-appear-id\": \"1k0o178\",\n                    animate: optimizeAppear(\"animate\", \"1k0o178\", animation10, \"p6x7rg\"),\n                    initial: optimizeAppear(\"initial\", \"1k0o178\", animation11, \"p6x7rg\"),\n                    transformTemplate: optimizeAppearTransformTemplate(\"1k0o178\", transformTemplate3)\n                  }\n                },\n                children: /*#__PURE__*/_jsx(Container, {\n                  animate: optimizeAppear(\"animate\", \"1bdomif\", animation10, \"wpzf57\"),\n                  className: \"framer-1bdomif-container hidden-wpzf57 hidden-asale3\",\n                  \"data-framer-appear-id\": \"1bdomif\",\n                  \"data-framer-name\": \"Project Image Ticker - Tablet\",\n                  exit: animation9,\n                  initial: optimizeAppear(\"initial\", \"1bdomif\", animation11, \"wpzf57\"),\n                  name: \"Project Image Ticker - Tablet\",\n                  transformTemplate: optimizeAppearTransformTemplate(\"1bdomif\", transformTemplate3),\n                  children: /*#__PURE__*/_jsx(Ticker, {\n                    alignment: \"center\",\n                    direction: \"left\",\n                    fadeOptions: {\n                      fadeAlpha: .4,\n                      fadeContent: true,\n                      fadeInset: 0,\n                      fadeWidth: 51,\n                      overflow: false\n                    },\n                    gap: 10,\n                    height: \"100%\",\n                    hoverFactor: .3,\n                    id: \"wNuC_vGpY\",\n                    layoutId: \"wNuC_vGpY\",\n                    name: \"Project Image Ticker - Tablet\",\n                    padding: 10,\n                    paddingBottom: 0,\n                    paddingLeft: 0,\n                    paddingPerSide: true,\n                    paddingRight: 0,\n                    paddingTop: 0,\n                    sizingOptions: {\n                      heightType: false,\n                      widthType: true\n                    },\n                    slots: [/*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-obq7rr\",\n                      \"data-framer-name\": \"Loop Image Wrapper - Tablet 1\",\n                      name: \"Loop Image Wrapper - Tablet 1\",\n                      children: /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          ...toResponsiveImage(JWfikj_UC)\n                        },\n                        className: \"framer-pixgee\",\n                        \"data-framer-name\": \"Loop Image\",\n                        name: \"Loop Image\"\n                      })\n                    }), /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-25g751\",\n                      \"data-framer-name\": \"Loop Image Wrapper - Tablet 2\",\n                      name: \"Loop Image Wrapper - Tablet 2\",\n                      children: /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          ...toResponsiveImage(JWy1zZbkr)\n                        },\n                        className: \"framer-14qj4wm\",\n                        \"data-framer-name\": \"Loop Image\",\n                        name: \"Loop Image\"\n                      })\n                    }), /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-zq28v6\",\n                      \"data-framer-name\": \"Loop Image Wrapper - Tablet 3\",\n                      name: \"Loop Image Wrapper - Tablet 3\",\n                      children: /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          ...toResponsiveImage(dgBEy2Lod)\n                        },\n                        className: \"framer-1q1zhhg\",\n                        \"data-framer-name\": \"Loop Image\",\n                        name: \"Loop Image\"\n                      })\n                    }), /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-1wtzktf\",\n                      \"data-framer-name\": \"Loop Image Wrapper - Tablet 4\",\n                      name: \"Loop Image Wrapper - Tablet 4\",\n                      children: /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          ...toResponsiveImage(uVFYvauEg)\n                        },\n                        className: \"framer-1uinzpa\",\n                        \"data-framer-name\": \"Loop Image\",\n                        name: \"Loop Image\"\n                      })\n                    }), /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-1jxmcwo\",\n                      \"data-framer-name\": \"Loop Image Wrapper - Tablet 5\",\n                      name: \"Loop Image Wrapper - Tablet 5\",\n                      children: /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          ...toResponsiveImage(v_ITUPQ3y)\n                        },\n                        className: \"framer-14ck59e\",\n                        \"data-framer-name\": \"Loop Image\",\n                        name: \"Loop Image\"\n                      })\n                    }), /*#__PURE__*/_jsx(motion.div, {\n                      className: \"framer-1lw0xea\",\n                      \"data-framer-name\": \"Loop Image Wrapper - Tablet 6\",\n                      name: \"Loop Image Wrapper - Tablet 6\",\n                      children: /*#__PURE__*/_jsx(Image, {\n                        background: {\n                          alt: \"\",\n                          fit: \"fill\",\n                          ...toResponsiveImage(hNqtEZfmd)\n                        },\n                        className: \"framer-16ht0ht\",\n                        \"data-framer-name\": \"Loop Image\",\n                        name: \"Loop Image\"\n                      })\n                    })],\n                    speed: 60,\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    width: \"100%\"\n                  })\n                })\n              })]\n            }), /*#__PURE__*/_jsx(motion.section, {\n              className: \"framer-fku50r\",\n              \"data-framer-name\": \"Section Description\",\n              name: \"Section Description\",\n              children: /*#__PURE__*/_jsx(RichTextWithFX, {\n                __framer__animate: {\n                  transition: transition4\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation12,\n                __framer__exit: animation13,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: 0,\n                __fromCanvasComponent: true,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                children: lk_IhyAo3,\n                className: \"framer-128am44\",\n                \"data-framer-name\": \"Rich Text\",\n                name: \"Rich Text\",\n                stylesPresetsClassNames: {\n                  a: \"framer-styles-preset-1y6hx4h\",\n                  h1: \"framer-styles-preset-50erjx\",\n                  h2: \"framer-styles-preset-893xc8\",\n                  h3: \"framer-styles-preset-1lyte23\",\n                  p: \"framer-styles-preset-tojcwj\"\n                },\n                transformTemplate: transformTemplate1,\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              })\n            }), /*#__PURE__*/_jsx(motion.section, {\n              className: \"framer-1eifmjm\",\n              \"data-framer-name\": \"Section Video\",\n              name: \"Section Video\",\n              children: /*#__PURE__*/_jsx(MotionDivWithFX, {\n                __framer__animate: {\n                  transition: transition5\n                },\n                __framer__animateOnce: true,\n                __framer__enter: animation14,\n                __framer__exit: animation15,\n                __framer__styleAppearEffectEnabled: true,\n                __framer__threshold: .5,\n                __perspectiveFX: false,\n                __targetOpacity: 1,\n                className: \"framer-s9ceph\",\n                \"data-framer-name\": \"Video Embed Wrapper\",\n                name: \"Video Embed Wrapper\",\n                transformTemplate: transformTemplate1,\n                children: /*#__PURE__*/_jsx(Container, {\n                  className: \"framer-gggw4p-container\",\n                  children: /*#__PURE__*/_jsx(Embed, {\n                    height: \"100%\",\n                    html: T1up2QMLI,\n                    id: \"nQzdOiVkN\",\n                    layoutId: \"nQzdOiVkN\",\n                    style: {\n                      height: \"100%\",\n                      width: \"100%\"\n                    },\n                    type: \"html\",\n                    url: \"\",\n                    width: \"100%\"\n                  })\n                })\n              })\n            }), /*#__PURE__*/_jsxs(motion.section, {\n              className: \"framer-8hkh7o\",\n              \"data-framer-name\": \"Section - Other Works\",\n              name: \"Section - Other Works\",\n              children: [/*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-eqk99b\",\n                children: /*#__PURE__*/_jsx(RichTextWithFX, {\n                  __framer__spring: {\n                    damping: 60,\n                    delay: 7,\n                    duration: .3,\n                    ease: [.44, 0, .56, 1],\n                    mass: 1,\n                    stiffness: 246,\n                    type: \"spring\"\n                  },\n                  __framer__styleTransformEffectEnabled: true,\n                  __framer__transformTargets: [{\n                    target: {\n                      opacity: 1,\n                      rotate: 0,\n                      rotateX: 0,\n                      rotateY: 0,\n                      scale: 1,\n                      x: 0,\n                      y: 88\n                    }\n                  }, {\n                    target: {\n                      opacity: 1,\n                      rotate: 0,\n                      rotateX: 0,\n                      rotateY: 0,\n                      scale: 1,\n                      x: 0,\n                      y: 0\n                    }\n                  }],\n                  __framer__transformTrigger: \"onInView\",\n                  __fromCanvasComponent: true,\n                  __perspectiveFX: false,\n                  __targetOpacity: 1,\n                  children: /*#__PURE__*/_jsx(React.Fragment, {\n                    children: /*#__PURE__*/_jsx(\"p\", {\n                      className: \"framer-styles-preset-pzxrpj\",\n                      \"data-styles-preset\": \"MXhKL9RD2\",\n                      children: \"Other works\"\n                    })\n                  }),\n                  className: \"framer-fjeig3\",\n                  transformTemplate: transformTemplate1,\n                  verticalAlignment: \"top\",\n                  withExternalLayout: true\n                })\n              }), /*#__PURE__*/_jsx(Container, {\n                className: \"framer-12ljxe8-container\",\n                id: id2,\n                ref: ref2,\n                children: /*#__PURE__*/_jsx(PropertyOverrides, {\n                  breakpoint: baseVariant,\n                  overrides: {\n                    AQGYqBb7L: {\n                      __framer__animateOnce: false,\n                      __framer__targets: [{\n                        ref: ref2,\n                        target: \"sfYqHHmeK\"\n                      }],\n                      __framer__threshold: .5,\n                      __framer__variantAppearEffectEnabled: true,\n                      variant: \"FsRvhLEax\"\n                    },\n                    iF_oMPLPl: {\n                      __framer__animateOnce: false,\n                      __framer__targets: [{\n                        ref: ref2,\n                        target: \"j7swz7D9Q\"\n                      }],\n                      __framer__threshold: .5,\n                      __framer__variantAppearEffectEnabled: true,\n                      style: {\n                        height: \"100%\"\n                      },\n                      variant: \"XUUhg1hFh\"\n                    }\n                  },\n                  children: /*#__PURE__*/_jsx(OtherVideoCardsWithVariantAppearEffect, {\n                    height: \"100%\",\n                    id: \"evyCFBvbi\",\n                    layoutId: \"evyCFBvbi\",\n                    style: {\n                      width: \"100%\"\n                    },\n                    title: ouLlUyS0q,\n                    variant: \"dh_4RVwiH\",\n                    width: \"100%\"\n                  })\n                })\n              })]\n            })]\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-bb3wht-container\",\n            \"data-framer-name\": \"Footer\",\n            name: \"Footer\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                AQGYqBb7L: {\n                  variant: \"cwBh6qcbN\"\n                },\n                iF_oMPLPl: {\n                  variant: \"yDFEMKB6E\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(FooterFooter, {\n                height: \"100%\",\n                id: \"LBTXyV11C\",\n                layoutId: \"LBTXyV11C\",\n                name: \"Footer\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"RTjqnbUMm\",\n                width: \"100%\"\n              })\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-43Mk4 [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; } }\", `.${metadata.bodyClassName} { background: var(--token-c2b9fcb6-3578-4f14-a6bc-a214ca55b7a5, rgb(0, 0, 0)) /* {\"name\":\"APEX Black\"} */; }`, \".framer-43Mk4 .framer-ytr1cu { display: block; }\", \".framer-43Mk4 .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 0px 0px 0px; position: relative; width: 1200px; }\", \".framer-43Mk4 .framer-1m21qbl-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: perspective(1200px) translateX(-50%); width: 100%; z-index: 10; }\", \".framer-43Mk4 .framer-1kpsdsr { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-end; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px 0px 0px 0px; position: fixed; width: 100%; z-index: 10; }\", \".framer-43Mk4 .framer-1kanbo3 { align-content: center; align-items: center; bottom: 66px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 36px; min-width: 142px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 20px; width: min-content; z-index: 1; }\", \".framer-43Mk4 .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 0px 0px 0px; position: relative; width: 100%; }\", \".framer-43Mk4 .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-43Mk4 .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 0px 0px 0px; position: relative; width: 100%; }\", \".framer-43Mk4 .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-43Mk4 .framer-1okxayl { --framer-paragraph-spacing: 0px; --variable-reference-aASrV9wN5-DydP3S2L9: var(--aASrV9wN5); flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre; width: auto; }\", \".framer-43Mk4 .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 0px 0px 0px; position: relative; width: 214px; }\", \".framer-43Mk4 .framer-1sz1f34 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 214px; word-break: break-word; word-wrap: break-word; }\", \".framer-43Mk4 .framer-1vnidqk-container { flex: none; height: 682px; opacity: 0.85; position: relative; transform: perspective(1200px) rotate(358deg); width: 100%; z-index: 1; }\", \".framer-43Mk4 .framer-120vvkp, .framer-43Mk4 .framer-1s4s9hf, .framer-43Mk4 .framer-176oph0, .framer-43Mk4 .framer-4eu3f2, .framer-43Mk4 .framer-gdhulh, .framer-43Mk4 .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 5px 5px 5px; position: relative; width: 463px; will-change: transform; }\", \".framer-43Mk4 .framer-1ovjen1, .framer-43Mk4 .framer-modh5s, .framer-43Mk4 .framer-77qy10, .framer-43Mk4 .framer-72kxop, .framer-43Mk4 .framer-1aan55a, .framer-43Mk4 .framer-1mx9r1t, .framer-43Mk4 .framer-pixgee, .framer-43Mk4 .framer-14qj4wm, .framer-43Mk4 .framer-1q1zhhg, .framer-43Mk4 .framer-1uinzpa, .framer-43Mk4 .framer-14ck59e, .framer-43Mk4 .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: transform; }\", \".framer-43Mk4 .framer-pqozop-container { flex: none; height: 450px; opacity: 0.85; position: relative; transform: perspective(1200px) rotate(357deg); width: 1726px; z-index: 1; }\", \".framer-43Mk4 .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 5px 5px 5px; position: relative; width: 250px; }\", \".framer-43Mk4 .framer-1cy3ig9, .framer-43Mk4 .framer-4j1t5v, .framer-43Mk4 .framer-p6c91w, .framer-43Mk4 .framer-1085sng, .framer-43Mk4 .framer-15kekoj, .framer-43Mk4 .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: transform; }\", \".framer-43Mk4 .framer-t68kkl, .framer-43Mk4 .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 5px 5px 5px; position: relative; width: 250px; will-change: transform; }\", \".framer-43Mk4 .framer-hbh3s0, .framer-43Mk4 .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 5px 5px 5px; position: relative; width: 250px; will-change: transform; }\", \".framer-43Mk4 .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 5px 5px 5px; position: relative; width: 250px; will-change: transform; }\", \".framer-43Mk4 .framer-1bdomif-container { flex: none; height: 550px; opacity: 0.85; position: relative; transform: perspective(1200px) rotate(357deg); width: 100%; z-index: 1; }\", \".framer-43Mk4 .framer-obq7rr, .framer-43Mk4 .framer-25g751, .framer-43Mk4 .framer-zq28v6, .framer-43Mk4 .framer-1wtzktf, .framer-43Mk4 .framer-1jxmcwo, .framer-43Mk4 .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 5px 5px 5px; position: relative; width: 350px; will-change: transform; }\", \".framer-43Mk4 .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-43Mk4 .framer-128am44 { --framer-paragraph-spacing: 0px; cursor: default; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 650px; word-break: break-word; word-wrap: break-word; }\", \".framer-43Mk4 .framer-1eifmjm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 775px; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\", \".framer-43Mk4 .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: 675%; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: var(--framer-aspect-ratio-supported, 8100px); will-change: transform; }\", \".framer-43Mk4 .framer-gggw4p-container { flex: none; height: 100%; position: relative; width: 100%; }\", \".framer-43Mk4 .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-43Mk4 .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 0px 0px 0px; position: relative; width: 100%; }\", \".framer-43Mk4 .framer-fjeig3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-43Mk4 .framer-12ljxe8-container { flex: none; height: auto; position: relative; width: 1000px; }\", \".framer-43Mk4 .framer-bb3wht-container { flex: none; height: auto; position: relative; width: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-43Mk4 .framer-wpzf57, .framer-43Mk4 .framer-1kpsdsr, .framer-43Mk4 .framer-1kanbo3, .framer-43Mk4 .framer-zlo68k, .framer-43Mk4 .framer-3g5tq, .framer-43Mk4 .framer-1por4t2, .framer-43Mk4 .framer-1f5jgha, .framer-43Mk4 .framer-1u5umr9, .framer-43Mk4 .framer-120vvkp, .framer-43Mk4 .framer-1s4s9hf, .framer-43Mk4 .framer-176oph0, .framer-43Mk4 .framer-4eu3f2, .framer-43Mk4 .framer-gdhulh, .framer-43Mk4 .framer-1r6vwzq, .framer-43Mk4 .framer-1jldi41, .framer-43Mk4 .framer-t68kkl, .framer-43Mk4 .framer-hbh3s0, .framer-43Mk4 .framer-c3j0ty, .framer-43Mk4 .framer-m952f2, .framer-43Mk4 .framer-1ugcqq6, .framer-43Mk4 .framer-obq7rr, .framer-43Mk4 .framer-25g751, .framer-43Mk4 .framer-zq28v6, .framer-43Mk4 .framer-1wtzktf, .framer-43Mk4 .framer-1jxmcwo, .framer-43Mk4 .framer-1lw0xea, .framer-43Mk4 .framer-fku50r, .framer-43Mk4 .framer-1eifmjm, .framer-43Mk4 .framer-s9ceph, .framer-43Mk4 .framer-8hkh7o, .framer-43Mk4 .framer-eqk99b { gap: 0px; } .framer-43Mk4 .framer-wpzf57 > *, .framer-43Mk4 .framer-1por4t2 > *, .framer-43Mk4 .framer-8hkh7o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-43Mk4 .framer-wpzf57 > :first-child, .framer-43Mk4 .framer-zlo68k > :first-child, .framer-43Mk4 .framer-3g5tq > :first-child, .framer-43Mk4 .framer-1por4t2 > :first-child, .framer-43Mk4 .framer-1f5jgha > :first-child, .framer-43Mk4 .framer-fku50r > :first-child, .framer-43Mk4 .framer-8hkh7o > :first-child, .framer-43Mk4 .framer-eqk99b > :first-child { margin-top: 0px; } .framer-43Mk4 .framer-wpzf57 > :last-child, .framer-43Mk4 .framer-zlo68k > :last-child, .framer-43Mk4 .framer-3g5tq > :last-child, .framer-43Mk4 .framer-1por4t2 > :last-child, .framer-43Mk4 .framer-1f5jgha > :last-child, .framer-43Mk4 .framer-fku50r > :last-child, .framer-43Mk4 .framer-8hkh7o > :last-child, .framer-43Mk4 .framer-eqk99b > :last-child { margin-bottom: 0px; } .framer-43Mk4 .framer-1kpsdsr > *, .framer-43Mk4 .framer-1kanbo3 > *, .framer-43Mk4 .framer-1u5umr9 > *, .framer-43Mk4 .framer-120vvkp > *, .framer-43Mk4 .framer-1s4s9hf > *, .framer-43Mk4 .framer-176oph0 > *, .framer-43Mk4 .framer-4eu3f2 > *, .framer-43Mk4 .framer-gdhulh > *, .framer-43Mk4 .framer-1r6vwzq > *, .framer-43Mk4 .framer-1jldi41 > *, .framer-43Mk4 .framer-t68kkl > *, .framer-43Mk4 .framer-hbh3s0 > *, .framer-43Mk4 .framer-c3j0ty > *, .framer-43Mk4 .framer-m952f2 > *, .framer-43Mk4 .framer-1ugcqq6 > *, .framer-43Mk4 .framer-obq7rr > *, .framer-43Mk4 .framer-25g751 > *, .framer-43Mk4 .framer-zq28v6 > *, .framer-43Mk4 .framer-1wtzktf > *, .framer-43Mk4 .framer-1jxmcwo > *, .framer-43Mk4 .framer-1lw0xea > *, .framer-43Mk4 .framer-1eifmjm > *, .framer-43Mk4 .framer-s9ceph > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-43Mk4 .framer-1kpsdsr > :first-child, .framer-43Mk4 .framer-1kanbo3 > :first-child, .framer-43Mk4 .framer-1u5umr9 > :first-child, .framer-43Mk4 .framer-120vvkp > :first-child, .framer-43Mk4 .framer-1s4s9hf > :first-child, .framer-43Mk4 .framer-176oph0 > :first-child, .framer-43Mk4 .framer-4eu3f2 > :first-child, .framer-43Mk4 .framer-gdhulh > :first-child, .framer-43Mk4 .framer-1r6vwzq > :first-child, .framer-43Mk4 .framer-1jldi41 > :first-child, .framer-43Mk4 .framer-t68kkl > :first-child, .framer-43Mk4 .framer-hbh3s0 > :first-child, .framer-43Mk4 .framer-c3j0ty > :first-child, .framer-43Mk4 .framer-m952f2 > :first-child, .framer-43Mk4 .framer-1ugcqq6 > :first-child, .framer-43Mk4 .framer-obq7rr > :first-child, .framer-43Mk4 .framer-25g751 > :first-child, .framer-43Mk4 .framer-zq28v6 > :first-child, .framer-43Mk4 .framer-1wtzktf > :first-child, .framer-43Mk4 .framer-1jxmcwo > :first-child, .framer-43Mk4 .framer-1lw0xea > :first-child, .framer-43Mk4 .framer-1eifmjm > :first-child, .framer-43Mk4 .framer-s9ceph > :first-child { margin-left: 0px; } .framer-43Mk4 .framer-1kpsdsr > :last-child, .framer-43Mk4 .framer-1kanbo3 > :last-child, .framer-43Mk4 .framer-1u5umr9 > :last-child, .framer-43Mk4 .framer-120vvkp > :last-child, .framer-43Mk4 .framer-1s4s9hf > :last-child, .framer-43Mk4 .framer-176oph0 > :last-child, .framer-43Mk4 .framer-4eu3f2 > :last-child, .framer-43Mk4 .framer-gdhulh > :last-child, .framer-43Mk4 .framer-1r6vwzq > :last-child, .framer-43Mk4 .framer-1jldi41 > :last-child, .framer-43Mk4 .framer-t68kkl > :last-child, .framer-43Mk4 .framer-hbh3s0 > :last-child, .framer-43Mk4 .framer-c3j0ty > :last-child, .framer-43Mk4 .framer-m952f2 > :last-child, .framer-43Mk4 .framer-1ugcqq6 > :last-child, .framer-43Mk4 .framer-obq7rr > :last-child, .framer-43Mk4 .framer-25g751 > :last-child, .framer-43Mk4 .framer-zq28v6 > :last-child, .framer-43Mk4 .framer-1wtzktf > :last-child, .framer-43Mk4 .framer-1jxmcwo > :last-child, .framer-43Mk4 .framer-1lw0xea > :last-child, .framer-43Mk4 .framer-1eifmjm > :last-child, .framer-43Mk4 .framer-s9ceph > :last-child { margin-right: 0px; } .framer-43Mk4 .framer-zlo68k > *, .framer-43Mk4 .framer-1f5jgha > *, .framer-43Mk4 .framer-eqk99b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-43Mk4 .framer-3g5tq > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-43Mk4 .framer-fku50r > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }\", \"@media (min-width: 1200px) { .framer-43Mk4 .hidden-wpzf57 { display: none !important; } }\", `@media (min-width: 600px) and (max-width: 1199px) { .framer-43Mk4 .hidden-p6x7rg { display: none !important; } .${metadata.bodyClassName} { background: var(--token-c2b9fcb6-3578-4f14-a6bc-a214ca55b7a5, rgb(0, 0, 0)) /* {\"name\":\"APEX Black\"} */; } .framer-43Mk4 .framer-wpzf57, .framer-43Mk4 .framer-12ljxe8-container { width: 600px; } .framer-43Mk4 .framer-zlo68k { gap: 0px; } .framer-43Mk4 .framer-3g5tq { height: 1060px; } .framer-43Mk4 .framer-1por4t2 { padding: 0px 0px 50px 0px; } .framer-43Mk4 .framer-128am44 { width: 480px; } .framer-43Mk4 .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, 639px); width: 1135px; } .framer-43Mk4 .framer-gggw4p-container { order: 0; } .framer-43Mk4 .framer-8hkh7o { padding: 100px 0px 0px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-43Mk4 .framer-zlo68k { gap: 0px; } .framer-43Mk4 .framer-zlo68k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-43Mk4 .framer-zlo68k > :first-child { margin-top: 0px; } .framer-43Mk4 .framer-zlo68k > :last-child { margin-bottom: 0px; } }}`, `@media (max-width: 599px) { .framer-43Mk4 .hidden-asale3 { display: none !important; } .${metadata.bodyClassName} { background: var(--token-c2b9fcb6-3578-4f14-a6bc-a214ca55b7a5, rgb(0, 0, 0)) /* {\"name\":\"APEX Black\"} */; } .framer-43Mk4 .framer-wpzf57 { width: 390px; } .framer-43Mk4 .framer-1m21qbl-container { height: 100%; left: calc(50.00000000000002% - 100% / 2); pointer-events: none; transform: perspective(1200px); } .framer-43Mk4 .framer-zlo68k { gap: 30px; } .framer-43Mk4 .framer-3g5tq { gap: 82px; height: 884px; } .framer-43Mk4 .framer-1por4t2 { order: 0; overflow: visible; } .framer-43Mk4 .framer-1f5jgha { padding: 10px 0px 0px 0px; } .framer-43Mk4 .framer-pqozop-container { order: 1; } .framer-43Mk4 .framer-128am44 { width: 300px; } .framer-43Mk4 .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, 456px); width: 810px; } .framer-43Mk4 .framer-gggw4p-container { height: 99%; width: 106%; } .framer-43Mk4 .framer-8hkh7o { padding: 100px 0px 100px 0px; } .framer-43Mk4 .framer-12ljxe8-container { height: 684px; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-43Mk4 .framer-zlo68k, .framer-43Mk4 .framer-3g5tq { gap: 0px; } .framer-43Mk4 .framer-zlo68k > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-43Mk4 .framer-zlo68k > :first-child, .framer-43Mk4 .framer-3g5tq > :first-child { margin-top: 0px; } .framer-43Mk4 .framer-zlo68k > :last-child, .framer-43Mk4 .framer-3g5tq > :last-child { margin-bottom: 0px; } .framer-43Mk4 .framer-3g5tq > * { margin: 0px; margin-bottom: calc(82px / 2); margin-top: calc(82px / 2); } }}`, ...sharedStyle.css, ...sharedStyle1.css, ...sharedStyle2.css, ...sharedStyle3.css, ...sharedStyle4.css, ...sharedStyle5.css, ...sharedStyle6.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicHeight 5133\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerIntrinsicWidth 1200\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AQGYqBb7L\":{\"layout\":[\"fixed\",\"auto\"]},\"iF_oMPLPl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                */\nconst FramerDydP3S2L9 = withCSS(Component, css, \"framer-43Mk4\");\nexport default FramerDydP3S2L9;\nFramerDydP3S2L9.displayName = \"Works\";\nFramerDydP3S2L9.defaultProps = {\n  height: 5133,\n  width: 1200\n};\naddFonts(FramerDydP3S2L9, [...NavigationNavigationFonts, ...TickerFonts, ...EmbedFonts, ...OtherVideoCardsFonts, ...FooterFooterFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts, ...sharedStyle2.fonts, ...sharedStyle3.fonts, ...sharedStyle4.fonts, ...sharedStyle5.fonts, ...sharedStyle6.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerDydP3S2L9\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerResponsiveScreen\": \"\",\n        \"framerIntrinsicWidth\": \"1200\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AQGYqBb7L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iF_oMPLPl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicHeight\": \"5133\",\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "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", "u", "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", "u", "Link", "Image2", "RichText", "x", "css", "FramerXQBYKN4fA", "withCSS", "XQBYKN4fA_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "VideoCardOtherWorksFonts", "getFonts", "XQBYKN4fA_default", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "transformTemplate1", "toResponsiveImage", "value", "equals", "a", "b", "negate", "reverseArray", "offsetAndLimitArray", "offset", "limit", "end", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "uK_V8AQ_l", "Xev7mbXUwJHD8Ktq78", "ouLlUyS0qJHD8Ktq78", "pNME0L8H5JHD8Ktq78", "aASrV9wN5JHD8Ktq78", "geSEpzafmJHD8Ktq78", "HNmH8C0PZJHD8Ktq78", "idJHD8Ktq78", "Xev7mbXUwJQGV8JIOt", "ouLlUyS0qJQGV8JIOt", "pNME0L8H5JQGV8JIOt", "aASrV9wN5JQGV8JIOt", "geSEpzafmJQGV8JIOt", "HNmH8C0PZJQGV8JIOt", "idJQGV8JIOt", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "router", "useRouter", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "ZGUx9nMll_default", "item1u7zkct", "i", "PathVariablesContext", "resolveLink", "item1281dgq", "css", "FramerjTlLNTwGt", "withCSS", "jTlLNTwGt_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationNavigationFonts", "getFonts", "ybeA4oG0v_default", "TickerFonts", "Ticker", "RichTextWithFX", "withFX", "RichText", "EmbedFonts", "Embed", "MotionDivWithFX", "motion", "OtherVideoCardsFonts", "jTlLNTwGt_default", "OtherVideoCardsWithVariantAppearEffect", "withVariantAppearEffect", "FooterFooterFonts", "g0_GsE4T3_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "humanReadableVariantMap", "transitions", "transition1", "animation", "transformTemplate", "_", "animation1", "animation2", "transformTemplate1", "transition2", "animation3", "animation4", "animation5", "transition3", "animation6", "animation7", "animation8", "animation9", "transformTemplate2", "animation10", "animation11", "toResponsiveImage", "value", "transformTemplate3", "animation12", "transition4", "animation13", "animation14", "transition5", "animation15", "metadata", "DydP3S2L9_default", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "aASrV9wN5", "ouLlUyS0q", "pNME0L8H5", "JWfikj_UC", "JWy1zZbkr", "dgBEy2Lod", "uVFYvauEg", "v_ITUPQ3y", "hNqtEZfmd", "lk_IhyAo3", "T1up2QMLI", "restProps", "ref", "variant", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useDataRecord", "ZGUx9nMll_default", "getFromCurrentRouteData", "key", "NotFoundError", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "isDisplayed", "id1", "useRouteElementId", "ref1", "pe", "isDisplayed1", "isDisplayed2", "id2", "ref2", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "PropertyOverrides", "optimizeAppear", "optimizeAppearTransformTemplate", "Container", "ybeA4oG0v_default", "RichText", "x", "Ticker", "Image2", "RichTextWithFX", "MotionDivWithFX", "Embed", "OtherVideoCardsWithVariantAppearEffect", "g0_GsE4T3_default", "css", "FramerDydP3S2L9", "withCSS", "addFonts", "NavigationNavigationFonts", "TickerFonts", "EmbedFonts", "OtherVideoCardsFonts", "FooterFooterFonts", "fonts", "__FramerMetadata__"]
}
