{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/mFtHSu2LgRnTQD5LSU6q/VhPNZS5irVlVr8L52y8L/Udhnf32_J.js", "ssg:https://framerusercontent.com/modules/cqJbKEngyISQOAjyJNPL/IoxW6X1TnKotwcLEqOuf/QMFRuM153.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\"]);export const fonts=[];export const css=['.framer-VtQpb .framer-styles-preset-17bufse:not(.rich-text-wrapper), .framer-VtQpb .framer-styles-preset-17bufse.rich-text-wrapper h4 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.6px; --framer-line-height: 24px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-ddda2d63-1d87-4128-99a2-799bdf5c951c, #111111); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1919px) and (min-width: 1400px) { .framer-VtQpb .framer-styles-preset-17bufse:not(.rich-text-wrapper), .framer-VtQpb .framer-styles-preset-17bufse.rich-text-wrapper h4 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.6px; --framer-line-height: 20px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-ddda2d63-1d87-4128-99a2-799bdf5c951c, #111111); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1399px) and (min-width: 0px) { .framer-VtQpb .framer-styles-preset-17bufse:not(.rich-text-wrapper), .framer-VtQpb .framer-styles-preset-17bufse.rich-text-wrapper h4 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.6px; --framer-line-height: 16px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-ddda2d63-1d87-4128-99a2-799bdf5c951c, #111111); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-VtQpb\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1c1e241)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"HsihAAtmZ\",\"zKs7GxzQq\",\"t5ZcQx710\",\"amwUCey46\",\"Ko1Scin3u\",\"kWxDli6Af\",\"Af_TQLArm\",\"fka3Ozsvc\",\"fuQRQwlDG\",\"v_6dPcW8a\",\"qhZJiqQfT\",\"KT_ltJSc1\",\"tgkd1CHpf\",\"APNKt0uA9\",\"BtSTQNtT8\",\"aJoah9K7v\"];const serializationHash=\"framer-Oknjv\";const variantClassNames={Af_TQLArm:\"framer-v-vvf9xa\",aJoah9K7v:\"framer-v-t0e9mw\",amwUCey46:\"framer-v-rnrsc0\",APNKt0uA9:\"framer-v-1h1ewzj\",BtSTQNtT8:\"framer-v-qut2oy\",fka3Ozsvc:\"framer-v-cho5p3\",fuQRQwlDG:\"framer-v-11r0j4z\",HsihAAtmZ:\"framer-v-qrlmpa\",Ko1Scin3u:\"framer-v-nquqxw\",KT_ltJSc1:\"framer-v-mjqztl\",kWxDli6Af:\"framer-v-hnc65z\",qhZJiqQfT:\"framer-v-eq7d4y\",t5ZcQx710:\"framer-v-o9445c\",tgkd1CHpf:\"framer-v-1wlmldk\",v_6dPcW8a:\"framer-v-xjkdmz\",zKs7GxzQq:\"framer-v-1fcccr7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Custom hover\":\"zKs7GxzQq\",\"img 16x9 hover\":\"v_6dPcW8a\",\"img 16x9\":\"fuQRQwlDG\",\"img 1x1 \":\"t5ZcQx710\",\"img 1x1 hover\":\"amwUCey46\",\"img 2x3 hover\":\"aJoah9K7v\",\"img 2x3\":\"BtSTQNtT8\",\"img 3x2 hover\":\"APNKt0uA9\",\"img 3x2\":\"tgkd1CHpf\",\"img 3x4 hover\":\"fka3Ozsvc\",\"img 3x4\":\"Af_TQLArm\",\"img 4x3 hover\":\"kWxDli6Af\",\"img 4x3\":\"Ko1Scin3u\",\"img 9x16 hover\":\"KT_ltJSc1\",\"img 9x16\":\"qhZJiqQfT\",Custom:\"HsihAAtmZ\"};const getProps=({height,id,img,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,hN3CGLaAE:(_ref=img!==null&&img!==void 0?img:props.hN3CGLaAE)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/5fWJT77cKDuD8erOn2hnHbVEufA.jpg\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"HsihAAtmZ\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,hN3CGLaAE,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"HsihAAtmZ\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Oknjv\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-qrlmpa\",className),\"data-framer-name\":\"Custom\",layoutDependency:layoutDependency,layoutId:\"HsihAAtmZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Af_TQLArm:{\"data-framer-name\":\"img 3x4\"},aJoah9K7v:{\"data-framer-name\":\"img 2x3 hover\"},amwUCey46:{\"data-framer-name\":\"img 1x1 hover\"},APNKt0uA9:{\"data-framer-name\":\"img 3x2 hover\"},BtSTQNtT8:{\"data-framer-name\":\"img 2x3\"},fka3Ozsvc:{\"data-framer-name\":\"img 3x4 hover\"},fuQRQwlDG:{\"data-framer-name\":\"img 16x9\"},Ko1Scin3u:{\"data-framer-name\":\"img 4x3\"},KT_ltJSc1:{\"data-framer-name\":\"img 9x16 hover\"},kWxDli6Af:{\"data-framer-name\":\"img 4x3 hover\"},qhZJiqQfT:{\"data-framer-name\":\"img 9x16\"},t5ZcQx710:{\"data-framer-name\":\"img 1x1 \"},tgkd1CHpf:{\"data-framer-name\":\"img 3x2\"},v_6dPcW8a:{\"data-framer-name\":\"img 16x9 hover\"},zKs7GxzQq:{\"data-framer-name\":\"Custom hover\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"min(400px, 100vw)\",...toResponsiveImage(hN3CGLaAE)},className:\"framer-1s8q0t3\",\"data-framer-name\":\"img 1x1\",layoutDependency:layoutDependency,layoutId:\"ld6iCGQ3C\",...addPropertyOverrides({Af_TQLArm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"min(300px, 100vw)\",...toResponsiveImage(hN3CGLaAE)}},aJoah9K7v:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"calc(min(200px, 100vw) * 1.1)\",...toResponsiveImage(hN3CGLaAE)}},amwUCey46:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"calc(min(400px, 100vw) * 1.1)\",...toResponsiveImage(hN3CGLaAE)}},APNKt0uA9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"calc(min(300px, 100vw) * 1.1)\",...toResponsiveImage(hN3CGLaAE)}},BtSTQNtT8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"min(200px, 100vw)\",...toResponsiveImage(hN3CGLaAE)}},fka3Ozsvc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"calc(min(300px, 100vw) * 1.1)\",...toResponsiveImage(hN3CGLaAE)}},fuQRQwlDG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"min(384px, 100vw)\",...toResponsiveImage(hN3CGLaAE)}},KT_ltJSc1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"calc(min(216px, 100vw) * 1.1)\",...toResponsiveImage(hN3CGLaAE)}},kWxDli6Af:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"calc(min(400px, 100vw) * 1.1)\",...toResponsiveImage(hN3CGLaAE)}},qhZJiqQfT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"min(216px, 100vw)\",...toResponsiveImage(hN3CGLaAE)}},tgkd1CHpf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"min(300px, 100vw)\",...toResponsiveImage(hN3CGLaAE)}},v_6dPcW8a:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"calc(min(384px, 100vw) * 1.1)\",...toResponsiveImage(hN3CGLaAE)}},zKs7GxzQq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"calc(min(400px, 100vw) * 1.1)\",...toResponsiveImage(hN3CGLaAE)}}},baseVariant,gestureVariant)})})})})});});const css=['.framer-Oknjv [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-Oknjv .framer-djbhj9 { display: block; }\",\".framer-Oknjv .framer-qrlmpa { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-Oknjv .framer-1s8q0t3 { flex: 1 0 0px; height: 1px; overflow: hidden; pointer-events: none; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Oknjv .framer-qrlmpa { gap: 0px; } .framer-Oknjv .framer-qrlmpa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Oknjv .framer-qrlmpa > :first-child { margin-top: 0px; } .framer-Oknjv .framer-qrlmpa > :last-child { margin-bottom: 0px; } }\",\".framer-Oknjv.framer-v-1fcccr7 .framer-qrlmpa, .framer-Oknjv.framer-v-o9445c .framer-qrlmpa, .framer-Oknjv.framer-v-rnrsc0 .framer-qrlmpa { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\",\".framer-Oknjv.framer-v-1fcccr7 .framer-1s8q0t3 { flex: none; height: 110%; width: 110%; }\",\".framer-Oknjv.framer-v-rnrsc0 .framer-1s8q0t3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 440px); width: 110%; }\",\".framer-Oknjv.framer-v-nquqxw .framer-qrlmpa, .framer-Oknjv.framer-v-hnc65z .framer-qrlmpa { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 300px); }\",\".framer-Oknjv.framer-v-nquqxw .framer-1s8q0t3 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); }\",\".framer-Oknjv.framer-v-hnc65z .framer-1s8q0t3 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 330px); width: 110%; }\",\".framer-Oknjv.framer-v-vvf9xa .framer-qrlmpa, .framer-Oknjv.framer-v-cho5p3 .framer-qrlmpa { aspect-ratio: 0.75 / 1; height: var(--framer-aspect-ratio-supported, 400px); width: 300px; }\",\".framer-Oknjv.framer-v-vvf9xa .framer-1s8q0t3 { aspect-ratio: 0.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); }\",\".framer-Oknjv.framer-v-cho5p3 .framer-1s8q0t3 { aspect-ratio: 0.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 440px); width: 110%; }\",\".framer-Oknjv.framer-v-11r0j4z .framer-qrlmpa, .framer-Oknjv.framer-v-xjkdmz .framer-qrlmpa { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 216px); width: 384px; }\",\".framer-Oknjv.framer-v-11r0j4z .framer-1s8q0t3 { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 216px); }\",\".framer-Oknjv.framer-v-xjkdmz .framer-1s8q0t3 { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 238px); width: 110%; }\",\".framer-Oknjv.framer-v-eq7d4y .framer-qrlmpa, .framer-Oknjv.framer-v-mjqztl .framer-qrlmpa { aspect-ratio: 0.5625 / 1; height: var(--framer-aspect-ratio-supported, 384px); width: 216px; }\",\".framer-Oknjv.framer-v-eq7d4y .framer-1s8q0t3 { aspect-ratio: 0.5625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 384px); }\",\".framer-Oknjv.framer-v-mjqztl .framer-1s8q0t3 { aspect-ratio: 0.5625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 422px); width: 110%; }\",\".framer-Oknjv.framer-v-1wlmldk .framer-qrlmpa, .framer-Oknjv.framer-v-1h1ewzj .framer-qrlmpa { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 200px); width: 300px; }\",\".framer-Oknjv.framer-v-1wlmldk .framer-1s8q0t3 { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-Oknjv.framer-v-1h1ewzj .framer-1s8q0t3 { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 220px); width: 110%; }\",\".framer-Oknjv.framer-v-qut2oy .framer-qrlmpa, .framer-Oknjv.framer-v-t0e9mw .framer-qrlmpa { aspect-ratio: 0.6666666666666666 / 1; height: var(--framer-aspect-ratio-supported, 300px); width: 200px; }\",\".framer-Oknjv.framer-v-qut2oy .framer-1s8q0t3 { aspect-ratio: 0.6666666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); }\",\".framer-Oknjv.framer-v-t0e9mw .framer-1s8q0t3 { aspect-ratio: 0.6666666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 330px); width: 110%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zKs7GxzQq\":{\"layout\":[\"fixed\",\"fixed\"]},\"t5ZcQx710\":{\"layout\":[\"fixed\",\"fixed\"]},\"amwUCey46\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ko1Scin3u\":{\"layout\":[\"fixed\",\"fixed\"]},\"kWxDli6Af\":{\"layout\":[\"fixed\",\"fixed\"]},\"Af_TQLArm\":{\"layout\":[\"fixed\",\"fixed\"]},\"fka3Ozsvc\":{\"layout\":[\"fixed\",\"fixed\"]},\"fuQRQwlDG\":{\"layout\":[\"fixed\",\"fixed\"]},\"v_6dPcW8a\":{\"layout\":[\"fixed\",\"fixed\"]},\"qhZJiqQfT\":{\"layout\":[\"fixed\",\"fixed\"]},\"KT_ltJSc1\":{\"layout\":[\"fixed\",\"fixed\"]},\"tgkd1CHpf\":{\"layout\":[\"fixed\",\"fixed\"]},\"APNKt0uA9\":{\"layout\":[\"fixed\",\"fixed\"]},\"BtSTQNtT8\":{\"layout\":[\"fixed\",\"fixed\"]},\"aJoah9K7v\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"hN3CGLaAE\":\"img\"}\n * @framerImmutableVariables true\n */const FramerQMFRuM153=withCSS(Component,css,\"framer-Oknjv\");export default FramerQMFRuM153;FramerQMFRuM153.displayName=\"1.5 Element IMG/IMG\";FramerQMFRuM153.defaultProps={height:400,width:400};addPropertyControls(FramerQMFRuM153,{variant:{options:[\"HsihAAtmZ\",\"zKs7GxzQq\",\"t5ZcQx710\",\"amwUCey46\",\"Ko1Scin3u\",\"kWxDli6Af\",\"Af_TQLArm\",\"fka3Ozsvc\",\"fuQRQwlDG\",\"v_6dPcW8a\",\"qhZJiqQfT\",\"KT_ltJSc1\",\"tgkd1CHpf\",\"APNKt0uA9\",\"BtSTQNtT8\",\"aJoah9K7v\"],optionTitles:[\"Custom\",\"Custom hover\",\"img 1x1 \",\"img 1x1 hover\",\"img 4x3\",\"img 4x3 hover\",\"img 3x4\",\"img 3x4 hover\",\"img 16x9\",\"img 16x9 hover\",\"img 9x16\",\"img 9x16 hover\",\"img 3x2\",\"img 3x2 hover\",\"img 2x3\",\"img 2x3 hover\"],title:\"Variant\",type:ControlType.Enum},hN3CGLaAE:{__defaultAssetReference:\"data:framer/asset-reference,5fWJT77cKDuD8erOn2hnHbVEufA.jpg?originalFilename=IMG+COVER.jpg&preferredSize=full\",title:\"img\",type:ControlType.ResponsiveImage}});addFonts(FramerQMFRuM153,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQMFRuM153\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zKs7GxzQq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"t5ZcQx710\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"amwUCey46\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ko1Scin3u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kWxDli6Af\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Af_TQLArm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fka3Ozsvc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fuQRQwlDG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v_6dPcW8a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qhZJiqQfT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KT_ltJSc1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tgkd1CHpf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"APNKt0uA9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BtSTQNtT8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aJoah9K7v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"hN3CGLaAE\\\":\\\"img\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QMFRuM153.map"],
  "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", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "img", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "hN3CGLaAE", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Image2", "css", "FramerQMFRuM153", "withCSS", "QMFRuM153_default", "addPropertyControls", "ControlType", "addFonts"]
}
