{"version":3,"file":"q45H9ihEY.C9zLiRzV.mjs","names":["v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","v0","__FramerMetadata__","localizedValues1","localizedValues7","localizedValues14","localizedValues8","localizedValues4","localizedValues16","localizedValues","localizedValues10","localizedValues15","localizedValues17","localizedValues12","localizedValues13","localizedValues9","localizedValues2","localizedValues3","localizedValues6","localizedValues18","localizedValues5","localizedValues11","RichText","className","Image","css"],"sources":["https:/framerusercontent.com/modules/w626flZLS8vSKX5xmxTb/5IXgW1ShWvq7xOFc5V8w/Rating.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-0.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-1.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-10.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-11.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-12.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-13.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-14.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-15.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-16.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-17.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-18.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-2.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-3.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-4.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-5.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-6.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-7.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-8.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY-9.js","https:/framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY.js","https:/framerusercontent.com/modules/w9mp0ZV4T6B0GKFwFhju/u6MzFJhwreF9U915LJyW/q45H9ihEY.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function Rating(props){const{mode}=props;let{filledStar,emptyStar}=props;const sizeString=`${props.size}px`;if(mode==\"default\"){filledStar=/*#__PURE__*/_jsx(\"div\",{style:{width:sizeString,height:sizeString,color:props.filledColor},children:starSvg(sizeString,props.filledColor)});emptyStar=/*#__PURE__*/_jsx(\"div\",{style:{width:sizeString,height:sizeString,color:props.emptyColor},children:starSvg(sizeString,props.emptyColor)});}let stars=[];let filledStarCount=Math.min(props.totalStars,Math.floor(props.value));for(let i=0;i<filledStarCount;i++){// Add filled star\nstars.push(filledStar);}if(stars.length<props.totalStars&&props.value%1!=0){// Add partially filled star\nconst percent=props.value%1*100;const maskFilled=`linear-gradient(to right, white 0 ${percent}%, transparent ${percent}% 100%)`;const maskEmpty=`linear-gradient(to right, transparent 0 ${percent}%, white ${percent}% 100%)`;stars.push(/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{WebkitMaskImage:maskFilled,maskImage:maskFilled},children:filledStar}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,WebkitMaskImage:maskEmpty,maskImage:maskEmpty},children:emptyStar})]}));}for(let i=stars.length;i<props.totalStars;i++){// Add empty star\nstars.push(emptyStar);}return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"row\",gap:props.gap},children:stars});}addPropertyControls(Rating,{mode:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true},filledStar:{type:ControlType.ComponentInstance,title:\"Filled\",hidden(props){return props.mode!==\"custom\";}},emptyStar:{type:ControlType.ComponentInstance,title:\"Empty\",hidden(props){return props.mode!==\"custom\";}},filledColor:{type:ControlType.Color,defaultValue:\"#FFB92E\",title:\"Filled\",hidden(props){return props.mode!==\"default\";}},emptyColor:{type:ControlType.Color,defaultValue:\"#EBEBEB\",title:\"Empty\",hidden(props){return props.mode!==\"default\";}},size:{type:ControlType.Number,defaultValue:24,min:1,step:1,hidden(props){return props.mode!==\"default\";}},gap:{type:ControlType.Number,defaultValue:4,min:0},value:{type:ControlType.Number,defaultValue:3.5,min:0,max:100,step:.1,displayStepper:true},totalStars:{type:ControlType.Number,defaultValue:5,min:1,max:100,step:1,displayStepper:true}});function starSvg(size,color){return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 40 40\",width:size,height:size,children:/*#__PURE__*/_jsx(\"path\",{d:\"M 18.097 2.289 C 18.693 0.441 21.307 0.441 21.903 2.289 L 25.136 12.312 C 25.403 13.14 26.174 13.7 27.044 13.698 L 37.575 13.675 C 39.517 13.671 40.325 16.158 38.751 17.296 L 30.218 23.467 C 29.513 23.977 29.219 24.884 29.489 25.71 L 32.765 35.719 C 33.37 37.565 31.254 39.101 29.686 37.957 L 21.179 31.748 C 20.477 31.235 19.523 31.235 18.821 31.748 L 10.314 37.957 C 8.746 39.101 6.63 37.565 7.235 35.719 L 10.511 25.71 C 10.781 24.884 10.487 23.977 9.782 23.467 L 1.249 17.296 C -0.325 16.158 0.483 13.671 2.425 13.675 L 12.956 13.698 C 13.826 13.7 14.597 13.14 14.864 12.312 Z\",fill:color})});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Rating\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rating.map","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-g\\xf6ky\\xfcz\\xfcnde hareketli bulutlarla \\xe7evrili parlayan g\\xfcneş-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-sol-brilhante-no-c\\xe9u-rodado-por-nuvens-em-movimento-31793-pequeno.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","export const v0=\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2bb811a)\nimport*as localizedValues from\"./q45H9ihEY-0.js\";import*as localizedValues1 from\"./q45H9ihEY-1.js\";import*as localizedValues10 from\"./q45H9ihEY-10.js\";import*as localizedValues11 from\"./q45H9ihEY-11.js\";import*as localizedValues12 from\"./q45H9ihEY-12.js\";import*as localizedValues13 from\"./q45H9ihEY-13.js\";import*as localizedValues14 from\"./q45H9ihEY-14.js\";import*as localizedValues15 from\"./q45H9ihEY-15.js\";import*as localizedValues16 from\"./q45H9ihEY-16.js\";import*as localizedValues17 from\"./q45H9ihEY-17.js\";import*as localizedValues18 from\"./q45H9ihEY-18.js\";import*as localizedValues2 from\"./q45H9ihEY-2.js\";import*as localizedValues3 from\"./q45H9ihEY-3.js\";import*as localizedValues4 from\"./q45H9ihEY-4.js\";import*as localizedValues5 from\"./q45H9ihEY-5.js\";import*as localizedValues6 from\"./q45H9ihEY-6.js\";import*as localizedValues7 from\"./q45H9ihEY-7.js\";import*as localizedValues8 from\"./q45H9ihEY-8.js\";import*as localizedValues9 from\"./q45H9ihEY-9.js\";const valuesByLocaleId={A3JzKY5EL:localizedValues1,ccVXV1ohj:localizedValues7,cJAUJ3JX2:localizedValues14,FSuYlk5YB:localizedValues8,ITd1NAXRL:localizedValues4,iuE6C1wkD:localizedValues16,Lnlzf9h1j:localizedValues,LXNvQJ2LX:localizedValues10,n5Cy1DXYI:localizedValues15,NDFBKs4Cn:localizedValues17,nncOSpZbY:localizedValues12,PD_Pe88ob:localizedValues13,PTY52OJNB:localizedValues9,Q4fA3EtKt:localizedValues2,R_Unxefrm:localizedValues3,Rqi_ElZKR:localizedValues6,swj6SD7BF:localizedValues18,vWrIKWwdj:localizedValues5,XMxOI4ebM:localizedValues11};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2bb811a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Rating from\"https://framerusercontent.com/modules/w626flZLS8vSKX5xmxTb/5IXgW1ShWvq7xOFc5V8w/Rating.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9tKD5s80VCLuaAJ6ICvt/DZfdLsRmeCzcd2oaqFjb/pgbUI1Yd9.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/T3TzWgxgs8Pp0bUuDMpG/ENyjREwR1WXD3UrpqUk6/uH_aVuEnA.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/lnGSK3djSn76pkl5X5Iv/EbcAb6RxAkz6X13eYDGV/q45H9ihEY.js\";const VideoFonts=getFonts(Video);const RatingFonts=getFonts(Rating);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const VideoControls=getPropertyControls(Video);const cycleOrder=[\"BhpI8vgPg\",\"a5V1R5z8c\",\"PbcJYegnM\",\"InQZ17AlB\"];const serializationHash=\"framer-Ld8Di\";const variantClassNames={a5V1R5z8c:\"framer-v-5i0p4f\",BhpI8vgPg:\"framer-v-ebw96e\",InQZ17AlB:\"framer-v-1cnhf8l\",PbcJYegnM:\"framer-v-1gd1bn3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const negate=value=>{return!value;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"3/2 - Desktop\":\"BhpI8vgPg\",\"3/2 - Phone\":\"a5V1R5z8c\",\"Resizing IMG - Phone\":\"InQZ17AlB\",\"Resizing Img\":\"PbcJYegnM\"};const getProps=({description,height,id,image,rating,showVideo,title,videoFile,width,...props})=>{return{...props,a5PyLLBBF:showVideo??props.a5PyLLBBF,agwsiEGqg:image??props.agwsiEGqg,efxJ81Ltd:videoFile??props.efxJ81Ltd??\"https://framerusercontent.com/assets/1BxSylU3mFfqaUKKIrnIh7xvyo.mp4\",iHEfbKHaY:rating??props.iHEfbKHaY??4.7,jRVb2J9GP:description??props.jRVb2J9GP??\"Your journey begins the moment you step into the One World Trade Cente. So get your tickets now!\",ReTb7Sv8y:title??props.ReTb7Sv8y??\"One World Observatory\",variant:humanReadableVariantMap[props.variant]??props.variant??\"BhpI8vgPg\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,agwsiEGqg,ReTb7Sv8y,jRVb2J9GP,iHEfbKHaY,efxJ81Ltd,a5PyLLBBF,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BhpI8vgPg\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(a5PyLLBBF);const isDisplayed=value=>{if([\"PbcJYegnM\",\"InQZ17AlB\"].includes(baseVariant))return false;return value;};const visible1=negate(equals(iHEfbKHaY,0));const activeLocaleCode=useLocaleCode();const textContent=numberToString(iHEfbKHaY,{locale:\"\",maximumFractionDigits:1,minimumFractionDigits:1,notation:\"standard\",style:\"decimal\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ebw96e\",className,classNames),\"data-framer-name\":\"3/2 - Desktop\",layoutDependency:layoutDependency,layoutId:\"BhpI8vgPg\",ref:refBinding,style:{...style},...addPropertyOverrides({a5V1R5z8c:{\"data-framer-name\":\"3/2 - Phone\"},InQZ17AlB:{\"data-framer-name\":\"Resizing IMG - Phone\"},PbcJYegnM:{\"data-framer-name\":\"Resizing Img\"}},baseVariant,gestureVariant),children:[visible&&/*#__PURE__*/_jsx(Image,{as:\"section\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2005,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(20+((componentViewport?.height||200)-20-334)/2)),pixelHeight:2005,pixelWidth:3024,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 100px, 1px), 720px)`,...toResponsiveImage(agwsiEGqg)},className:\"framer-36m8w2\",\"data-framer-name\":\"Hero image\",layoutDependency:layoutDependency,layoutId:\"zU70axRLC\",style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{a5V1R5z8c:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},InQZ17AlB:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({a5V1R5z8c:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2005,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-894)/2+0+0)),pixelHeight:2005,pixelWidth:3024,sizes:`min(${componentViewport?.width||\"100vw\"}, 460px)`,...toResponsiveImage(agwsiEGqg)}},InQZ17AlB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2005,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-578)/2+0+0)),pixelHeight:2005,pixelWidth:3024,sizes:`min(${componentViewport?.width||\"100vw\"}, 720px)`,...toResponsiveImage(agwsiEGqg)}},PbcJYegnM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2005,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(20+((componentViewport?.height||200)-20-((componentViewport?.height||200)-20)*1)/2)),pixelHeight:2005,pixelWidth:3024,sizes:`min((${componentViewport?.width||\"100vw\"} - 100px) * 0.47, 720px)`,...toResponsiveImage(agwsiEGqg)}}},baseVariant,gestureVariant)}),isDisplayed(a5PyLLBBF)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q9lo5o-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ki_VVNq63-container\",nodeId:\"ki_VVNq63\",rendersWithMotion:true,scopeId:\"q45H9ihEY\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,controls:false,height:\"100%\",id:\"ki_VVNq63\",isMixedBorderRadius:false,layoutId:\"ki_VVNq63\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(agwsiEGqg),posterEnabled:true,srcFile:efxJ81Ltd,srcType:\"Upload\",srcUrl:getLocalizedValue(\"v0\",activeLocale)??\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:30,topRightRadius:30,volume:25,width:\"100%\",...addPropertyOverrides({a5V1R5z8c:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,topLeftRadius:0,topRightRadius:0}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eor4eb\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"vVQAxmjx2\",children:[visible1&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10o3s76\",\"data-framer-name\":\"Rating stack\",layoutDependency:layoutDependency,layoutId:\"j0pK5XvM_\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-eia5rt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OZaLLB00p-container\",nodeId:\"OZaLLB00p\",rendersWithMotion:true,scopeId:\"q45H9ihEY\",children:/*#__PURE__*/_jsx(Rating,{emptyColor:\"rgb(235, 235, 235)\",emptyStar:[],filledColor:\"var(--token-a9c81b70-237b-4fea-83ba-b036abd12577, rgb(255, 200, 0))\",filledStar:[],gap:8,height:\"100%\",id:\"OZaLLB00p\",layoutId:\"OZaLLB00p\",mode:\"default\",size:20,totalStars:5,value:iHEfbKHaY,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ecee383b-1edc-4850-8504-44a633f9ef46, rgb(233, 233, 233)))\"},children:\"NaN\"})}),className:\"framer-9pzjsb\",fonts:[\"GF;Open Sans-700\"],layoutDependency:layoutDependency,layoutId:\"IDq_nrvzQ\",style:{\"--extracted-r6o4lv\":\"var(--token-ecee383b-1edc-4850-8504-44a633f9ef46, rgb(233, 233, 233))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-167wcr5\",\"data-styles-preset\":\"pgbUI1Yd9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e67efeeb-e984-4344-b253-2d3d53909999, rgb(255, 255, 255)))\"},children:\"One World Observatory\"})}),className:\"framer-l2f3s0\",\"data-framer-appear-id\":\"l2f3s0\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"Rp_lKf3SY\",optimized:true,style:{\"--extracted-gdpscs\":\"var(--token-e67efeeb-e984-4344-b253-2d3d53909999, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},text:ReTb7Sv8y,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-3hnz8p\",\"data-styles-preset\":\"uH_aVuEnA\",style:{\"--framer-text-alignment\":\"left\"},children:\"Your journey begins the moment you step into the One World Trade Cente. So get your tickets now!\"})}),className:\"framer-1qsqssg\",\"data-framer-appear-id\":\"1qsqssg\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"iulORvMWE\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},text:jRVb2J9GP,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ld8Di.framer-y26xuq, .framer-Ld8Di .framer-y26xuq { display: block; }\",\".framer-Ld8Di.framer-ebw96e { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 20px 50px 0px 50px; position: relative; width: 1200px; }\",\".framer-Ld8Di .framer-36m8w2 { align-content: center; align-items: center; aspect-ratio: 1.4970059880239521 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 134px); justify-content: flex-start; max-width: 720px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ld8Di .framer-q9lo5o-container { aspect-ratio: 1.4953271028037383 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 0px); max-width: 100%; position: relative; width: 1px; }\",\".framer-Ld8Di .framer-1eor4eb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-Ld8Di .framer-10o3s76 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Ld8Di .framer-eia5rt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Ld8Di .framer-9pzjsb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ld8Di .framer-l2f3s0 { flex: none; height: auto; max-width: 750px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-Ld8Di .framer-1qsqssg { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ld8Di.framer-ebw96e, .framer-Ld8Di .framer-36m8w2, .framer-Ld8Di .framer-1eor4eb, .framer-Ld8Di .framer-10o3s76 { gap: 0px; } .framer-Ld8Di.framer-ebw96e > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-Ld8Di.framer-ebw96e > :first-child, .framer-Ld8Di .framer-10o3s76 > :first-child { margin-left: 0px; } .framer-Ld8Di.framer-ebw96e > :last-child, .framer-Ld8Di .framer-10o3s76 > :last-child { margin-right: 0px; } .framer-Ld8Di .framer-36m8w2 > *, .framer-Ld8Di .framer-1eor4eb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Ld8Di .framer-36m8w2 > :first-child, .framer-Ld8Di .framer-1eor4eb > :first-child { margin-top: 0px; } .framer-Ld8Di .framer-36m8w2 > :last-child, .framer-Ld8Di .framer-1eor4eb > :last-child { margin-bottom: 0px; } .framer-Ld8Di .framer-10o3s76 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",\".framer-Ld8Di.framer-v-5i0p4f.framer-ebw96e { flex-direction: column; gap: 20px; padding: 0px; width: 634px; }\",\".framer-Ld8Di.framer-v-5i0p4f .framer-36m8w2 { flex: none; max-width: 460px; width: 100%; will-change: unset; }\",\".framer-Ld8Di.framer-v-5i0p4f .framer-q9lo5o-container { flex: none; height: var(--framer-aspect-ratio-supported, 134px); max-width: 480px; width: 100%; }\",\".framer-Ld8Di.framer-v-5i0p4f .framer-1eor4eb, .framer-Ld8Di.framer-v-1cnhf8l .framer-1eor4eb { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ld8Di.framer-v-5i0p4f.framer-ebw96e { gap: 0px; } .framer-Ld8Di.framer-v-5i0p4f.framer-ebw96e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Ld8Di.framer-v-5i0p4f.framer-ebw96e > :first-child { margin-top: 0px; } .framer-Ld8Di.framer-v-5i0p4f.framer-ebw96e > :last-child { margin-bottom: 0px; } }\",\".framer-Ld8Di.framer-v-1gd1bn3 .framer-36m8w2 { align-self: stretch; aspect-ratio: unset; flex: none; height: auto; width: 47%; }\",\".framer-Ld8Di.framer-v-1cnhf8l.framer-ebw96e { flex-direction: column; gap: 20px; padding: 0px; width: 623px; }\",\".framer-Ld8Di.framer-v-1cnhf8l .framer-36m8w2 { aspect-ratio: unset; flex: none; height: 252px; width: 100%; will-change: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ld8Di.framer-v-1cnhf8l.framer-ebw96e { gap: 0px; } .framer-Ld8Di.framer-v-1cnhf8l.framer-ebw96e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Ld8Di.framer-v-1cnhf8l.framer-ebw96e > :first-child { margin-top: 0px; } .framer-Ld8Di.framer-v-1cnhf8l.framer-ebw96e > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 357\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1320px\",null,null]},\"a5V1R5z8c\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1320px\",null,null]},\"PbcJYegnM\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1320px\",null,null]},\"InQZ17AlB\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1320px\",null,null]}}}\n * @framerVariables {\"agwsiEGqg\":\"image\",\"ReTb7Sv8y\":\"title\",\"jRVb2J9GP\":\"description\",\"iHEfbKHaY\":\"rating\",\"efxJ81Ltd\":\"videoFile\",\"a5PyLLBBF\":\"showVideo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerq45H9ihEY=withCSS(Component,css,\"framer-Ld8Di\");export default Framerq45H9ihEY;Framerq45H9ihEY.displayName=\"Collections / Hero banner\";Framerq45H9ihEY.defaultProps={height:357,width:1200};addPropertyControls(Framerq45H9ihEY,{variant:{options:[\"BhpI8vgPg\",\"a5V1R5z8c\",\"PbcJYegnM\",\"InQZ17AlB\"],optionTitles:[\"3/2 - Desktop\",\"3/2 - Phone\",\"Resizing Img\",\"Resizing IMG - Phone\"],title:\"Variant\",type:ControlType.Enum},agwsiEGqg:{title:\"Image\",type:ControlType.ResponsiveImage},ReTb7Sv8y:{defaultValue:\"One World Observatory\",displayTextArea:false,title:\"Title\",type:ControlType.String},jRVb2J9GP:{defaultValue:\"Your journey begins the moment you step into the One World Trade Cente. So get your tickets now!\",displayTextArea:false,title:\"Description\",type:ControlType.String},iHEfbKHaY:{defaultValue:4.7,displayStepper:true,max:5,min:0,step:.1,title:\"Rating\",type:ControlType.Number},efxJ81Ltd:VideoControls?.[\"srcFile\"]&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,1BxSylU3mFfqaUKKIrnIh7xvyo.mp4?originalFilename=ESB.mp4\",description:undefined,hidden:undefined,title:\"Video file\"},a5PyLLBBF:{defaultValue:false,title:\"Show video\",type:ControlType.Boolean}});addFonts(Framerq45H9ihEY,[{explicitInter:true,fonts:[{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4iY1M2xLER.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...RatingFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerq45H9ihEY\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"357\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1320px\\\",null,null]},\\\"a5V1R5z8c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1320px\\\",null,null]},\\\"PbcJYegnM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1320px\\\",null,null]},\\\"InQZ17AlB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1320px\\\",null,null]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"agwsiEGqg\\\":\\\"image\\\",\\\"ReTb7Sv8y\\\":\\\"title\\\",\\\"jRVb2J9GP\\\":\\\"description\\\",\\\"iHEfbKHaY\\\":\\\"rating\\\",\\\"efxJ81Ltd\\\":\\\"videoFile\\\",\\\"a5PyLLBBF\\\":\\\"showVideo\\\"}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}