{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/bGC8C8wCDb6adEliriks/4H1JpGwh4ewFbqnNOFuk/AzZaW9Iep.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (61bac00)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import ProjectTextSection from\"https://framerusercontent.com/modules/DljNFYrLiok707ndNDUe/0eu5OkZ50vwjrBd8XqHU/fAwez3NX6.js\";import ImageDescription from\"https://framerusercontent.com/modules/UPncfLt9Yb7CCcMDrTZR/ltfRHF1bRLIw0Oa2t8lv/jkllaHNH2.js\";import ProjectIntroSection from\"https://framerusercontent.com/modules/V1QJ1BAOJ8et8z0amT5N/q7ZMehjfSuEcxYOOCLxq/rAxsKwkUQ.js\";const YouTubeFonts=getFonts(YouTube);const ProjectIntroSectionFonts=getFonts(ProjectIntroSection);const ProjectTextSectionFonts=getFonts(ProjectTextSection);const ImageDescriptionFonts=getFonts(ImageDescription);const cycleOrder=[\"YnWSIOuBm\",\"fbUmu9HsE\"];const serializationHash=\"framer-om281\";const variantClassNames={fbUmu9HsE:\"framer-v-poliff\",YnWSIOuBm:\"framer-v-v4pnrv\"};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 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={Desktop:\"YnWSIOuBm\",Mobile:\"fbUmu9HsE\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"YnWSIOuBm\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"YnWSIOuBm\",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,style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-v4pnrv\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"YnWSIOuBm\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{fbUmu9HsE:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({fbUmu9HsE:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bm1n8o\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"cdRUVzdvh\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,boxShadow:\"0px 16px 64px 0px rgba(69, 56, 25, 0.23999999463558197)\"},variants:{fbUmu9HsE:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qj7bii-container\",layoutDependency:layoutDependency,layoutId:\"nPh588B7p-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"nPh588B7p\",isMixedBorderRadius:false,isRed:false,layoutId:\"nPh588B7p\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/ZH81Oka8GuQ\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xknrp8-container\",layoutDependency:layoutDependency,layoutId:\"ZR42I87lA-container\",children:/*#__PURE__*/_jsx(ProjectIntroSection,{Bpmu2xCiG:\"In 2018, I was invited to join a small team of students to design the launch of the Adidas COPA \u201819 in LA. In a 3-month sprint, we designed and built a physical retail experience that captured the brand identities of Adidas and COPA in the context of LA street culture. Our activation was a big success, and Adidas invited our team to present our work at their HQ in Herzog, Germany!\",height:\"100%\",hNKwY4hoe:\"UX Designer\",id:\"ZR42I87lA\",KmDFOP8_d:\"Adidas Retail Design\",layoutId:\"ZR42I87lA\",rgx1pdZkH:\"2018 \u2013 2019\",style:{width:\"100%\"},variant:\"T1GSEuBXm\",width:\"100%\",...addPropertyOverrides({fbUmu9HsE:{variant:\"iSa_td9Ag\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:2800,pixelHeight:1200,pixelWidth:2800,sizes:\"min(1400px, 100vw)\",src:\"https://framerusercontent.com/images/miOxkBBNfUcqRybWQowsmlvJdY.jpg\",srcSet:\"https://framerusercontent.com/images/miOxkBBNfUcqRybWQowsmlvJdY.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/miOxkBBNfUcqRybWQowsmlvJdY.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/miOxkBBNfUcqRybWQowsmlvJdY.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/miOxkBBNfUcqRybWQowsmlvJdY.jpg 2800w\"},className:\"framer-v86qay\",\"data-framer-name\":\"Header Image\",layoutDependency:layoutDependency,layoutId:\"vvN8Ozh1R\",...addPropertyOverrides({fbUmu9HsE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:2800,pixelHeight:1200,pixelWidth:2800,sizes:\"min(375px, 100vw)\",src:\"https://framerusercontent.com/images/miOxkBBNfUcqRybWQowsmlvJdY.jpg\",srcSet:\"https://framerusercontent.com/images/miOxkBBNfUcqRybWQowsmlvJdY.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/miOxkBBNfUcqRybWQowsmlvJdY.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/miOxkBBNfUcqRybWQowsmlvJdY.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/miOxkBBNfUcqRybWQowsmlvJdY.jpg 2800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wqnj0b-container\",layoutDependency:layoutDependency,layoutId:\"ueCxYg0W9-container\",children:/*#__PURE__*/_jsx(ProjectTextSection,{fcUpwz5Ha:\"By the end of our research phase, we had the necessary understanding of our audience and problem space to begin prototyping.\",height:\"100%\",id:\"ueCxYg0W9\",KLpn7Gx7u:false,layoutId:\"ueCxYg0W9\",qcd6z8jCb:\"Process\",sOi6worSu:true,style:{width:\"100%\"},UNKDyvYU9:\"To kick things off, we spend weeks researching our problem space and audience. Next, we ran different brainstorming exercises\u2014Mind Mapping, SWAT analysis, 5 Whys, \u201CWhat if\u2019s\u201D, and more\u2014to expand on possible solutions, draw associations between different ideas, and drill down on core themes.\",variant:\"xhG_f8zin\",width:\"100%\",XmZ3YxASs:\"\u2022 1st Place\u2014Quality of Work\",...addPropertyOverrides({fbUmu9HsE:{variant:\"RrOlyvqxE\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2800,pixelHeight:1536,pixelWidth:2800,sizes:\"min(1400px, 100vw)\",src:\"https://framerusercontent.com/images/JVvSgn1yGt8kMSPHHKPWEkd9qnE.jpg\",srcSet:\"https://framerusercontent.com/images/JVvSgn1yGt8kMSPHHKPWEkd9qnE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/JVvSgn1yGt8kMSPHHKPWEkd9qnE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/JVvSgn1yGt8kMSPHHKPWEkd9qnE.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/JVvSgn1yGt8kMSPHHKPWEkd9qnE.jpg 2800w\"},className:\"framer-1b4wtjg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ES3gDbTRO\",...addPropertyOverrides({fbUmu9HsE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2800,pixelHeight:1536,pixelWidth:2800,sizes:\"min(375px, 100vw)\",src:\"https://framerusercontent.com/images/JVvSgn1yGt8kMSPHHKPWEkd9qnE.jpg\",srcSet:\"https://framerusercontent.com/images/JVvSgn1yGt8kMSPHHKPWEkd9qnE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/JVvSgn1yGt8kMSPHHKPWEkd9qnE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/JVvSgn1yGt8kMSPHHKPWEkd9qnE.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/JVvSgn1yGt8kMSPHHKPWEkd9qnE.jpg 2800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k3dimz-container\",layoutDependency:layoutDependency,layoutId:\"FjyTk0Clg-container\",children:/*#__PURE__*/_jsx(ImageDescription,{height:\"100%\",id:\"FjyTk0Clg\",layoutId:\"FjyTk0Clg\",r1HCxXuPg:\"The team in action.\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z9einc-container\",layoutDependency:layoutDependency,layoutId:\"I0C_UhPwd-container\",children:/*#__PURE__*/_jsx(ProjectTextSection,{fcUpwz5Ha:\"\u2022 1st Place\u2014Remote Presence\",height:\"100%\",id:\"I0C_UhPwd\",KLpn7Gx7u:false,layoutId:\"I0C_UhPwd\",qcd6z8jCb:\"Final Concept\",sOi6worSu:false,style:{width:\"100%\"},UNKDyvYU9:\"The centerpiece of our retail activation was an immersive multimedia experience that highlighted the COPA boot as a product for both fans and pros alike. In an age of online shopping, our activation let customers engage with the product and brand in-person before purchasing in-store or online.\",variant:\"xhG_f8zin\",width:\"100%\",XmZ3YxASs:\"\u2022 1st Place\u2014Quality of Work\",...addPropertyOverrides({fbUmu9HsE:{variant:\"RrOlyvqxE\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1720,intrinsicWidth:2800,pixelHeight:1720,pixelWidth:2800,sizes:\"min(1400px, 100vw)\",src:\"https://framerusercontent.com/images/0mvPtO0zQ8YLC3xDPLRyWVkjZM.jpg\",srcSet:\"https://framerusercontent.com/images/0mvPtO0zQ8YLC3xDPLRyWVkjZM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/0mvPtO0zQ8YLC3xDPLRyWVkjZM.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/0mvPtO0zQ8YLC3xDPLRyWVkjZM.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/0mvPtO0zQ8YLC3xDPLRyWVkjZM.jpg 2800w\"},className:\"framer-1emphld\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jZge7UxkW\",...addPropertyOverrides({fbUmu9HsE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1720,intrinsicWidth:2800,pixelHeight:1720,pixelWidth:2800,sizes:\"min(375px, 100vw)\",src:\"https://framerusercontent.com/images/0mvPtO0zQ8YLC3xDPLRyWVkjZM.jpg\",srcSet:\"https://framerusercontent.com/images/0mvPtO0zQ8YLC3xDPLRyWVkjZM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/0mvPtO0zQ8YLC3xDPLRyWVkjZM.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/0mvPtO0zQ8YLC3xDPLRyWVkjZM.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/0mvPtO0zQ8YLC3xDPLRyWVkjZM.jpg 2800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1906,intrinsicWidth:2800,pixelHeight:1906,pixelWidth:2800,sizes:\"min(1400px, 100vw)\",src:\"https://framerusercontent.com/images/l8vVOqM7rA81DNRSIoOUu5nT9k.jpg\",srcSet:\"https://framerusercontent.com/images/l8vVOqM7rA81DNRSIoOUu5nT9k.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/l8vVOqM7rA81DNRSIoOUu5nT9k.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/l8vVOqM7rA81DNRSIoOUu5nT9k.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/l8vVOqM7rA81DNRSIoOUu5nT9k.jpg 2800w\"},className:\"framer-1ppvvxk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZylrX6U9C\",...addPropertyOverrides({fbUmu9HsE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1906,intrinsicWidth:2800,pixelHeight:1906,pixelWidth:2800,sizes:\"min(375px, 100vw)\",src:\"https://framerusercontent.com/images/l8vVOqM7rA81DNRSIoOUu5nT9k.jpg\",srcSet:\"https://framerusercontent.com/images/l8vVOqM7rA81DNRSIoOUu5nT9k.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/l8vVOqM7rA81DNRSIoOUu5nT9k.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/l8vVOqM7rA81DNRSIoOUu5nT9k.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/l8vVOqM7rA81DNRSIoOUu5nT9k.jpg 2800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1566,intrinsicWidth:2800,pixelHeight:1566,pixelWidth:2800,sizes:\"min(1400px, 100vw)\",src:\"https://framerusercontent.com/images/1DSdqQdXTjPxoLSB8j9rMCVmNTI.jpg\",srcSet:\"https://framerusercontent.com/images/1DSdqQdXTjPxoLSB8j9rMCVmNTI.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/1DSdqQdXTjPxoLSB8j9rMCVmNTI.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/1DSdqQdXTjPxoLSB8j9rMCVmNTI.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/1DSdqQdXTjPxoLSB8j9rMCVmNTI.jpg 2800w\"},className:\"framer-gn2fgu\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"laNsNyf9P\",...addPropertyOverrides({fbUmu9HsE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1566,intrinsicWidth:2800,pixelHeight:1566,pixelWidth:2800,sizes:\"min(375px, 100vw)\",src:\"https://framerusercontent.com/images/1DSdqQdXTjPxoLSB8j9rMCVmNTI.jpg\",srcSet:\"https://framerusercontent.com/images/1DSdqQdXTjPxoLSB8j9rMCVmNTI.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/1DSdqQdXTjPxoLSB8j9rMCVmNTI.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/1DSdqQdXTjPxoLSB8j9rMCVmNTI.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/1DSdqQdXTjPxoLSB8j9rMCVmNTI.jpg 2800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-erp9x3-container\",layoutDependency:layoutDependency,layoutId:\"yPZExmTqf-container\",children:/*#__PURE__*/_jsx(ProjectTextSection,{fcUpwz5Ha:\"\",height:\"100%\",id:\"yPZExmTqf\",KLpn7Gx7u:false,layoutId:\"yPZExmTqf\",qcd6z8jCb:\"The Launch\",sOi6worSu:false,style:{width:\"100%\"},UNKDyvYU9:\"Our launch activation took place at the historic Niky\u2019s soccer store in downtown Los Angeles. Athletes and creators from across the city came to celebrate the release and engage with our in-store experience..\",variant:\"xhG_f8zin\",width:\"100%\",XmZ3YxASs:\"\",...addPropertyOverrides({fbUmu9HsE:{variant:\"RrOlyvqxE\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gjkuv3-container\",layoutDependency:layoutDependency,layoutId:\"zQNildrxr-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"zQNildrxr\",isMixedBorderRadius:false,isRed:false,layoutId:\"zQNildrxr\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/UcZpqX1LLuo\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j5ymj-container\",layoutDependency:layoutDependency,layoutId:\"gP4iQNske-container\",children:/*#__PURE__*/_jsx(ImageDescription,{height:\"100%\",id:\"gP4iQNske\",layoutId:\"gP4iQNske\",r1HCxXuPg:\"Footage from our retail activation.\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dinc16-container\",layoutDependency:layoutDependency,layoutId:\"uuwXbhhlx-container\",children:/*#__PURE__*/_jsx(ProjectTextSection,{fcUpwz5Ha:\"\",height:\"100%\",id:\"uuwXbhhlx\",KLpn7Gx7u:false,layoutId:\"uuwXbhhlx\",qcd6z8jCb:\"Award\u20141st Place\",sOi6worSu:false,style:{width:\"100%\"},UNKDyvYU9:\"Given the initial success of our launch activation, Adidas invited our team to their HQ in Herzog, Germany. During the trip, we shared our design process and brand insights with thousands of Adidas employees and executives. And we watched a lot of soccer!\",variant:\"xhG_f8zin\",width:\"100%\",XmZ3YxASs:\"\",...addPropertyOverrides({fbUmu9HsE:{variant:\"RrOlyvqxE\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1534,intrinsicWidth:2800,pixelHeight:1534,pixelWidth:2800,sizes:\"min(1400px, 100vw)\",src:\"https://framerusercontent.com/images/l9Xn2dri4tddvc9nedLmtwbYWug.jpg\",srcSet:\"https://framerusercontent.com/images/l9Xn2dri4tddvc9nedLmtwbYWug.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/l9Xn2dri4tddvc9nedLmtwbYWug.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/l9Xn2dri4tddvc9nedLmtwbYWug.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/l9Xn2dri4tddvc9nedLmtwbYWug.jpg 2800w\"},className:\"framer-17x67ss\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"iZmUJFCB0\",...addPropertyOverrides({fbUmu9HsE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1534,intrinsicWidth:2800,pixelHeight:1534,pixelWidth:2800,sizes:\"min(375px, 100vw)\",src:\"https://framerusercontent.com/images/l9Xn2dri4tddvc9nedLmtwbYWug.jpg\",srcSet:\"https://framerusercontent.com/images/l9Xn2dri4tddvc9nedLmtwbYWug.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/l9Xn2dri4tddvc9nedLmtwbYWug.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/l9Xn2dri4tddvc9nedLmtwbYWug.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/l9Xn2dri4tddvc9nedLmtwbYWug.jpg 2800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xwr55p-container\",layoutDependency:layoutDependency,layoutId:\"kzDz4KbzW-container\",children:/*#__PURE__*/_jsx(ImageDescription,{height:\"100%\",id:\"kzDz4KbzW\",layoutId:\"kzDz4KbzW\",r1HCxXuPg:\"Favorite moments from our trip to Adidas HQ in Herzog, Germany.\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-111vvok-container\",layoutDependency:layoutDependency,layoutId:\"tAT7DERx9-container\",children:/*#__PURE__*/_jsx(ProjectTextSection,{fcUpwz5Ha:\"With less than 3 months to go from concept to reality, we had one shot to nail our final design. To prepare for this, we built many small-scale prototypes of our retail experience. These prototypes allowed us to quickly test our ideas and iterate. The success of our final concept was a testament to this process.\",height:\"100%\",id:\"tAT7DERx9\",KLpn7Gx7u:false,layoutId:\"tAT7DERx9\",qcd6z8jCb:\"Takeaways\",sOi6worSu:true,style:{width:\"100%\"},UNKDyvYU9:\"I learned an incredible amount about user research, prototyping, and experience design during this project.\",variant:\"xhG_f8zin\",width:\"100%\",XmZ3YxASs:\"\",...addPropertyOverrides({fbUmu9HsE:{variant:\"RrOlyvqxE\"}},baseVariant,gestureVariant)})})]})})})})});});const css=['.framer-om281 [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-om281 .framer-yjn4sq { display: block; }\",\".framer-om281.framer-v4pnrv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 1400px; }\",\".framer-om281 .framer-1bm1n8o { 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%; will-change: var(--framer-will-change-override, transform); }\",\".framer-om281 .framer-qj7bii-container { aspect-ratio: 1.7902813299232736 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 782px); position: relative; width: 100%; }\",\".framer-om281 .framer-xknrp8-container, .framer-om281 .framer-wqnj0b-container, .framer-om281 .framer-k3dimz-container, .framer-om281 .framer-z9einc-container, .framer-om281 .framer-erp9x3-container, .framer-om281 .framer-1j5ymj-container, .framer-om281 .framer-1dinc16-container, .framer-om281 .framer-1xwr55p-container, .framer-om281 .framer-111vvok-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-om281 .framer-v86qay { aspect-ratio: 1.9914651493598863 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 703px); position: relative; width: 100%; }\",\".framer-om281 .framer-1b4wtjg { aspect-ratio: 1.8229166666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 768px); position: relative; width: 100%; }\",\".framer-om281 .framer-1emphld { aspect-ratio: 1.627906976744186 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 860px); position: relative; width: 100%; }\",\".framer-om281 .framer-1ppvvxk { aspect-ratio: 1.4690451206715636 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 953px); position: relative; width: 100%; }\",\".framer-om281 .framer-gn2fgu { aspect-ratio: 1.7879948914431674 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 783px); position: relative; width: 100%; }\",\".framer-om281 .framer-1gjkuv3-container { aspect-ratio: 1.7789072426937738 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 787px); position: relative; width: 100%; }\",\".framer-om281 .framer-17x67ss { aspect-ratio: 1.8252933507170794 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 767px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-om281.framer-v4pnrv, .framer-om281 .framer-1bm1n8o { gap: 0px; } .framer-om281.framer-v4pnrv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-om281.framer-v4pnrv > :first-child, .framer-om281 .framer-1bm1n8o > :first-child { margin-top: 0px; } .framer-om281.framer-v4pnrv > :last-child, .framer-om281 .framer-1bm1n8o > :last-child { margin-bottom: 0px; } .framer-om281 .framer-1bm1n8o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-om281.framer-v-poliff.framer-v4pnrv { width: 375px; }\",\".framer-om281.framer-v-poliff .framer-qj7bii-container, .framer-om281.framer-v-poliff .framer-gn2fgu { height: var(--framer-aspect-ratio-supported, 210px); }\",\".framer-om281.framer-v-poliff .framer-v86qay { height: var(--framer-aspect-ratio-supported, 189px); }\",\".framer-om281.framer-v-poliff .framer-1b4wtjg, .framer-om281.framer-v-poliff .framer-17x67ss { height: var(--framer-aspect-ratio-supported, 206px); }\",\".framer-om281.framer-v-poliff .framer-1emphld { height: var(--framer-aspect-ratio-supported, 231px); }\",\".framer-om281.framer-v-poliff .framer-1ppvvxk { height: var(--framer-aspect-ratio-supported, 255px); }\",\".framer-om281.framer-v-poliff .framer-1gjkuv3-container { height: var(--framer-aspect-ratio-supported, 211px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8932.5\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fbUmu9HsE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const FramerAzZaW9Iep=withCSS(Component,css,\"framer-om281\");export default FramerAzZaW9Iep;FramerAzZaW9Iep.displayName=\"Modal Adidas\";FramerAzZaW9Iep.defaultProps={height:8932.5,width:1400};addPropertyControls(FramerAzZaW9Iep,{variant:{options:[\"YnWSIOuBm\",\"fbUmu9HsE\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAzZaW9Iep,[...YouTubeFonts,...ProjectIntroSectionFonts,...ProjectTextSectionFonts,...ImageDescriptionFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAzZaW9Iep\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1400\",\"framerIntrinsicHeight\":\"8932.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fbUmu9HsE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "YouTubeFonts", "getFonts", "Youtube", "ProjectIntroSectionFonts", "rAxsKwkUQ_default", "ProjectTextSectionFonts", "fAwez3NX6_default", "ImageDescriptionFonts", "jkllaHNH2_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "Image2", "css", "FramerAzZaW9Iep", "withCSS", "AzZaW9Iep_default", "addPropertyControls", "ControlType", "addFonts"]
}
