{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/kjdnk3gJou2UvuTlH6H7/ea3qK0lXiIvp4V3SAj8V/kNXL7vmzI.js", "ssg:https://framerusercontent.com/modules/UynlPKfDMoDiNwk2Kemp/54MHesr4SjC06fNrvO6a/XsMNwyNS4.js", "ssg:https://framerusercontent.com/modules/EecH2LCqVN7522sjIVcy/KJ6R2nbj0jvuteaNpF6R/B7MgUCPqA.js", "ssg:https://framerusercontent.com/modules/92NSNziXmpZ0Yc7BLRtt/lEzfd343bJDd7dfkbsUU/RUi3EWwrz.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:hasBorderRadius&&showVideo?\"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\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (224f28e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7YdR58MyMd0umtZS2gOd/hz3bNODgNZ0BqewfSReM/fVxnimdqP.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/S078g5mAhW0pl6hHuhSd/SynPdgNPW8PutFsZGfN7/TwPLYAfU6.js\";const enabledGestures={MhB15o9WY:{hover:true},rwCBAHCsr:{hover:true}};const cycleOrder=[\"MhB15o9WY\",\"rwCBAHCsr\"];const variantClassNames={MhB15o9WY:\"framer-v-c8bv3i\",rwCBAHCsr:\"framer-v-5wlysz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Variant 1\":\"MhB15o9WY\",mobile:\"rwCBAHCsr\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"MhB15o9WY\",tap:ECuMpVXIJ,image:qDcQ6Fj5k={src:new URL(\"assets/2048/pQlhZ0xXQQFksLSXUeeu1LYc3k.png\",\"https://framerusercontent.com/modules/kjdnk3gJou2UvuTlH6H7/ea3qK0lXiIvp4V3SAj8V/kNXL7vmzI.js\").href,srcSet:`${new URL(\"assets/512/pQlhZ0xXQQFksLSXUeeu1LYc3k.png\",\"https://framerusercontent.com/modules/kjdnk3gJou2UvuTlH6H7/ea3qK0lXiIvp4V3SAj8V/kNXL7vmzI.js\").href} 512w, ${new URL(\"assets/1024/pQlhZ0xXQQFksLSXUeeu1LYc3k.png\",\"https://framerusercontent.com/modules/kjdnk3gJou2UvuTlH6H7/ea3qK0lXiIvp4V3SAj8V/kNXL7vmzI.js\").href} 1024w, ${new URL(\"assets/2048/pQlhZ0xXQQFksLSXUeeu1LYc3k.png\",\"https://framerusercontent.com/modules/kjdnk3gJou2UvuTlH6H7/ea3qK0lXiIvp4V3SAj8V/kNXL7vmzI.js\").href} 2048w, ${new URL(\"assets/pQlhZ0xXQQFksLSXUeeu1LYc3k.png\",\"https://framerusercontent.com/modules/kjdnk3gJou2UvuTlH6H7/ea3qK0lXiIvp4V3SAj8V/kNXL7vmzI.js\").href} 2380w`},videoTitle:JlXHpra9M=\"text\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"MhB15o9WY\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap5nwm83=activeVariantCallback(async(...args)=>{if(ECuMpVXIJ){const res=await ECuMpVXIJ(...args);if(res===false)return false;}});const isDisplayed=()=>{if([\"MhB15o9WY-hover\",\"rwCBAHCsr-hover\"].includes(gestureVariant))return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-SgXQK\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Image,{...restProps,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1342,intrinsicWidth:2380,pixelHeight:1342,pixelWidth:2380,...toResponsiveImage(qDcQ6Fj5k)},className:cx(\"framer-c8bv3i\",className),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MhB15o9WY\",onTap:onTap5nwm83,ref:ref,style:{...style},transition:transition,...addPropertyOverrides({\"MhB15o9WY-hover\":{\"data-framer-name\":undefined},\"rwCBAHCsr-hover\":{\"data-framer-name\":undefined},rwCBAHCsr:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-mo7fxw\",layoutDependency:layoutDependency,layoutId:\"Frwbb_6bT\",style:{background:\"linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0%, rgba(0, 0, 0, 0.78) 100%)\"},transition:transition,children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h1,{className:\"framer-styles-preset-gjypmh\",\"data-styles-preset\":\"TwPLYAfU6\",children:\"Inage'I\"})}),className:\"framer-nr7fjj\",layoutDependency:layoutDependency,layoutId:\"Ilic0Q4eM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:JlXHpra9M,transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rwCBAHCsr:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"text\"})})}},baseVariant,gestureVariant)})})})})});});const css=['.framer-SgXQK [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-SgXQK .framer-yi6dmi { display: block; }\",\".framer-SgXQK .framer-c8bv3i { cursor: pointer; height: 670px; position: relative; width: 1200px; }\",\".framer-SgXQK .framer-mo7fxw { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-SgXQK .framer-nr7fjj { bottom: 50px; flex: none; height: auto; left: 21px; position: absolute; white-space: pre; width: auto; }\",\".framer-SgXQK .framer-v-c8bv3i .framer-c8bv3i, .framer-SgXQK .framer-v-5wlysz .framer-c8bv3i { cursor: pointer; }\",\".framer-SgXQK.framer-v-5wlysz .framer-nr7fjj { bottom: 20px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 670\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rwCBAHCsr\":{\"layout\":[\"fixed\",\"fixed\"]},\"lfg9P7Oul\":{\"layout\":[\"fixed\",\"fixed\"]},\"boOQev8D9\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ECuMpVXIJ\":\"tap\",\"qDcQ6Fj5k\":\"image\",\"JlXHpra9M\":\"videoTitle\"}\n */ const FramerkNXL7vmzI=withCSS(Component,css,\"framer-SgXQK\");export default FramerkNXL7vmzI;FramerkNXL7vmzI.displayName=\"Full screen showcase video\";FramerkNXL7vmzI.defaultProps={height:670,width:1200};addPropertyControls(FramerkNXL7vmzI,{variant:{options:[\"MhB15o9WY\",\"rwCBAHCsr\"],optionTitles:[\"Variant 1\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},ECuMpVXIJ:{title:\"Tap\",type:ControlType.EventHandler},qDcQ6Fj5k:{__defaultAssetReference:\"data:framer/asset-reference,pQlhZ0xXQQFksLSXUeeu1LYc3k.png?originalFilename=Screenshot+2023-04-04+at+10.44.41+PM.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},JlXHpra9M:{defaultValue:\"text\",displayTextArea:false,title:\"Video Title\",type:ControlType.String}});addFonts(FramerkNXL7vmzI,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkNXL7vmzI\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"670\",\"framerVariables\":\"{\\\"ECuMpVXIJ\\\":\\\"tap\\\",\\\"qDcQ6Fj5k\\\":\\\"image\\\",\\\"JlXHpra9M\\\":\\\"videoTitle\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rwCBAHCsr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lfg9P7Oul\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"boOQev8D9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (224f28e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7YdR58MyMd0umtZS2gOd/hz3bNODgNZ0BqewfSReM/fVxnimdqP.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/S078g5mAhW0pl6hHuhSd/SynPdgNPW8PutFsZGfN7/TwPLYAfU6.js\";const enabledGestures={BTqSVnh2i:{hover:true},OlB5XO7lU:{hover:true}};const cycleOrder=[\"OlB5XO7lU\",\"BTqSVnh2i\"];const variantClassNames={BTqSVnh2i:\"framer-v-dmxcuc\",OlB5XO7lU:\"framer-v-zsjnxw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Variant 1\":\"OlB5XO7lU\",mobile:\"BTqSVnh2i\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"OlB5XO7lU\",tap:P6K4k1rIG,tap2:HdkIDGG6g,tap3:NZwHCt1Jw,image:FI8zOV23i={src:new URL(\"assets/1024/UJNkKGokYPq42hh8H8088EkV4.png\",\"https://framerusercontent.com/modules/UynlPKfDMoDiNwk2Kemp/54MHesr4SjC06fNrvO6a/XsMNwyNS4.js\").href,srcSet:`${new URL(\"assets/512/UJNkKGokYPq42hh8H8088EkV4.png\",\"https://framerusercontent.com/modules/UynlPKfDMoDiNwk2Kemp/54MHesr4SjC06fNrvO6a/XsMNwyNS4.js\").href} 512w, ${new URL(\"assets/1024/UJNkKGokYPq42hh8H8088EkV4.png\",\"https://framerusercontent.com/modules/UynlPKfDMoDiNwk2Kemp/54MHesr4SjC06fNrvO6a/XsMNwyNS4.js\").href} 1024w, ${new URL(\"assets/2048/UJNkKGokYPq42hh8H8088EkV4.png\",\"https://framerusercontent.com/modules/UynlPKfDMoDiNwk2Kemp/54MHesr4SjC06fNrvO6a/XsMNwyNS4.js\").href} 2048w, ${new URL(\"assets/UJNkKGokYPq42hh8H8088EkV4.png\",\"https://framerusercontent.com/modules/UynlPKfDMoDiNwk2Kemp/54MHesr4SjC06fNrvO6a/XsMNwyNS4.js\").href} 2360w`},videoTitle:t95aGlJcv=\"Inage'i\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"OlB5XO7lU\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapo1u6di=activeVariantCallback(async(...args)=>{if(P6K4k1rIG){const res=await P6K4k1rIG(...args);if(res===false)return false;}});const onPlayxgiqqz=activeVariantCallback(async(...args)=>{if(HdkIDGG6g){const res=await HdkIDGG6g(...args);if(res===false)return false;}});const onTaphq2wpb=activeVariantCallback(async(...args)=>{if(NZwHCt1Jw){const res=await NZwHCt1Jw(...args);if(res===false)return false;}});const isDisplayed=()=>{if([\"OlB5XO7lU-hover\",\"BTqSVnh2i-hover\"].includes(gestureVariant))return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-2SBZc\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-zsjnxw\",className),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OlB5XO7lU\",onTap:onTapo1u6di,ref:ref,style:{...style},transition:transition,...addPropertyOverrides({\"BTqSVnh2i-hover\":{\"data-framer-name\":undefined},\"OlB5XO7lU-hover\":{\"data-framer-name\":undefined},BTqSVnh2i:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1328,intrinsicWidth:2360,pixelHeight:1328,pixelWidth:2360,...toResponsiveImage(FI8zOV23i)},className:\"framer-1arbtno\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MqnlPKln8\",onTap:onTaphq2wpb,transition:transition,children:isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1htz26y\",layoutDependency:layoutDependency,layoutId:\"POvFq0cgs\",style:{background:\"linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0%, rgba(0, 0, 0, 0.78) 100%)\"},transition:transition,children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h1,{className:\"framer-styles-preset-gjypmh\",\"data-styles-preset\":\"TwPLYAfU6\",children:\"Inage'I\"})}),className:\"framer-byrlwq\",layoutDependency:layoutDependency,layoutId:\"QoMxPAxdK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:t95aGlJcv,transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BTqSVnh2i:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h2,{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Inage'i\"})})}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-2SBZc [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-2SBZc .framer-k69sbj { display: block; }\",\".framer-2SBZc .framer-zsjnxw { cursor: pointer; height: 337px; overflow: hidden; position: relative; width: 564px; }\",\".framer-2SBZc .framer-n4o2c0-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: -1px; }\",\".framer-2SBZc .framer-1arbtno { align-content: center; align-items: center; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: -1px; }\",\".framer-2SBZc .framer-1htz26y { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-2SBZc .framer-byrlwq { bottom: 21px; flex: none; height: auto; left: 21px; position: absolute; white-space: pre; width: auto; }\",\".framer-2SBZc .framer-v-zsjnxw .framer-zsjnxw, .framer-2SBZc .framer-v-dmxcuc .framer-zsjnxw { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2SBZc .framer-1arbtno { gap: 0px; } .framer-2SBZc .framer-1arbtno > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2SBZc .framer-1arbtno > :first-child { margin-left: 0px; } .framer-2SBZc .framer-1arbtno > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 337\n * @framerIntrinsicWidth 564\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BTqSVnh2i\":{\"layout\":[\"fixed\",\"fixed\"]},\"MiVms_J_b\":{\"layout\":[\"fixed\",\"fixed\"]},\"pA5YWdunV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"P6K4k1rIG\":\"tap\",\"HdkIDGG6g\":\"tap2\",\"NZwHCt1Jw\":\"tap3\",\"FI8zOV23i\":\"image\",\"t95aGlJcv\":\"videoTitle\"}\n */ const FramerXsMNwyNS4=withCSS(Component,css,\"framer-2SBZc\");export default FramerXsMNwyNS4;FramerXsMNwyNS4.displayName=\"Showcase videos\";FramerXsMNwyNS4.defaultProps={height:337,width:564};addPropertyControls(FramerXsMNwyNS4,{variant:{options:[\"OlB5XO7lU\",\"BTqSVnh2i\"],optionTitles:[\"Variant 1\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},P6K4k1rIG:{title:\"Tap\",type:ControlType.EventHandler},HdkIDGG6g:{title:\"Tap 2\",type:ControlType.EventHandler},NZwHCt1Jw:{title:\"Tap 3\",type:ControlType.EventHandler},FI8zOV23i:{__defaultAssetReference:\"data:framer/asset-reference,UJNkKGokYPq42hh8H8088EkV4.png?originalFilename=Inagei+wesbitethumb.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},t95aGlJcv:{defaultValue:\"Inage'i\",displayTextArea:false,title:\"Video Title\",type:ControlType.String}});addFonts(FramerXsMNwyNS4,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXsMNwyNS4\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"P6K4k1rIG\\\":\\\"tap\\\",\\\"HdkIDGG6g\\\":\\\"tap2\\\",\\\"NZwHCt1Jw\\\":\\\"tap3\\\",\\\"FI8zOV23i\\\":\\\"image\\\",\\\"t95aGlJcv\\\":\\\"videoTitle\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BTqSVnh2i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MiVms_J_b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pA5YWdunV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"337\",\"framerIntrinsicWidth\":\"564\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-p1Kqj .framer-styles-preset-1i1dmuu:not(.rich-text-wrapper), .framer-p1Kqj .framer-styles-preset-1i1dmuu.rich-text-wrapper a { --framer-link-hover-text-color: var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, #d7282f) /* {\"name\":\"Fox Red\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, #d7282f); --framer-link-text-decoration: underline; }'];export const className=\"framer-p1Kqj\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (66beb72)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/I3GA1LNcnfX23fOhSUyv/Vimeo.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";import FooterDarkCopy from\"#framer/local/canvasComponent/aMf0QUxWb/aMf0QUxWb.js\";import MenuNav from\"#framer/local/canvasComponent/JKKZgVcIZ/JKKZgVcIZ.js\";import FullScreenShowcaseVideo from\"#framer/local/canvasComponent/kNXL7vmzI/kNXL7vmzI.js\";import ShowcaseVideos from\"#framer/local/canvasComponent/XsMNwyNS4/XsMNwyNS4.js\";import*as sharedStyle4 from\"#framer/local/css/B7MgUCPqA/B7MgUCPqA.js\";import*as sharedStyle2 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle5 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle3 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle1 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/RUi3EWwrz/RUi3EWwrz.js\";const MenuNavFonts=getFonts(MenuNav);const VideoFonts=getFonts(Video);const ShowcaseVideosFonts=getFonts(ShowcaseVideos);const FeatherFonts=getFonts(Feather);const YouTubeFonts=getFonts(YouTube);const VimeoFonts=getFonts(Vimeo);const FullScreenShowcaseVideoFonts=getFonts(FullScreenShowcaseVideo);const FooterDarkCopyFonts=getFonts(FooterDarkCopy);const cycleOrder=[\"nmP7_h1_g\",\"j_LuEhpmL\",\"GHYKkJO9T\"];const breakpoints={GHYKkJO9T:\"(max-width: 809px)\",j_LuEhpmL:\"(min-width: 810px) and (max-width: 1199px)\",nmP7_h1_g:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2d917\";const variantClassNames={GHYKkJO9T:\"framer-v-1ual7uv\",j_LuEhpmL:\"framer-v-1tse03e\",nmP7_h1_g:\"framer-v-ygd7ak\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"nmP7_h1_g\",Phone:\"GHYKkJO9T\",Tablet:\"j_LuEhpmL\"};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:\"nmP7_h1_g\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-2d917`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-2d917`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const tap42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClickzn6atv=overlay=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"GHYKkJO9T\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"GHYKkJO9T\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"nmP7_h1_g\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ygd7ak\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fbzyfo-container\",children:/*#__PURE__*/_jsx(MenuNav,{height:\"100%\",id:\"sdsOHFC5Q\",layoutId:\"sdsOHFC5Q\",style:{width:\"100%\"},variant:\"XLMyE5m4z\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jjfzeg\",\"data-framer-name\":\"header\",name:\"header\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bwdyat-container hidden-ygd7ak hidden-1tse03e\",children:/*#__PURE__*/_jsx(MenuNav,{height:\"100%\",id:\"BrC0Vey8C\",layoutId:\"BrC0Vey8C\",style:{width:\"100%\"},variant:\"XLMyE5m4z\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w7suxb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"showcase\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hUIE1vZGVybiBIYW5kIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"HT Modern Hand Sans Medium\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fb77641f-76fa-495e-806d-c5fd177b846e, rgb(244, 229, 186))\"},children:\"showcase\"})}),className:\"framer-1k4xyk\",fonts:[\"CUSTOM;HT Modern Hand Sans Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"See where our work has taken us.\"})}),className:\"framer-1n7wnn8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kb9dnu-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"Y2itcFwRT\",isMixedBorderRadius:false,layoutId:\"Y2itcFwRT\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/ct2xGrCV9VbMZBaesDh5SvI255Q.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d39tx6\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-13t2bc0-container\",\"data-framer-name\":\"Sesame - Reignen\",id:\"13t2bc0\",name:\"Sesame - Reignen\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"jO5MsjpAk\",image:addImageAlt({src:\"https://framerusercontent.com/images/bU4LaEQr3SpJ1GeFdZeHuV8U.jpg\",srcSet:\"https://framerusercontent.com/images/bU4LaEQr3SpJ1GeFdZeHuV8U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bU4LaEQr3SpJ1GeFdZeHuV8U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bU4LaEQr3SpJ1GeFdZeHuV8U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bU4LaEQr3SpJ1GeFdZeHuV8U.jpg 4096w\"},\"\"),layoutId:\"jO5MsjpAk\",name:\"Sesame - Reignen\",style:{width:\"100%\"},tap:tap42m929(overlay),variant:\"OlB5XO7lU\",videoTitle:\"MEET REIGNEN\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1f4w3aj\",\"data-framer-portal-id\":\"13t2bc0\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"yNkZJTAkb\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j6wvl\",\"data-framer-portal-id\":\"13t2bc0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fk386b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"My Meet Reignen\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"My Whole Healthy Life: Meet Reignen\"})}),className:\"framer-g5mga4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xmieyc-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"nTjzsqGQY\",layoutId:\"nTjzsqGQY\",mirrored:false,onClick:onClickzn6atv(overlay),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zexk50-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"kV0592147\",isMixedBorderRadius:false,isRed:true,layoutId:\"kV0592147\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=6vE-eoVstGc&t=1s\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Created for Sesame Workshop.  A video about the different ways a Native American child and his family stay healthy.\"})}),className:\"framer-lw47a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.pursuitfilms.com/blog/my-whole-healthy-life\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1i1dmuu\",\"data-styles-preset\":\"B7MgUCPqA\",children:\"Read Case Study\"})})})}),className:\"framer-nfprwq hidden-1ual7uv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1q9xhrg-container\",\"data-framer-name\":\"Sesame - Wa.Sta.Tse\",id:\"1q9xhrg\",name:\"Sesame - Wa.Sta.Tse\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"B2jOibkeF\",image:addImageAlt({src:\"https://framerusercontent.com/images/q9Oejuq3NwrZL8aJ7UdXl9sTqw.jpg\",srcSet:\"https://framerusercontent.com/images/q9Oejuq3NwrZL8aJ7UdXl9sTqw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q9Oejuq3NwrZL8aJ7UdXl9sTqw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q9Oejuq3NwrZL8aJ7UdXl9sTqw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/q9Oejuq3NwrZL8aJ7UdXl9sTqw.jpg 3840w\"},\"\"),layoutId:\"B2jOibkeF\",name:\"Sesame - Wa.Sta.Tse\",style:{width:\"100%\"},tap:tap42m929(overlay1),variant:\"OlB5XO7lU\",videoTitle:\"MEET WA.STA.TSE\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-16ecg4x\",\"data-framer-portal-id\":\"1q9xhrg\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"bL6gOHQHI\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ccfl4n\",\"data-framer-portal-id\":\"1q9xhrg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1laqfhu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Meet Wa.Sta.Tse\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"My Whole Healthy Life: Meet Wa.Sta.Tse\\xa0\"})}),className:\"framer-15nfwjl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t9wbxu-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"FxVHlJGFN\",layoutId:\"FxVHlJGFN\",mirrored:false,onClick:onClickzn6atv(overlay1),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rxqnga-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"ydv2ysCRg\",layoutId:\"ydv2ysCRg\",loop:false,mute:false,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/822170796/3edfff4ee2?share=copy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Created for Sesame Workshop.  A video about the different ways a Native American child and his family stay healthy.\"})}),className:\"framer-1j0jcid\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.pursuitfilms.com/blog/my-whole-healthy-life\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1i1dmuu\",\"data-styles-preset\":\"B7MgUCPqA\",children:\"Read Case Study\"})})})}),className:\"framer-1ihonfo hidden-1ual7uv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h8e11v\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-yhjtri-container\",\"data-framer-name\":\"Reel\",id:\"yhjtri\",name:\"Reel\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"rwCBAHCsr\",videoTitle:\"PURSUIT FILMS REEL\"}},children:/*#__PURE__*/_jsx(FullScreenShowcaseVideo,{height:\"100%\",id:\"Pjx23m3JI\",layoutId:\"Pjx23m3JI\",name:\"Reel\",style:{height:\"100%\",width:\"100%\"},tap:tap42m929(overlay2),variant:\"MhB15o9WY\",videoTitle:\"pursuit films 2023 reel\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-76rg9h\",\"data-framer-portal-id\":\"yhjtri\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"EPwIH2sxk\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kdqfm3\",\"data-framer-portal-id\":\"yhjtri\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lgcmvp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"PURSUIT FILMS 2023 REEL\"})}),className:\"framer-1g5nml6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mt1pq1-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"OTpYd8CRp\",layoutId:\"OTpYd8CRp\",mirrored:false,onClick:onClickzn6atv(overlay2),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v3jk4n-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"J3yTnspAv\",layoutId:\"J3yTnspAv\",loop:true,mute:false,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/818868666?share=copy\",width:\"100%\"})})})]})]}),document.querySelector(\"#overlay\"))})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kugrif\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1fhppfy-container\",\"data-framer-name\":\"Totsu\",id:\"1fhppfy\",name:\"Totsu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"TOTSU\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"Ca1a77nT2\",image:addImageAlt({src:\"https://framerusercontent.com/images/jP4OFtievS12WCYZP8lSnsozCM.jpg\",srcSet:\"https://framerusercontent.com/images/jP4OFtievS12WCYZP8lSnsozCM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jP4OFtievS12WCYZP8lSnsozCM.jpg 800w\"},\"\"),layoutId:\"Ca1a77nT2\",name:\"Totsu\",style:{width:\"100%\"},tap:tap42m929(overlay3),variant:\"OlB5XO7lU\",videoTitle:\"totsu (redbird)\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-4muuds\",\"data-framer-portal-id\":\"1fhppfy\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"PLa96YcZ2\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uipt9o\",\"data-framer-portal-id\":\"1fhppfy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sxmg9m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"TOTSU (REDBIRD)\"})}),className:\"framer-1mkbocg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-teygf7-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"rWrkyX7v8\",layoutId:\"rWrkyX7v8\",mirrored:false,onClick:onClickzn6atv(overlay3),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16qk4wf-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"JUwNtdgby\",layoutId:\"JUwNtdgby\",loop:false,mute:false,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/482453740\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"An Indigenous woman must confront a mysterious predator in parallel worlds of colonial American and a dystopian future.\"})}),className:\"framer-5os9yz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OfSdHKUIw:\"totsu-(redbird)\"},unresolvedPathSlugs:{OfSdHKUIw:{collectionId:\"Lx3uJdVmg\",collectionItemId:\"OJxQypyYU\"}},webPageId:\"WCBnxqYBC\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1i1dmuu\",\"data-styles-preset\":\"B7MgUCPqA\",children:\"Read Case Study\"})})})}),className:\"framer-1fpkkt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-8pwq0k-container\",\"data-framer-name\":\"Own Your Power\",id:\"8pwq0k\",name:\"Own Your Power\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"OWN YOUR POWER\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"HOYORoX3t\",image:addImageAlt({src:\"https://framerusercontent.com/images/pt4XoDihHY6sHJZRhePxD6xR8.png\",srcSet:\"https://framerusercontent.com/images/pt4XoDihHY6sHJZRhePxD6xR8.png?scale-down-to=512 512w,https://framerusercontent.com/images/pt4XoDihHY6sHJZRhePxD6xR8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pt4XoDihHY6sHJZRhePxD6xR8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pt4XoDihHY6sHJZRhePxD6xR8.png 2558w\"},\"\"),layoutId:\"HOYORoX3t\",name:\"Own Your Power\",style:{width:\"100%\"},tap:tap42m929(overlay4),variant:\"OlB5XO7lU\",videoTitle:\"own your power\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1x6ehma\",\"data-framer-portal-id\":\"8pwq0k\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"Gt_YJGySD\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rl0ltd\",\"data-framer-portal-id\":\"8pwq0k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p4x3vu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"OWN YOUR POWER  campaign\"})}),className:\"framer-9wht3m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p47jpw-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"GtlkQSyq8\",layoutId:\"GtlkQSyq8\",mirrored:false,onClick:onClickzn6atv(overlay4),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bn5y1v-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"JBKy9Px7G\",layoutId:\"JBKy9Px7G\",loop:false,mute:false,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/758859649\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Created for the Oklahoma Department of Mental Health and Substance Abuse Services. A campaign addressing the mental health crisis teens are facing today in hopes of reducing vaping and marijuana use.\"})}),className:\"framer-1blt7t9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OfSdHKUIw:\"own-your-power\"},unresolvedPathSlugs:{OfSdHKUIw:{collectionId:\"Lx3uJdVmg\",collectionItemId:\"j8_8OIksq\"}},webPageId:\"WCBnxqYBC\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1i1dmuu\",\"data-styles-preset\":\"B7MgUCPqA\",children:\"Read Case Study\"})})})}),className:\"framer-89pxaa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1piqjst-container\",\"data-framer-name\":\"First Americans Museum\",id:\"1piqjst\",name:\"First Americans Museum\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"FAM\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"NCRYHfqKb\",image:addImageAlt({src:\"https://framerusercontent.com/images/fP2Z86KY8M4vVZNTUtURuIWX8.png\",srcSet:\"https://framerusercontent.com/images/fP2Z86KY8M4vVZNTUtURuIWX8.png?scale-down-to=512 512w,https://framerusercontent.com/images/fP2Z86KY8M4vVZNTUtURuIWX8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fP2Z86KY8M4vVZNTUtURuIWX8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fP2Z86KY8M4vVZNTUtURuIWX8.png 2276w\"},\"\"),layoutId:\"NCRYHfqKb\",name:\"First Americans Museum\",style:{width:\"100%\"},tap:tap42m929(overlay5),variant:\"OlB5XO7lU\",videoTitle:\"first americans museum\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-n1x5i0\",\"data-framer-portal-id\":\"1piqjst\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"mGQ0sylQo\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mkccm7\",\"data-framer-portal-id\":\"1piqjst\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14vftu3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"FIRST AMERICANS MUSEUM REEL\"})}),className:\"framer-1jjz1vw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ssv23l-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"VsASrcqnS\",layoutId:\"VsASrcqnS\",mirrored:false,onClick:onClickzn6atv(overlay5),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h0n6zf-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"z3EgPWRin\",layoutId:\"z3EgPWRin\",loop:false,mute:false,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/608507209/2c0cb91653\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(Link,{href:\"www.famok.org\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"First Americans Museum\"})}),\" shares the cultural diversity, history, and contributions of the First Americans.\"]})}),className:\"framer-1hi2lkd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay6=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1sd1yfc-container\",\"data-framer-name\":\"N7\",id:\"1sd1yfc\",name:\"N7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"NIKE N7\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"cgWBAoacT\",image:addImageAlt({src:\"https://framerusercontent.com/images/WJEYOFtB8cp8pzmZIn0fZn7Gqc.png\",srcSet:\"https://framerusercontent.com/images/WJEYOFtB8cp8pzmZIn0fZn7Gqc.png?scale-down-to=512 512w,https://framerusercontent.com/images/WJEYOFtB8cp8pzmZIn0fZn7Gqc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WJEYOFtB8cp8pzmZIn0fZn7Gqc.png 1920w\"},\"\"),layoutId:\"cgWBAoacT\",name:\"N7\",style:{width:\"100%\"},tap:tap42m929(overlay6),variant:\"OlB5XO7lU\",videoTitle:\"nike n7\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-ebckbp\",\"data-framer-portal-id\":\"1sd1yfc\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay6.hide()},\"CY4p1PMC2\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yrn777\",\"data-framer-portal-id\":\"1sd1yfc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nbpce6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"NIKE N7\"})}),className:\"framer-15a30c7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w04jbh-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"pdvVio8Ld\",layoutId:\"pdvVio8Ld\",mirrored:false,onClick:onClickzn6atv(overlay6),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vswgqw-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"VPPNbUvYK\",layoutId:\"VPPNbUvYK\",loop:false,mute:false,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/304185825\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Created for the Nike N7 campaign\"})}),className:\"framer-1072ufa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o2o5nh\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay7=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1a7yy4l-container\",id:\"1a7yy4l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"rwCBAHCsr\",videoTitle:\"BRONCHO\"}},children:/*#__PURE__*/_jsx(FullScreenShowcaseVideo,{height:\"100%\",id:\"ZJW__UnmY\",image:addImageAlt({src:\"https://framerusercontent.com/images/j36rGVVvlRUncQLBM7MIYuwprU.png\",srcSet:\"https://framerusercontent.com/images/j36rGVVvlRUncQLBM7MIYuwprU.png?scale-down-to=512 512w,https://framerusercontent.com/images/j36rGVVvlRUncQLBM7MIYuwprU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j36rGVVvlRUncQLBM7MIYuwprU.png 1918w\"},\"\"),layoutId:\"ZJW__UnmY\",style:{height:\"100%\",width:\"100%\"},tap:tap42m929(overlay7),variant:\"MhB15o9WY\",videoTitle:\"broncho\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay7.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1keuqgz\",\"data-framer-portal-id\":\"1a7yy4l\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay7.hide()},\"G93iGmwhu\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fz3fgp\",\"data-framer-portal-id\":\"1a7yy4l\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r7z3yn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"BRONCHO: ALL CHOKED UP\"})}),className:\"framer-1b4mgvk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b1vvoe-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"VkSrYF66b\",layoutId:\"VkSrYF66b\",mirrored:false,onClick:onClickzn6atv(overlay7),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gjzcvb-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"nRQcF0jDI\",layoutId:\"nRQcF0jDI\",loop:false,mute:false,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/300794950\",width:\"100%\"})})})]})]}),document.querySelector(\"#overlay\"))})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sg07fe\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay8=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-5i317y-container\",\"data-framer-name\":\"Girl Scout Murders\",id:\"5i317y\",name:\"Girl Scout Murders\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"GIRL SCOUT MURDERS\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"aeYsIO9cp\",image:addImageAlt({src:\"https://framerusercontent.com/images/9kUaWTM7NBUFKRezwTn2onB0A.png\",srcSet:\"https://framerusercontent.com/images/9kUaWTM7NBUFKRezwTn2onB0A.png?scale-down-to=512 512w,https://framerusercontent.com/images/9kUaWTM7NBUFKRezwTn2onB0A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9kUaWTM7NBUFKRezwTn2onB0A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9kUaWTM7NBUFKRezwTn2onB0A.png 3654w\"},\"\"),layoutId:\"aeYsIO9cp\",name:\"Girl Scout Murders\",style:{width:\"100%\"},tap:tap42m929(overlay8),variant:\"OlB5XO7lU\",videoTitle:\"girl scout murders\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay8.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1j74kox\",\"data-framer-portal-id\":\"5i317y\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay8.hide()},\"lpkzdTMH2\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7rz2ow\",\"data-framer-portal-id\":\"5i317y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bhpeot\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"THE GIRL SCOUT MURDERS - SIZZLE\"})}),className:\"framer-h16egy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-egd8tp-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"C89oTfkL3\",layoutId:\"C89oTfkL3\",mirrored:false,onClick:onClickzn6atv(overlay8),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s189rf-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"mC_kG0WqH\",layoutId:\"mC_kG0WqH\",loop:false,mute:false,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/655527611\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"A Tulsa author and teacher find new revelations that could open up the cold case of the three young Girl Scouts murdered in Oklahoma, 1977.\"})}),className:\"framer-qera3e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{OfSdHKUIw:\"the-girl-scout-murders\"},unresolvedPathSlugs:{OfSdHKUIw:{collectionId:\"Lx3uJdVmg\",collectionItemId:\"XXl2OOxPb\"}},webPageId:\"WCBnxqYBC\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1i1dmuu\",\"data-styles-preset\":\"B7MgUCPqA\",children:\"Read Case Study\"})})})}),className:\"framer-1t03lzc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay9=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-159e8tu-container\",\"data-framer-name\":\"For Our People\",id:\"159e8tu\",name:\"For Our People\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"FOR OUR PEOPLE\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"OIO6v16qn\",image:addImageAlt({src:\"https://framerusercontent.com/images/h6nvnE9VA1Tstf05Stn5uYBQNaU.png\",srcSet:\"https://framerusercontent.com/images/h6nvnE9VA1Tstf05Stn5uYBQNaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/h6nvnE9VA1Tstf05Stn5uYBQNaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h6nvnE9VA1Tstf05Stn5uYBQNaU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/h6nvnE9VA1Tstf05Stn5uYBQNaU.png 3456w\"},\"\"),layoutId:\"OIO6v16qn\",name:\"For Our People\",style:{width:\"100%\"},tap:tap42m929(overlay9),variant:\"OlB5XO7lU\",videoTitle:\"for our people\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay9.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1mr1lw7\",\"data-framer-portal-id\":\"159e8tu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay9.hide()},\"mV_ezsJHl\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aqmher\",\"data-framer-portal-id\":\"159e8tu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xteknc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"FOR OUR PEOPLE - KARUK\"})}),className:\"framer-1w31x5n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cobhxm-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"FjLqiYJi6\",layoutId:\"FjLqiYJi6\",mirrored:false,onClick:onClickzn6atv(overlay9),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ttgjx4-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"dU0kKA0xJ\",layoutId:\"dU0kKA0xJ\",loop:false,mute:false,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/698642143\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"An original docuseries produced for \",/*#__PURE__*/_jsx(Link,{href:\"www.tribalselfgov.org\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"www.tribalselfgov.org\"})}),\" that takes you on a journey across Indian Country showcasing stories that demonstrate the success and innovation of Tribal governments as they build healthy, sustainable, and prosperous Nations.\"]})}),className:\"framer-8xmsib\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay10=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1hpo0wp-container\",\"data-framer-name\":\"Experience Wanted\",id:\"1hpo0wp\",name:\"Experience Wanted\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"EXPERIENCE WANTED\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"t2A9M9iW5\",image:addImageAlt({src:\"https://framerusercontent.com/images/XVm2kbIOEl4oQRex0ZAh68cuP0.jpg\",srcSet:\"https://framerusercontent.com/images/XVm2kbIOEl4oQRex0ZAh68cuP0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XVm2kbIOEl4oQRex0ZAh68cuP0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XVm2kbIOEl4oQRex0ZAh68cuP0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XVm2kbIOEl4oQRex0ZAh68cuP0.jpg 3634w\"},\"\"),layoutId:\"t2A9M9iW5\",name:\"Experience Wanted\",style:{width:\"100%\"},tap:tap42m929(overlay10),variant:\"OlB5XO7lU\",videoTitle:\"okdhs: experience wanted\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay10.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1jtr27x\",\"data-framer-portal-id\":\"1hpo0wp\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay10.hide()},\"nz0BzBKDs\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pyyjez\",\"data-framer-portal-id\":\"1hpo0wp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-46kjkt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"EXPERIENCE WANTED, CAMPAIGN FOR OKDHS\"})}),className:\"framer-bgjo59\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4pv37e-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"x0upKMkRD\",layoutId:\"x0upKMkRD\",mirrored:false,onClick:onClickzn6atv(overlay10),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-38qy2g-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"DkiZaanuU\",layoutId:\"DkiZaanuU\",loop:false,mute:false,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/808747688\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"If you\u2019ve got experience with children\u2013at their best and their worst\u2013we\u2019ve got some who need your help.\",/*#__PURE__*/_jsx(\"br\",{}),\"Produced with \",/*#__PURE__*/_jsx(Link,{href:\"www.saxum.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"www.saxum.com\"})})]})}),className:\"framer-1bp6m4o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay11=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-14g5yr9-container\",\"data-framer-name\":\"Osiyo\",id:\"14g5yr9\",name:\"Osiyo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{image:addImageAlt({src:\"https://framerusercontent.com/images/wGhTYnwWs6fzv3fuPKIht3Yz394.png\",srcSet:\"https://framerusercontent.com/images/wGhTYnwWs6fzv3fuPKIht3Yz394.png?scale-down-to=512 512w,https://framerusercontent.com/images/wGhTYnwWs6fzv3fuPKIht3Yz394.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wGhTYnwWs6fzv3fuPKIht3Yz394.png 1988w\"},\"\"),variant:\"BTqSVnh2i\",videoTitle:\"OSIYO.TV\"},j_LuEhpmL:{image:addImageAlt({src:\"https://framerusercontent.com/images/HzfhcMtPSFPkiL5m4TSEI4tRCFQ.png\",srcSet:\"https://framerusercontent.com/images/HzfhcMtPSFPkiL5m4TSEI4tRCFQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/HzfhcMtPSFPkiL5m4TSEI4tRCFQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HzfhcMtPSFPkiL5m4TSEI4tRCFQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HzfhcMtPSFPkiL5m4TSEI4tRCFQ.png 2891w\"},\"\")}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"HYaBdMAxM\",image:addImageAlt({src:\"https://framerusercontent.com/images/uc25C6GkKKAIL42LE70JHtXeYU0.png\",srcSet:\"https://framerusercontent.com/images/uc25C6GkKKAIL42LE70JHtXeYU0.png?scale-down-to=512 512w,https://framerusercontent.com/images/uc25C6GkKKAIL42LE70JHtXeYU0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uc25C6GkKKAIL42LE70JHtXeYU0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uc25C6GkKKAIL42LE70JHtXeYU0.png 3424w\"},\"\"),layoutId:\"HYaBdMAxM\",name:\"Osiyo\",style:{width:\"100%\"},tap:tap42m929(overlay11),variant:\"OlB5XO7lU\",videoTitle:\"osiyo.tv\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay11.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-19ueimh\",\"data-framer-portal-id\":\"14g5yr9\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay11.hide()},\"gLd319ggR\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qwgn1v\",\"data-framer-portal-id\":\"14g5yr9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d1n7fc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Osiyo \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"OSIYO, VOICES OF THE CHEROKEE PEOPLE \"})}),className:\"framer-1mckmh3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-em4s7u-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"DdmjgWN6S\",layoutId:\"DdmjgWN6S\",mirrored:false,onClick:onClickzn6atv(overlay11),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6xx7m8-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"tjyjSjtCc\",isMixedBorderRadius:false,isRed:true,layoutId:\"tjyjSjtCc\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=PTMOHlIQ9Yw\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Osiyo, Voices of the Cherokee People\\xa0\"})}),/*#__PURE__*/_jsx(Link,{href:\"www.osiyo.tv\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"www.osiyo.tv\"})})}),/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})}),\"is a groundbreaking series inviting you to discover the rich traditions and compelling modern advancements of the Cherokee people told through a documentary lens.\"]})}),className:\"framer-7hy5v7 hidden-1ual7uv\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Osiyo, Voices of the Cherokee People\\xa0\"})}),\"is a groundbreaking series inviting you to discover the rich traditions and compelling modern advancements of the Cherokee people told through a documentary lens.\"]})}),className:\"framer-12sm9xn hidden-ygd7ak hidden-1tse03e\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1siixgd\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay12=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-923mxx-container\",id:\"923mxx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"rwCBAHCsr\",videoTitle:\"BRANJAE\"}},children:/*#__PURE__*/_jsx(FullScreenShowcaseVideo,{height:\"100%\",id:\"UFqCHE3XS\",image:addImageAlt({src:\"https://framerusercontent.com/images/bZS3Bq65AIfOiyvVoZuSC2klsc.jpg\",srcSet:\"https://framerusercontent.com/images/bZS3Bq65AIfOiyvVoZuSC2klsc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bZS3Bq65AIfOiyvVoZuSC2klsc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bZS3Bq65AIfOiyvVoZuSC2klsc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bZS3Bq65AIfOiyvVoZuSC2klsc.jpg 4096w\"},\"\"),layoutId:\"UFqCHE3XS\",style:{height:\"100%\",width:\"100%\"},tap:tap42m929(overlay12),variant:\"MhB15o9WY\",videoTitle:'Branjae \"everybody needs\"',width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay12.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1o7fxp2\",\"data-framer-portal-id\":\"923mxx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay12.hide()},\"aFYj2vnub\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15mjsfr\",\"data-framer-portal-id\":\"923mxx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m1fw7a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:'BRANJAE : \"EVERYBODY NEEDS\"'})}),className:\"framer-1pvxnwr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ge7j6n-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"M2KSHJZ4H\",layoutId:\"M2KSHJZ4H\",mirrored:false,onClick:onClickzn6atv(overlay12),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qmsxwm-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"Te_kOHW3J\",layoutId:\"Te_kOHW3J\",loop:false,mute:false,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/267836318?share=copy\",width:\"100%\"})})})]})]}),document.querySelector(\"#overlay\"))})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2i54g2\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay13=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1x9yfuv-container\",\"data-framer-name\":\"Cherokee Hog Fry\",id:\"1x9yfuv\",name:\"Cherokee Hog Fry\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{videoTitle:\"WOODY HAIR\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"vZem9cGue\",image:addImageAlt({src:\"https://framerusercontent.com/images/EqJJ3gftKUwQQlRDM0VK2Ub30ds.jpg\",srcSet:\"https://framerusercontent.com/images/EqJJ3gftKUwQQlRDM0VK2Ub30ds.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EqJJ3gftKUwQQlRDM0VK2Ub30ds.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EqJJ3gftKUwQQlRDM0VK2Ub30ds.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EqJJ3gftKUwQQlRDM0VK2Ub30ds.jpg 3348w\"},\"\"),layoutId:\"vZem9cGue\",name:\"Cherokee Hog Fry\",style:{width:\"100%\"},tap:tap42m929(overlay13),variant:\"BTqSVnh2i\",videoTitle:\"OSIYO.TV: WOODY HAIR\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay13.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-rifq1\",\"data-framer-portal-id\":\"1x9yfuv\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay13.hide()},\"ESpcmVFmP\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u2wkfi\",\"data-framer-portal-id\":\"1x9yfuv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nw99an\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"OSIYO.TV - Woody Hair\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"OSIYO.TV:  Cherokee Hog Fry Master Woody Hair\"})}),className:\"framer-1g3apz8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yqd8ap-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"NyzZWjxSL\",layoutId:\"NyzZWjxSL\",mirrored:false,onClick:onClickzn6atv(overlay13),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x3oz6v-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"ACJQ7qGbx\",isMixedBorderRadius:false,isRed:true,layoutId:\"ACJQ7qGbx\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=dKO2UrWwOSw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Born and raised in the Cherokee Nation, Woody Hair exemplifies all that it means to be Cherokee. A first language speaker and traditional hog fry chef, gatherings at Woody's place hold a special place in Cherokee culture. \",/*#__PURE__*/_jsx(Link,{href:\"www.osiyo.tv\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"www.oslyo.tv\"})})]})}),className:\"framer-832obd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay14=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1om3gt5-container\",\"data-framer-name\":\"Crosslin Smith\",id:\"1om3gt5\",name:\"Crosslin Smith\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"CROSSLIN SMITH\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"UxgbyA84l\",image:addImageAlt({src:\"https://framerusercontent.com/images/OSvdL7yo80SI7B6Qi0Xf7iLXwo.jpg\",srcSet:\"https://framerusercontent.com/images/OSvdL7yo80SI7B6Qi0Xf7iLXwo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OSvdL7yo80SI7B6Qi0Xf7iLXwo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OSvdL7yo80SI7B6Qi0Xf7iLXwo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OSvdL7yo80SI7B6Qi0Xf7iLXwo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/OSvdL7yo80SI7B6Qi0Xf7iLXwo.jpg 6720w\"},\"\"),layoutId:\"UxgbyA84l\",name:\"Crosslin Smith\",style:{width:\"100%\"},tap:tap42m929(overlay14),variant:\"OlB5XO7lU\",videoTitle:\"OSIYO.TV: CROSSLIN SMITH\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay14.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-bfx7i7\",\"data-framer-portal-id\":\"1om3gt5\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay14.hide()},\"uFRkFbigN\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zye8oq\",\"data-framer-portal-id\":\"1om3gt5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5fs69c\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"OSIYO.TV Crosslin Smith \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"OSIYO.TV: Crosslin Smith, The Old Ways\"})}),className:\"framer-14kzlij\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kgvzru-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"okyFQcYwz\",layoutId:\"okyFQcYwz\",mirrored:false,onClick:onClickzn6atv(overlay14),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebc9d8-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"OouAJxzzb\",isMixedBorderRadius:false,isRed:true,layoutId:\"OouAJxzzb\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=OkmwmPL8zk8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"He's a Cherokee traditionalist and a bearer of knowledge and culture. Amid a backdrop of the elements important to traditional medicine and ceremonies, Crosslin Smith tells us about \u201Cthe old ways\u201D and shares a part of his life's story.\"})}),className:\"framer-17u3g8g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay15=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-66qyar-container\",\"data-framer-name\":\"Fuel\",id:\"66qyar\",name:\"Fuel\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"BRAD EUBANKS\"},j_LuEhpmL:{videoTitle:\"OSIYO.TV: BRAD EUBANKS\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"hhZh1VDUQ\",image:addImageAlt({src:\"https://framerusercontent.com/images/c22NYrbAsLbaiAnLEXPXaYJVw.jpg\",srcSet:\"https://framerusercontent.com/images/c22NYrbAsLbaiAnLEXPXaYJVw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/c22NYrbAsLbaiAnLEXPXaYJVw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/c22NYrbAsLbaiAnLEXPXaYJVw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/c22NYrbAsLbaiAnLEXPXaYJVw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/c22NYrbAsLbaiAnLEXPXaYJVw.jpg 6720w\"},\"\"),layoutId:\"hhZh1VDUQ\",name:\"Fuel\",style:{width:\"100%\"},tap:tap42m929(overlay15),variant:\"OlB5XO7lU\",videoTitle:\"OSIYO.TV: THE MAN THEY CALL FUEL\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay15.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1qvlubi\",\"data-framer-portal-id\":\"66qyar\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay15.hide()},\"M1lodY5Ir\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-825w3a\",\"data-framer-portal-id\":\"66qyar\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c6t7vi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"OSIYO.TV - Brad Eubanks\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"OSIYO.TV: Brad Eubanks, The Man They Call Fuel\"})}),className:\"framer-1722n1s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-171pe1b-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"vcQmaTC3G\",layoutId:\"vcQmaTC3G\",mirrored:false,onClick:onClickzn6atv(overlay15),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q92n9y-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"pTQK6qYO8\",isMixedBorderRadius:false,isRed:true,layoutId:\"pTQK6qYO8\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/XbzrvnJPWMo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"He's a single father working a 9 to 5 job at the Cherokee Nation, but outside of work he dominates in the wrestling ring, and it's all for a good cause. Brad is a model employee, but \\\"Fuel\\\" is a wrestling superstar like you've never met.\"})}),className:\"framer-1dzg93c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay16=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-yhp1ue-container\",\"data-framer-name\":\"BIGFOOT\",id:\"yhp1ue\",name:\"BIGFOOT\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"BIGFOOT\"},j_LuEhpmL:{image:addImageAlt({src:\"https://framerusercontent.com/images/HzfhcMtPSFPkiL5m4TSEI4tRCFQ.png\",srcSet:\"https://framerusercontent.com/images/HzfhcMtPSFPkiL5m4TSEI4tRCFQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/HzfhcMtPSFPkiL5m4TSEI4tRCFQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HzfhcMtPSFPkiL5m4TSEI4tRCFQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HzfhcMtPSFPkiL5m4TSEI4tRCFQ.png 2891w\"},\"\")}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"btd4jAlt4\",image:addImageAlt({src:\"https://framerusercontent.com/images/sPWtEnci5n9UX4EnEki2chJjak.jpg\",srcSet:\"https://framerusercontent.com/images/sPWtEnci5n9UX4EnEki2chJjak.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sPWtEnci5n9UX4EnEki2chJjak.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sPWtEnci5n9UX4EnEki2chJjak.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sPWtEnci5n9UX4EnEki2chJjak.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/sPWtEnci5n9UX4EnEki2chJjak.jpg 6720w\"},\"\"),layoutId:\"btd4jAlt4\",name:\"BIGFOOT\",style:{width:\"100%\"},tap:tap42m929(overlay16),variant:\"OlB5XO7lU\",videoTitle:\"osiyo.tv: Bigfoot\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay16.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-m7ap4\",\"data-framer-portal-id\":\"yhp1ue\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay16.hide()},\"OG3I6twgw\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jiukac\",\"data-framer-portal-id\":\"yhp1ue\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13j9e7l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"OSIYO.TV - Bigfoot \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"OSIYO.TV:  The Cherokee Search for Bigfoot\"})}),className:\"framer-tg5stu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ufmm0j-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"Lwk82f3yN\",layoutId:\"Lwk82f3yN\",mirrored:false,onClick:onClickzn6atv(overlay16),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uzulwt-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"WPPXKxdyw\",isMixedBorderRadius:false,isRed:true,layoutId:\"WPPXKxdyw\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=dpETGbNKbzc\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join OsiyoTV as we journey deep into the hills of the Cherokee Nation in search of the elusive Bigfoot, a creature with roots in Cherokee folklore and legend.\"})}),className:\"framer-1sby0rz hidden-1ual7uv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Join OsiyoTV as we journey deep into the hills of the Cherokee Nation in search of the elusive Bigfoot, a creature with roots in Cherokee folklore and legend.\"]})}),className:\"framer-5155yf hidden-ygd7ak hidden-1tse03e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zlsllc\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay17=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-i11ihz-container\",id:\"i11ihz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"rwCBAHCsr\",videoTitle:\"KALYN FAY\"}},children:/*#__PURE__*/_jsx(FullScreenShowcaseVideo,{height:\"100%\",id:\"uViFkKcFE\",image:addImageAlt({src:\"https://framerusercontent.com/images/nxNnS36pIJlAd0P5AHfx2G6Zs8.jpg\",srcSet:\"https://framerusercontent.com/images/nxNnS36pIJlAd0P5AHfx2G6Zs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nxNnS36pIJlAd0P5AHfx2G6Zs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nxNnS36pIJlAd0P5AHfx2G6Zs8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nxNnS36pIJlAd0P5AHfx2G6Zs8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/nxNnS36pIJlAd0P5AHfx2G6Zs8.jpg 5386w\"},\"\"),layoutId:\"uViFkKcFE\",style:{height:\"100%\",width:\"100%\"},tap:tap42m929(overlay17),variant:\"MhB15o9WY\",videoTitle:'KALYN FAY \"COME AROUND\"',width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay17.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-14ro82i\",\"data-framer-portal-id\":\"i11ihz\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay17.hide()},\"QjZvAr6Lp\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3mzn6u\",\"data-framer-portal-id\":\"i11ihz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a0zepu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"KALYN FAY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:'KALYN FAY: \"COME AROUND\"'})}),className:\"framer-iymguh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jbnham-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"aKHzkod38\",layoutId:\"aKHzkod38\",mirrored:false,onClick:onClickzn6atv(overlay17),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a7961p-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"xo_YePdyI\",layoutId:\"xo_YePdyI\",loop:false,mute:false,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/320339787?share=copy\",width:\"100%\"})})})]})]}),document.querySelector(\"#overlay\"))})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oi3ma5\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay18=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1ed33hh-container\",\"data-framer-name\":\"Branjae Tramp\",id:\"1ed33hh\",name:\"Branjae Tramp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:'BRANJAE \"TRAMP\"'}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"W7AeniSjd\",image:addImageAlt({src:\"https://framerusercontent.com/images/4zdgM54TSA3gJO8pqPLXqvtwfg.png\",srcSet:\"https://framerusercontent.com/images/4zdgM54TSA3gJO8pqPLXqvtwfg.png?scale-down-to=512 512w,https://framerusercontent.com/images/4zdgM54TSA3gJO8pqPLXqvtwfg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4zdgM54TSA3gJO8pqPLXqvtwfg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4zdgM54TSA3gJO8pqPLXqvtwfg.png 2554w\"},\"\"),layoutId:\"W7AeniSjd\",name:\"Branjae Tramp\",style:{width:\"100%\"},tap:tap42m929(overlay18),variant:\"OlB5XO7lU\",videoTitle:'branjae \"tramp\"',width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay18.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-xqnyjc\",\"data-framer-portal-id\":\"1ed33hh\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay18.hide()},\"IJR1jWIfi\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wdz5ag\",\"data-framer-portal-id\":\"1ed33hh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14bcli5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:'BRANJAE:  \"Tramp\"'})}),className:\"framer-ldnlq2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mme84y-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"LyDegXngz\",layoutId:\"LyDegXngz\",mirrored:false,onClick:onClickzn6atv(overlay18),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12beeca-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"yHF8ra56w\",layoutId:\"yHF8ra56w\",loop:false,mute:false,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/521725882\",width:\"100%\"})})})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay19=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-93xp2z-container\",\"data-framer-name\":\"Your Whole Self\",id:\"93xp2z\",name:\"Your Whole Self\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:'\"YOUR WHOLE SELF\"'}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"FD1ehujPz\",image:addImageAlt({src:\"https://framerusercontent.com/images/oozIgzK3MQXwcBDLmTDkgtTl54M.jpg\",srcSet:\"https://framerusercontent.com/images/oozIgzK3MQXwcBDLmTDkgtTl54M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oozIgzK3MQXwcBDLmTDkgtTl54M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oozIgzK3MQXwcBDLmTDkgtTl54M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oozIgzK3MQXwcBDLmTDkgtTl54M.jpg 3592w\"},\"\"),layoutId:\"FD1ehujPz\",name:\"Your Whole Self\",style:{width:\"100%\"},tap:tap42m929(overlay19),variant:\"OlB5XO7lU\",videoTitle:'okdhs \"your whole self\"',width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay19.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-cbctwv\",\"data-framer-portal-id\":\"93xp2z\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay19.hide()},\"TlXow5M4c\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nzn0b9\",\"data-framer-portal-id\":\"93xp2z\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uy626v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:'OKDHS: \"Your Whole Self\" CAMPAIGN'})}),className:\"framer-ckcicy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yf1umn-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"Tf50FTywr\",layoutId:\"Tf50FTywr\",mirrored:false,onClick:onClickzn6atv(overlay19),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b2fd1b-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"B2upOBrLo\",layoutId:\"B2upOBrLo\",loop:false,mute:false,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/812456147\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Some jobs are worth putting your heart into.\"})}),className:\"framer-piaivg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay20=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-d7f7io-container\",\"data-framer-name\":\"Hogan Assessments\",id:\"d7f7io\",name:\"Hogan Assessments\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:\"HOGAN ASSESMENTS\"}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"iepZeGapB\",image:addImageAlt({src:\"https://framerusercontent.com/images/kzOLm7ZvqnrOwZmgX127bQ5Z8s.png\",srcSet:\"https://framerusercontent.com/images/kzOLm7ZvqnrOwZmgX127bQ5Z8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/kzOLm7ZvqnrOwZmgX127bQ5Z8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kzOLm7ZvqnrOwZmgX127bQ5Z8s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kzOLm7ZvqnrOwZmgX127bQ5Z8s.png 2584w\"},\"\"),layoutId:\"iepZeGapB\",name:\"Hogan Assessments\",style:{width:\"100%\"},tap:tap42m929(overlay20),variant:\"OlB5XO7lU\",videoTitle:\"hogan assessments\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay20.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1b9pt5j\",\"data-framer-portal-id\":\"d7f7io\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay20.hide()},\"i0R6SHVgl\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t5b2vw\",\"data-framer-portal-id\":\"d7f7io\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lia9b5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"HOGAN ASSESSMENTS\"})}),className:\"framer-14p8a7u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ln39u-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"K6Rl9_KPV\",layoutId:\"K6Rl9_KPV\",mirrored:false,onClick:onClickzn6atv(overlay20),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z4peiv-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"c_LaOPh0X\",isMixedBorderRadius:false,isRed:true,layoutId:\"c_LaOPh0X\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=6kgANugMgag\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:[\"The Incident \",/*#__PURE__*/_jsx(\"br\",{}),\"How Do You Derail?  \",/*#__PURE__*/_jsx(\"br\",{}),\"Created for Hogan Assesments. Employee training videos aimed to refresh training materials, incorporate diversity, and to entertain.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"The Incident - How Do You Derail?  \",/*#__PURE__*/_jsx(\"br\",{}),\"Created for Hogan Assesments. Employee training videos aimed to refresh training materials, incorporate diversity, and to entertain.\"]})}),className:\"framer-bzzmji\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay21=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1ui64wh-container\",\"data-framer-name\":\"Lifetime of Care\",id:\"1ui64wh\",name:\"Lifetime of Care\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"BTqSVnh2i\",videoTitle:'\"LIFETIME OF CARE\"'}},children:/*#__PURE__*/_jsx(ShowcaseVideos,{height:\"100%\",id:\"XJawppdel\",image:addImageAlt({src:\"https://framerusercontent.com/images/t7UhHbTckEnqT7IirSXltobvME.jpg\",srcSet:\"https://framerusercontent.com/images/t7UhHbTckEnqT7IirSXltobvME.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/t7UhHbTckEnqT7IirSXltobvME.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t7UhHbTckEnqT7IirSXltobvME.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/t7UhHbTckEnqT7IirSXltobvME.jpg 3614w\"},\"\"),layoutId:\"XJawppdel\",name:\"Lifetime of Care\",style:{width:\"100%\"},tap:tap42m929(overlay21),variant:\"OlB5XO7lU\",videoTitle:'okdhs \"lifetime of care\"',width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay21.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-7tgu93\",\"data-framer-portal-id\":\"1ui64wh\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay21.hide()},\"VqYXPg2Ph\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1enw790\",\"data-framer-portal-id\":\"1ui64wh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4jn1vw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:'OKDHS: \"Lifetime of Care\" CAMPAIGN'})}),className:\"framer-1wr0tv3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q3d85q-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"CwRbI2GYs\",layoutId:\"CwRbI2GYs\",mirrored:false,onClick:onClickzn6atv(overlay21),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k7256m-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"BUowLjHKS\",layoutId:\"BUowLjHKS\",loop:false,mute:false,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/808747504\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Being a foster parent is one of the toughest things you can do. But it\u2019s full of incredible joy, too.\"})}),className:\"framer-b8cnq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ijrorz\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay22=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1wkq4xp-container\",id:\"1wkq4xp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"rwCBAHCsr\",videoTitle:\"HEAD COUNTRY\"}},children:/*#__PURE__*/_jsx(FullScreenShowcaseVideo,{height:\"100%\",id:\"dndy9TAzh\",image:addImageAlt({src:\"https://framerusercontent.com/images/YBnlbEcanIqtCt7fIpdi99JBY4.png\",srcSet:\"https://framerusercontent.com/images/YBnlbEcanIqtCt7fIpdi99JBY4.png?scale-down-to=512 512w,https://framerusercontent.com/images/YBnlbEcanIqtCt7fIpdi99JBY4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YBnlbEcanIqtCt7fIpdi99JBY4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YBnlbEcanIqtCt7fIpdi99JBY4.png 2468w\"},\"\"),layoutId:\"dndy9TAzh\",style:{height:\"100%\",width:\"100%\"},tap:tap42m929(overlay22),variant:\"MhB15o9WY\",videoTitle:\"head country\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay22.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-fyy5m8\",\"data-framer-portal-id\":\"1wkq4xp\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay22.hide()},\"wKE1f1ptX\"),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vhxtc6\",\"data-framer-portal-id\":\"1wkq4xp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wgx5fq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"HEAD COUNTRY CAMPAIGN\"})}),className:\"framer-jv5sri\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-37zz7a-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-423ab0e0-8a0d-45f0-adf5-a6c76fa527d6, rgb(215, 40, 47))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"Ow2PUlDzK\",layoutId:\"Ow2PUlDzK\",mirrored:false,onClick:onClickzn6atv(overlay22),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wh50vw-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",controls:true,height:\"100%\",id:\"ApHx9MYF9\",layoutId:\"ApHx9MYF9\",loop:false,mute:false,playOnCanvas:false,style:{height:\"100%\",width:\"100%\"},titles:false,video:\"https://vimeo.com/721515146\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Created for Head Country BBQ. The \u201CFind Head Country\u201D campaign shows friends and families celebrating and enjoying life together, creating that sense of home through the shared experience of BBQ.\"})}),className:\"framer-1duby3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),document.querySelector(\"#overlay\"))})})]})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fxm9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GHYKkJO9T:{variant:\"j9wJLWydm\"},j_LuEhpmL:{variant:\"iIJY4h1Xt\"}},children:/*#__PURE__*/_jsx(FooterDarkCopy,{height:\"100%\",id:\"aRLqqDS4l\",layoutId:\"aRLqqDS4l\",style:{width:\"100%\"},variant:\"zHUzafNNu\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-2d917 { background: hsl(0, 0%, 0%); }`,\".framer-2d917.framer-oqb9vp, .framer-2d917 .framer-oqb9vp { display: block; }\",\".framer-2d917.framer-ygd7ak { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 7625px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-2d917 .framer-1fbzyfo-container, .framer-2d917 .framer-1bwdyat-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-2d917 .framer-1jjfzeg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 675px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-1w7suxb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 1px; }\",\".framer-2d917 .framer-1k4xyk, .framer-2d917 .framer-1n7wnn8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-2d917 .framer-kb9dnu-container { flex: none; height: 100%; left: 0px; opacity: 0.59; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-2d917 .framer-1d39tx6 { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 14%; justify-content: center; max-width: 125%; min-height: 14%; overflow: visible; padding: 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-2d917 .framer-13t2bc0-container, .framer-2d917 .framer-1q9xhrg-container, .framer-2d917 .framer-1fhppfy-container, .framer-2d917 .framer-8pwq0k-container, .framer-2d917 .framer-1piqjst-container, .framer-2d917 .framer-1sd1yfc-container, .framer-2d917 .framer-5i317y-container, .framer-2d917 .framer-159e8tu-container, .framer-2d917 .framer-1hpo0wp-container, .framer-2d917 .framer-14g5yr9-container, .framer-2d917 .framer-1x9yfuv-container, .framer-2d917 .framer-1om3gt5-container, .framer-2d917 .framer-66qyar-container, .framer-2d917 .framer-yhp1ue-container, .framer-2d917 .framer-1ed33hh-container, .framer-2d917 .framer-93xp2z-container, .framer-2d917 .framer-d7f7io-container, .framer-2d917 .framer-1ui64wh-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-2d917 .framer-1f4w3aj, .framer-2d917 .framer-16ecg4x, .framer-2d917 .framer-76rg9h, .framer-2d917 .framer-4muuds, .framer-2d917 .framer-1x6ehma, .framer-2d917 .framer-n1x5i0, .framer-2d917 .framer-ebckbp, .framer-2d917 .framer-1keuqgz, .framer-2d917 .framer-1j74kox, .framer-2d917 .framer-1mr1lw7, .framer-2d917 .framer-1jtr27x, .framer-2d917 .framer-19ueimh, .framer-2d917 .framer-1o7fxp2, .framer-2d917 .framer-rifq1, .framer-2d917 .framer-bfx7i7, .framer-2d917 .framer-1qvlubi, .framer-2d917 .framer-m7ap4, .framer-2d917 .framer-14ro82i, .framer-2d917 .framer-xqnyjc, .framer-2d917 .framer-cbctwv, .framer-2d917 .framer-1b9pt5j, .framer-2d917 .framer-7tgu93, .framer-2d917 .framer-fyy5m8 { background-color: #000000; inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-2d917 .framer-j6wvl, .framer-2d917 .framer-kdqfm3, .framer-2d917 .framer-uipt9o, .framer-2d917 .framer-mkccm7, .framer-2d917 .framer-1yrn777, .framer-2d917 .framer-fz3fgp, .framer-2d917 .framer-7rz2ow, .framer-2d917 .framer-pyyjez, .framer-2d917 .framer-15mjsfr, .framer-2d917 .framer-3mzn6u, .framer-2d917 .framer-1wdz5ag, .framer-2d917 .framer-1nzn0b9, .framer-2d917 .framer-1enw790 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 679px; justify-content: center; left: calc(49.916666666666686% - 949px / 2); overflow: hidden; padding: 0px; position: fixed; top: calc(52.87081339712921% - 679px / 2); width: 949px; z-index: 2; }\",\".framer-2d917 .framer-1fk386b, .framer-2d917 .framer-1sxmg9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 31px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-g5mga4, .framer-2d917 .framer-15nfwjl, .framer-2d917 .framer-1g5nml6, .framer-2d917 .framer-1mkbocg, .framer-2d917 .framer-9wht3m, .framer-2d917 .framer-1jjz1vw, .framer-2d917 .framer-15a30c7, .framer-2d917 .framer-1b4mgvk, .framer-2d917 .framer-h16egy, .framer-2d917 .framer-1w31x5n, .framer-2d917 .framer-bgjo59, .framer-2d917 .framer-1mckmh3, .framer-2d917 .framer-1pvxnwr, .framer-2d917 .framer-1g3apz8, .framer-2d917 .framer-14kzlij, .framer-2d917 .framer-1722n1s, .framer-2d917 .framer-tg5stu, .framer-2d917 .framer-iymguh, .framer-2d917 .framer-ldnlq2, .framer-2d917 .framer-ckcicy, .framer-2d917 .framer-14p8a7u, .framer-2d917 .framer-1wr0tv3, .framer-2d917 .framer-jv5sri { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2d917 .framer-xmieyc-container, .framer-2d917 .framer-t9wbxu-container, .framer-2d917 .framer-mt1pq1-container, .framer-2d917 .framer-teygf7-container, .framer-2d917 .framer-1p47jpw-container, .framer-2d917 .framer-1ssv23l-container, .framer-2d917 .framer-1w04jbh-container, .framer-2d917 .framer-b1vvoe-container, .framer-2d917 .framer-egd8tp-container, .framer-2d917 .framer-cobhxm-container, .framer-2d917 .framer-4pv37e-container, .framer-2d917 .framer-em4s7u-container, .framer-2d917 .framer-1ge7j6n-container, .framer-2d917 .framer-1yqd8ap-container, .framer-2d917 .framer-1kgvzru-container, .framer-2d917 .framer-171pe1b-container, .framer-2d917 .framer-ufmm0j-container, .framer-2d917 .framer-jbnham-container, .framer-2d917 .framer-mme84y-container, .framer-2d917 .framer-yf1umn-container, .framer-2d917 .framer-3ln39u-container, .framer-2d917 .framer-q3d85q-container, .framer-2d917 .framer-37zz7a-container { flex: none; height: 39px; position: relative; width: 39px; }\",\".framer-2d917 .framer-zexk50-container, .framer-2d917 .framer-6xx7m8-container, .framer-2d917 .framer-uzulwt-container { flex: none; height: 532px; position: relative; width: 946px; }\",\".framer-2d917 .framer-lw47a, .framer-2d917 .framer-nfprwq, .framer-2d917 .framer-1j0jcid, .framer-2d917 .framer-1ihonfo, .framer-2d917 .framer-5os9yz, .framer-2d917 .framer-1fpkkt, .framer-2d917 .framer-1blt7t9, .framer-2d917 .framer-89pxaa, .framer-2d917 .framer-1hi2lkd, .framer-2d917 .framer-1072ufa, .framer-2d917 .framer-qera3e, .framer-2d917 .framer-1t03lzc, .framer-2d917 .framer-1bp6m4o, .framer-2d917 .framer-7hy5v7, .framer-2d917 .framer-832obd, .framer-2d917 .framer-17u3g8g, .framer-2d917 .framer-1dzg93c, .framer-2d917 .framer-1sby0rz, .framer-2d917 .framer-piaivg, .framer-2d917 .framer-bzzmji, .framer-2d917 .framer-b8cnq, .framer-2d917 .framer-1duby3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2d917 .framer-1ccfl4n, .framer-2d917 .framer-1rl0ltd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 720px; justify-content: center; left: calc(49.916666666666686% - 949px / 2); overflow: hidden; padding: 0px; position: fixed; top: calc(50.00000000000002% - 720px / 2); width: 949px; z-index: 2; }\",\".framer-2d917 .framer-1laqfhu, .framer-2d917 .framer-1p4x3vu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 35px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-rxqnga-container, .framer-2d917 .framer-1v3jk4n-container, .framer-2d917 .framer-16qk4wf-container, .framer-2d917 .framer-bn5y1v-container, .framer-2d917 .framer-h0n6zf-container, .framer-2d917 .framer-vswgqw-container, .framer-2d917 .framer-gjzcvb-container, .framer-2d917 .framer-1s189rf-container, .framer-2d917 .framer-ttgjx4-container, .framer-2d917 .framer-38qy2g-container, .framer-2d917 .framer-qmsxwm-container, .framer-2d917 .framer-a7961p-container, .framer-2d917 .framer-12beeca-container, .framer-2d917 .framer-1wh50vw-container { flex: none; height: 534px; position: relative; width: 100%; }\",\".framer-2d917 .framer-1h8e11v, .framer-2d917 .framer-1o2o5nh, .framer-2d917 .framer-1siixgd, .framer-2d917 .framer-ijrorz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-yhjtri-container, .framer-2d917 .framer-1a7yy4l-container, .framer-2d917 .framer-923mxx-container, .framer-2d917 .framer-1wkq4xp-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-2d917 .framer-lgcmvp, .framer-2d917 .framer-nbpce6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 44px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-kugrif { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 14%; justify-content: center; max-width: 125%; min-height: 14%; overflow: visible; padding: 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-2d917 .framer-14vftu3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 26px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-1r7z3yn, .framer-2d917 .framer-46kjkt, .framer-2d917 .framer-d1n7fc, .framer-2d917 .framer-m1fw7a, .framer-2d917 .framer-1nw99an, .framer-2d917 .framer-5fs69c, .framer-2d917 .framer-1c6t7vi, .framer-2d917 .framer-13j9e7l, .framer-2d917 .framer-a0zepu, .framer-2d917 .framer-14bcli5, .framer-2d917 .framer-1uy626v, .framer-2d917 .framer-1lia9b5, .framer-2d917 .framer-4jn1vw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 83px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-sg07fe, .framer-2d917 .framer-2i54g2, .framer-2d917 .framer-1oi3ma5 { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 723px; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-2d917 .framer-1bhpeot { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 34px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-1aqmher { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 679px; justify-content: center; left: calc(49.916666666666686% - 949px / 2); overflow: hidden; padding: 0px; position: fixed; top: calc(52.87081339712921% - 679px / 2); width: 949px; z-index: 2; }\",\".framer-2d917 .framer-1xteknc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: 56px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-8xmsib { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-2d917 .framer-qwgn1v, .framer-2d917 .framer-1jiukac { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 706px; justify-content: center; left: calc(49.916666666666686% - 949px / 2); overflow: hidden; padding: 0px; position: fixed; top: calc(54.31415929203543% - 706px / 2); width: 949px; z-index: 2; }\",\".framer-2d917 .framer-12sm9xn, .framer-2d917 .framer-5155yf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 82%; word-break: break-word; word-wrap: break-word; }\",\".framer-2d917 .framer-1u2wkfi, .framer-2d917 .framer-zye8oq, .framer-2d917 .framer-825w3a, .framer-2d917 .framer-1t5b2vw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 761px; justify-content: center; left: calc(50.00000000000002% - 949px / 2); overflow: hidden; padding: 0px; position: fixed; top: calc(50.30864197530867% - 761px / 2); width: 949px; z-index: 2; }\",\".framer-2d917 .framer-1x3oz6v-container, .framer-2d917 .framer-ebc9d8-container, .framer-2d917 .framer-1q92n9y-container, .framer-2d917 .framer-z4peiv-container { flex: none; height: 576px; position: relative; width: 942px; }\",\".framer-2d917 .framer-zlsllc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-i11ihz-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-2d917 .framer-b2fd1b-container, .framer-2d917 .framer-1k7256m-container { flex: none; height: 531px; position: relative; width: 100%; }\",\".framer-2d917 .framer-vhxtc6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 696px; justify-content: center; left: calc(49.916666666666686% - 949px / 2); overflow: hidden; padding: 0px; position: fixed; top: calc(53.82775119617227% - 696px / 2); width: 949px; z-index: 2; }\",\".framer-2d917 .framer-1wgx5fq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 41px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2d917 .framer-1fxm9-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2d917.framer-ygd7ak, .framer-2d917 .framer-1jjfzeg, .framer-2d917 .framer-1w7suxb, .framer-2d917 .framer-j6wvl, .framer-2d917 .framer-1ccfl4n, .framer-2d917 .framer-1h8e11v, .framer-2d917 .framer-kdqfm3, .framer-2d917 .framer-uipt9o, .framer-2d917 .framer-1rl0ltd, .framer-2d917 .framer-mkccm7, .framer-2d917 .framer-1yrn777, .framer-2d917 .framer-1o2o5nh, .framer-2d917 .framer-fz3fgp, .framer-2d917 .framer-7rz2ow, .framer-2d917 .framer-1aqmher, .framer-2d917 .framer-pyyjez, .framer-2d917 .framer-qwgn1v, .framer-2d917 .framer-1siixgd, .framer-2d917 .framer-15mjsfr, .framer-2d917 .framer-1u2wkfi, .framer-2d917 .framer-zye8oq, .framer-2d917 .framer-825w3a, .framer-2d917 .framer-1jiukac, .framer-2d917 .framer-zlsllc, .framer-2d917 .framer-3mzn6u, .framer-2d917 .framer-1wdz5ag, .framer-2d917 .framer-1nzn0b9, .framer-2d917 .framer-1t5b2vw, .framer-2d917 .framer-1enw790, .framer-2d917 .framer-ijrorz, .framer-2d917 .framer-vhxtc6 { gap: 0px; } .framer-2d917.framer-ygd7ak > *, .framer-2d917 .framer-1aqmher > *, .framer-2d917 .framer-qwgn1v > *, .framer-2d917 .framer-1u2wkfi > *, .framer-2d917 .framer-zye8oq > *, .framer-2d917 .framer-825w3a > *, .framer-2d917 .framer-1jiukac > *, .framer-2d917 .framer-1t5b2vw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2d917.framer-ygd7ak > :first-child, .framer-2d917 .framer-1w7suxb > :first-child, .framer-2d917 .framer-j6wvl > :first-child, .framer-2d917 .framer-1ccfl4n > :first-child, .framer-2d917 .framer-kdqfm3 > :first-child, .framer-2d917 .framer-uipt9o > :first-child, .framer-2d917 .framer-1rl0ltd > :first-child, .framer-2d917 .framer-mkccm7 > :first-child, .framer-2d917 .framer-1yrn777 > :first-child, .framer-2d917 .framer-fz3fgp > :first-child, .framer-2d917 .framer-7rz2ow > :first-child, .framer-2d917 .framer-1aqmher > :first-child, .framer-2d917 .framer-pyyjez > :first-child, .framer-2d917 .framer-qwgn1v > :first-child, .framer-2d917 .framer-15mjsfr > :first-child, .framer-2d917 .framer-1u2wkfi > :first-child, .framer-2d917 .framer-zye8oq > :first-child, .framer-2d917 .framer-825w3a > :first-child, .framer-2d917 .framer-1jiukac > :first-child, .framer-2d917 .framer-zlsllc > :first-child, .framer-2d917 .framer-3mzn6u > :first-child, .framer-2d917 .framer-1wdz5ag > :first-child, .framer-2d917 .framer-1nzn0b9 > :first-child, .framer-2d917 .framer-1t5b2vw > :first-child, .framer-2d917 .framer-1enw790 > :first-child, .framer-2d917 .framer-vhxtc6 > :first-child { margin-top: 0px; } .framer-2d917.framer-ygd7ak > :last-child, .framer-2d917 .framer-1w7suxb > :last-child, .framer-2d917 .framer-j6wvl > :last-child, .framer-2d917 .framer-1ccfl4n > :last-child, .framer-2d917 .framer-kdqfm3 > :last-child, .framer-2d917 .framer-uipt9o > :last-child, .framer-2d917 .framer-1rl0ltd > :last-child, .framer-2d917 .framer-mkccm7 > :last-child, .framer-2d917 .framer-1yrn777 > :last-child, .framer-2d917 .framer-fz3fgp > :last-child, .framer-2d917 .framer-7rz2ow > :last-child, .framer-2d917 .framer-1aqmher > :last-child, .framer-2d917 .framer-pyyjez > :last-child, .framer-2d917 .framer-qwgn1v > :last-child, .framer-2d917 .framer-15mjsfr > :last-child, .framer-2d917 .framer-1u2wkfi > :last-child, .framer-2d917 .framer-zye8oq > :last-child, .framer-2d917 .framer-825w3a > :last-child, .framer-2d917 .framer-1jiukac > :last-child, .framer-2d917 .framer-zlsllc > :last-child, .framer-2d917 .framer-3mzn6u > :last-child, .framer-2d917 .framer-1wdz5ag > :last-child, .framer-2d917 .framer-1nzn0b9 > :last-child, .framer-2d917 .framer-1t5b2vw > :last-child, .framer-2d917 .framer-1enw790 > :last-child, .framer-2d917 .framer-vhxtc6 > :last-child { margin-bottom: 0px; } .framer-2d917 .framer-1jjfzeg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2d917 .framer-1jjfzeg > :first-child, .framer-2d917 .framer-1h8e11v > :first-child, .framer-2d917 .framer-1o2o5nh > :first-child, .framer-2d917 .framer-1siixgd > :first-child, .framer-2d917 .framer-ijrorz > :first-child { margin-left: 0px; } .framer-2d917 .framer-1jjfzeg > :last-child, .framer-2d917 .framer-1h8e11v > :last-child, .framer-2d917 .framer-1o2o5nh > :last-child, .framer-2d917 .framer-1siixgd > :last-child, .framer-2d917 .framer-ijrorz > :last-child { margin-right: 0px; } .framer-2d917 .framer-1w7suxb > *, .framer-2d917 .framer-j6wvl > *, .framer-2d917 .framer-1ccfl4n > *, .framer-2d917 .framer-kdqfm3 > *, .framer-2d917 .framer-uipt9o > *, .framer-2d917 .framer-1rl0ltd > *, .framer-2d917 .framer-mkccm7 > *, .framer-2d917 .framer-1yrn777 > *, .framer-2d917 .framer-fz3fgp > *, .framer-2d917 .framer-7rz2ow > *, .framer-2d917 .framer-pyyjez > *, .framer-2d917 .framer-15mjsfr > *, .framer-2d917 .framer-zlsllc > *, .framer-2d917 .framer-3mzn6u > *, .framer-2d917 .framer-1wdz5ag > *, .framer-2d917 .framer-1nzn0b9 > *, .framer-2d917 .framer-1enw790 > *, .framer-2d917 .framer-vhxtc6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2d917 .framer-1h8e11v > *, .framer-2d917 .framer-1o2o5nh > *, .framer-2d917 .framer-1siixgd > *, .framer-2d917 .framer-ijrorz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\"@media (min-width: 1200px) { .framer-2d917 .hidden-ygd7ak { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-2d917 .hidden-1tse03e { display: none !important; } .${metadata.bodyClassName}-framer-2d917 { background: hsl(0, 0%, 0%); } .framer-2d917.framer-ygd7ak { height: min-content; width: 810px; } .framer-2d917 .framer-1d39tx6 { height: 385px; } .framer-2d917 .framer-13t2bc0-container, .framer-2d917 .framer-1q9xhrg-container { height: 100%; } .framer-2d917 .framer-j6wvl, .framer-2d917 .framer-kdqfm3, .framer-2d917 .framer-uipt9o, .framer-2d917 .framer-mkccm7, .framer-2d917 .framer-1yrn777, .framer-2d917 .framer-fz3fgp, .framer-2d917 .framer-7rz2ow, .framer-2d917 .framer-1aqmher, .framer-2d917 .framer-pyyjez, .framer-2d917 .framer-15mjsfr, .framer-2d917 .framer-3mzn6u, .framer-2d917 .framer-1wdz5ag, .framer-2d917 .framer-1nzn0b9, .framer-2d917 .framer-1enw790 { left: calc(50.00000000000002% - 100% / 2); top: calc(52.84974093264251% - 679px / 2); width: 100%; } .framer-2d917 .framer-1fk386b, .framer-2d917 .framer-1laqfhu, .framer-2d917 .framer-lgcmvp, .framer-2d917 .framer-1sxmg9m, .framer-2d917 .framer-1p4x3vu, .framer-2d917 .framer-14vftu3, .framer-2d917 .framer-nbpce6, .framer-2d917 .framer-1r7z3yn, .framer-2d917 .framer-1bhpeot, .framer-2d917 .framer-1xteknc, .framer-2d917 .framer-46kjkt, .framer-2d917 .framer-m1fw7a, .framer-2d917 .framer-1nw99an, .framer-2d917 .framer-5fs69c, .framer-2d917 .framer-1c6t7vi, .framer-2d917 .framer-a0zepu, .framer-2d917 .framer-14bcli5, .framer-2d917 .framer-1uy626v, .framer-2d917 .framer-1lia9b5, .framer-2d917 .framer-4jn1vw, .framer-2d917 .framer-1wgx5fq { width: 80%; } .framer-2d917 .framer-zexk50-container { height: 433px; width: 723px; } .framer-2d917 .framer-lw47a, .framer-2d917 .framer-nfprwq, .framer-2d917 .framer-1j0jcid, .framer-2d917 .framer-1ihonfo, .framer-2d917 .framer-5os9yz, .framer-2d917 .framer-1fpkkt, .framer-2d917 .framer-1blt7t9, .framer-2d917 .framer-89pxaa, .framer-2d917 .framer-1hi2lkd, .framer-2d917 .framer-1072ufa, .framer-2d917 .framer-qera3e, .framer-2d917 .framer-1t03lzc, .framer-2d917 .framer-1bp6m4o, .framer-2d917 .framer-832obd, .framer-2d917 .framer-17u3g8g, .framer-2d917 .framer-1dzg93c, .framer-2d917 .framer-piaivg, .framer-2d917 .framer-bzzmji, .framer-2d917 .framer-b8cnq { width: 77%; } .framer-2d917 .framer-1ccfl4n, .framer-2d917 .framer-1rl0ltd { left: calc(50.00000000000002% - 100% / 2); top: calc(52.84974093264251% - 720px / 2); width: 100%; } .framer-2d917 .framer-rxqnga-container, .framer-2d917 .framer-1v3jk4n-container, .framer-2d917 .framer-16qk4wf-container, .framer-2d917 .framer-bn5y1v-container, .framer-2d917 .framer-h0n6zf-container, .framer-2d917 .framer-vswgqw-container, .framer-2d917 .framer-gjzcvb-container, .framer-2d917 .framer-1s189rf-container, .framer-2d917 .framer-ttgjx4-container, .framer-2d917 .framer-38qy2g-container, .framer-2d917 .framer-qmsxwm-container, .framer-2d917 .framer-a7961p-container, .framer-2d917 .framer-12beeca-container, .framer-2d917 .framer-b2fd1b-container, .framer-2d917 .framer-1k7256m-container, .framer-2d917 .framer-1wh50vw-container { height: 395px; width: 702px; } .framer-2d917 .framer-1h8e11v, .framer-2d917 .framer-1o2o5nh, .framer-2d917 .framer-1siixgd, .framer-2d917 .framer-zlsllc, .framer-2d917 .framer-ijrorz { height: 490px; } .framer-2d917 .framer-kugrif, .framer-2d917 .framer-sg07fe, .framer-2d917 .framer-2i54g2, .framer-2d917 .framer-1oi3ma5 { height: 787px; } .framer-2d917 .framer-qwgn1v, .framer-2d917 .framer-1jiukac { left: calc(50.00000000000002% - 100% / 2); top: calc(52.84974093264251% - 706px / 2); width: 100%; } .framer-2d917 .framer-d1n7fc, .framer-2d917 .framer-13j9e7l { order: 0; width: 80%; } .framer-2d917 .framer-6xx7m8-container, .framer-2d917 .framer-uzulwt-container { height: 452px; order: 1; width: 803px; } .framer-2d917 .framer-7hy5v7, .framer-2d917 .framer-1sby0rz { order: 2; width: 77%; } .framer-2d917 .framer-1u2wkfi, .framer-2d917 .framer-zye8oq, .framer-2d917 .framer-825w3a, .framer-2d917 .framer-1t5b2vw { left: calc(50.00000000000002% - 100% / 2); top: calc(52.84974093264251% - 761px / 2); width: 100%; } .framer-2d917 .framer-1x3oz6v-container, .framer-2d917 .framer-ebc9d8-container, .framer-2d917 .framer-1q92n9y-container, .framer-2d917 .framer-z4peiv-container { height: 391px; width: 639px; } .framer-2d917 .framer-vhxtc6 { left: calc(50.00000000000002% - 100% / 2); top: calc(52.84974093264251% - 696px / 2); width: 100%; } .framer-2d917 .framer-1duby3 { width: 85%; }}`,`@media (max-width: 809px) { .framer-2d917 .hidden-1ual7uv { display: none !important; } .${metadata.bodyClassName}-framer-2d917 { background: hsl(0, 0%, 0%); } .framer-2d917.framer-ygd7ak { height: min-content; width: 375px; } .framer-2d917 .framer-1fbzyfo-container { order: 15; } .framer-2d917 .framer-1jjfzeg { flex-direction: column; order: 0; } .framer-2d917 .framer-1w7suxb { height: 1px; width: 100%; } .framer-2d917 .framer-1n7wnn8 { width: 112%; } .framer-2d917 .framer-1d39tx6 { grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: auto; order: 1; padding: 25px; } .framer-2d917 .framer-13t2bc0-container, .framer-2d917 .framer-1q9xhrg-container { height: 100%; } .framer-2d917 .framer-j6wvl, .framer-2d917 .framer-kdqfm3, .framer-2d917 .framer-uipt9o, .framer-2d917 .framer-mkccm7, .framer-2d917 .framer-1yrn777, .framer-2d917 .framer-fz3fgp, .framer-2d917 .framer-7rz2ow, .framer-2d917 .framer-pyyjez, .framer-2d917 .framer-15mjsfr, .framer-2d917 .framer-3mzn6u, .framer-2d917 .framer-1wdz5ag, .framer-2d917 .framer-1nzn0b9, .framer-2d917 .framer-1enw790, .framer-2d917 .framer-vhxtc6 { gap: 24px; height: 538px; left: calc(49.86666666666669% - 100% / 2); padding: 0px 0px 50px 0px; top: calc(46.605744125326396% - 538px / 2); width: 100%; } .framer-2d917 .framer-1fk386b, .framer-2d917 .framer-lw47a, .framer-2d917 .framer-1laqfhu, .framer-2d917 .framer-1j0jcid, .framer-2d917 .framer-lgcmvp, .framer-2d917 .framer-1sxmg9m, .framer-2d917 .framer-5os9yz, .framer-2d917 .framer-1fpkkt, .framer-2d917 .framer-1p4x3vu, .framer-2d917 .framer-1blt7t9, .framer-2d917 .framer-89pxaa, .framer-2d917 .framer-14vftu3, .framer-2d917 .framer-1hi2lkd, .framer-2d917 .framer-nbpce6, .framer-2d917 .framer-1072ufa, .framer-2d917 .framer-1bhpeot, .framer-2d917 .framer-qera3e, .framer-2d917 .framer-1t03lzc, .framer-2d917 .framer-46kjkt, .framer-2d917 .framer-1bp6m4o, .framer-2d917 .framer-14bcli5, .framer-2d917 .framer-1uy626v, .framer-2d917 .framer-piaivg, .framer-2d917 .framer-1lia9b5, .framer-2d917 .framer-bzzmji, .framer-2d917 .framer-4jn1vw, .framer-2d917 .framer-b8cnq, .framer-2d917 .framer-1wgx5fq { width: 87%; } .framer-2d917 .framer-zexk50-container { height: 185px; width: 329px; } .framer-2d917 .framer-1ccfl4n, .framer-2d917 .framer-1rl0ltd { gap: 2px; height: 600px; left: 0px; padding: 0px 0px 50px 0px; top: calc(50.652741514360336% - 600px / 2); width: 100%; } .framer-2d917 .framer-rxqnga-container, .framer-2d917 .framer-1v3jk4n-container, .framer-2d917 .framer-16qk4wf-container, .framer-2d917 .framer-bn5y1v-container, .framer-2d917 .framer-h0n6zf-container, .framer-2d917 .framer-vswgqw-container, .framer-2d917 .framer-gjzcvb-container, .framer-2d917 .framer-1s189rf-container, .framer-2d917 .framer-38qy2g-container, .framer-2d917 .framer-qmsxwm-container, .framer-2d917 .framer-a7961p-container, .framer-2d917 .framer-12beeca-container, .framer-2d917 .framer-b2fd1b-container, .framer-2d917 .framer-1k7256m-container, .framer-2d917 .framer-1wh50vw-container { height: 182px; } .framer-2d917 .framer-1h8e11v { height: 292px; order: 2; } .framer-2d917 .framer-kugrif { grid-template-columns: repeat(1, minmax(200px, 1fr)); height: 1533px; order: 3; } .framer-2d917 .framer-1o2o5nh { height: 211px; order: 5; } .framer-2d917 .framer-1r7z3yn, .framer-2d917 .framer-m1fw7a, .framer-2d917 .framer-a0zepu { width: 90%; } .framer-2d917 .framer-sg07fe { grid-template-columns: repeat(1, minmax(200px, 1fr)); height: 1533px; order: 6; } .framer-2d917 .framer-1aqmher { height: 538px; left: calc(49.86666666666669% - 100% / 2); padding: 0px 0px 50px 0px; top: calc(46.605744125326396% - 538px / 2); width: 100%; } .framer-2d917 .framer-1xteknc { height: 37px; order: 1; width: 87%; } .framer-2d917 .framer-1w31x5n, .framer-2d917 .framer-1mckmh3, .framer-2d917 .framer-1g3apz8, .framer-2d917 .framer-14kzlij, .framer-2d917 .framer-1722n1s, .framer-2d917 .framer-tg5stu, .framer-2d917 .framer-1ed33hh-container { order: 0; } .framer-2d917 .framer-cobhxm-container, .framer-2d917 .framer-em4s7u-container, .framer-2d917 .framer-1yqd8ap-container, .framer-2d917 .framer-1kgvzru-container, .framer-2d917 .framer-171pe1b-container, .framer-2d917 .framer-ufmm0j-container, .framer-2d917 .framer-93xp2z-container { order: 1; } .framer-2d917 .framer-ttgjx4-container { height: 182px; order: 2; } .framer-2d917 .framer-8xmsib, .framer-2d917 .framer-12sm9xn, .framer-2d917 .framer-5155yf, .framer-2d917 .framer-1ui64wh-container { order: 3; } .framer-2d917 .framer-qwgn1v, .framer-2d917 .framer-1jiukac { gap: 24px; height: 606px; left: 0px; padding: 0px 0px 50px 0px; top: calc(51.04438642297653% - 606px / 2); width: 100%; } .framer-2d917 .framer-d1n7fc { height: 77px; order: 0; width: 87%; } .framer-2d917 .framer-6xx7m8-container, .framer-2d917 .framer-uzulwt-container { height: 182px; order: 1; width: 323px; } .framer-2d917 .framer-1siixgd { height: 211px; order: 7; } .framer-2d917 .framer-2i54g2 { grid-template-columns: repeat(1, minmax(200px, 1fr)); height: 1533px; order: 8; } .framer-2d917 .framer-1u2wkfi, .framer-2d917 .framer-zye8oq, .framer-2d917 .framer-825w3a { height: 618px; left: 0px; padding: 0px 0px 50px 0px; top: calc(51.445783132530146% - 618px / 2); width: 100%; } .framer-2d917 .framer-1nw99an, .framer-2d917 .framer-5fs69c, .framer-2d917 .framer-1c6t7vi { order: 0; width: 87%; } .framer-2d917 .framer-1x3oz6v-container, .framer-2d917 .framer-ebc9d8-container, .framer-2d917 .framer-1q92n9y-container { height: 193px; order: 3; width: 316px; } .framer-2d917 .framer-832obd, .framer-2d917 .framer-17u3g8g, .framer-2d917 .framer-1dzg93c { order: 4; width: 87%; } .framer-2d917 .framer-13j9e7l { height: 39px; order: 0; width: 87%; } .framer-2d917 .framer-zlsllc { height: 211px; order: 9; } .framer-2d917 .framer-1oi3ma5 { grid-template-columns: repeat(1, minmax(200px, 1fr)); height: 1533px; order: 10; } .framer-2d917 .framer-d7f7io-container { order: 2; } .framer-2d917 .framer-1t5b2vw { gap: 12px; height: 538px; left: calc(49.86666666666669% - 100% / 2); padding: 0px 0px 50px 0px; top: calc(46.605744125326396% - 538px / 2); width: 100%; } .framer-2d917 .framer-z4peiv-container { height: 193px; width: 316px; } .framer-2d917 .framer-ijrorz { gap: 24px; height: 211px; order: 11; } .framer-2d917 .framer-1duby3 { width: 80%; } .framer-2d917 .framer-1fxm9-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2d917 .framer-1jjfzeg, .framer-2d917 .framer-j6wvl, .framer-2d917 .framer-1ccfl4n, .framer-2d917 .framer-kdqfm3, .framer-2d917 .framer-uipt9o, .framer-2d917 .framer-1rl0ltd, .framer-2d917 .framer-mkccm7, .framer-2d917 .framer-1yrn777, .framer-2d917 .framer-fz3fgp, .framer-2d917 .framer-7rz2ow, .framer-2d917 .framer-pyyjez, .framer-2d917 .framer-qwgn1v, .framer-2d917 .framer-15mjsfr, .framer-2d917 .framer-1jiukac, .framer-2d917 .framer-3mzn6u, .framer-2d917 .framer-1wdz5ag, .framer-2d917 .framer-1nzn0b9, .framer-2d917 .framer-1t5b2vw, .framer-2d917 .framer-1enw790, .framer-2d917 .framer-ijrorz, .framer-2d917 .framer-vhxtc6 { gap: 0px; } .framer-2d917 .framer-1jjfzeg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2d917 .framer-1jjfzeg > :first-child, .framer-2d917 .framer-j6wvl > :first-child, .framer-2d917 .framer-1ccfl4n > :first-child, .framer-2d917 .framer-kdqfm3 > :first-child, .framer-2d917 .framer-uipt9o > :first-child, .framer-2d917 .framer-1rl0ltd > :first-child, .framer-2d917 .framer-mkccm7 > :first-child, .framer-2d917 .framer-1yrn777 > :first-child, .framer-2d917 .framer-fz3fgp > :first-child, .framer-2d917 .framer-7rz2ow > :first-child, .framer-2d917 .framer-pyyjez > :first-child, .framer-2d917 .framer-qwgn1v > :first-child, .framer-2d917 .framer-15mjsfr > :first-child, .framer-2d917 .framer-1jiukac > :first-child, .framer-2d917 .framer-3mzn6u > :first-child, .framer-2d917 .framer-1wdz5ag > :first-child, .framer-2d917 .framer-1nzn0b9 > :first-child, .framer-2d917 .framer-1t5b2vw > :first-child, .framer-2d917 .framer-1enw790 > :first-child, .framer-2d917 .framer-vhxtc6 > :first-child { margin-top: 0px; } .framer-2d917 .framer-1jjfzeg > :last-child, .framer-2d917 .framer-j6wvl > :last-child, .framer-2d917 .framer-1ccfl4n > :last-child, .framer-2d917 .framer-kdqfm3 > :last-child, .framer-2d917 .framer-uipt9o > :last-child, .framer-2d917 .framer-1rl0ltd > :last-child, .framer-2d917 .framer-mkccm7 > :last-child, .framer-2d917 .framer-1yrn777 > :last-child, .framer-2d917 .framer-fz3fgp > :last-child, .framer-2d917 .framer-7rz2ow > :last-child, .framer-2d917 .framer-pyyjez > :last-child, .framer-2d917 .framer-qwgn1v > :last-child, .framer-2d917 .framer-15mjsfr > :last-child, .framer-2d917 .framer-1jiukac > :last-child, .framer-2d917 .framer-3mzn6u > :last-child, .framer-2d917 .framer-1wdz5ag > :last-child, .framer-2d917 .framer-1nzn0b9 > :last-child, .framer-2d917 .framer-1t5b2vw > :last-child, .framer-2d917 .framer-1enw790 > :last-child, .framer-2d917 .framer-vhxtc6 > :last-child { margin-bottom: 0px; } .framer-2d917 .framer-j6wvl > *, .framer-2d917 .framer-kdqfm3 > *, .framer-2d917 .framer-uipt9o > *, .framer-2d917 .framer-mkccm7 > *, .framer-2d917 .framer-1yrn777 > *, .framer-2d917 .framer-fz3fgp > *, .framer-2d917 .framer-7rz2ow > *, .framer-2d917 .framer-pyyjez > *, .framer-2d917 .framer-qwgn1v > *, .framer-2d917 .framer-15mjsfr > *, .framer-2d917 .framer-1jiukac > *, .framer-2d917 .framer-3mzn6u > *, .framer-2d917 .framer-1wdz5ag > *, .framer-2d917 .framer-1nzn0b9 > *, .framer-2d917 .framer-1enw790 > *, .framer-2d917 .framer-vhxtc6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-2d917 .framer-1ccfl4n > *, .framer-2d917 .framer-1rl0ltd > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-2d917 .framer-1t5b2vw > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-2d917 .framer-ijrorz > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-2d917 .framer-ijrorz > :first-child { margin-left: 0px; } .framer-2d917 .framer-ijrorz > :last-child { margin-right: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7625\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"j_LuEhpmL\":{\"layout\":[\"fixed\",\"auto\"]},\"GHYKkJO9T\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerRUi3EWwrz=withCSS(Component,css,\"framer-2d917\");export default FramerRUi3EWwrz;FramerRUi3EWwrz.displayName=\"Showcase\";FramerRUi3EWwrz.defaultProps={height:7625,width:1200};addFonts(FramerRUi3EWwrz,[{explicitInter:true,fonts:[{family:\"HT Modern Hand Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/T1MhtZEk5isyNXlJO6g8KxNik8.ttf\"},{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{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://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]},...MenuNavFonts,...VideoFonts,...ShowcaseVideosFonts,...FeatherFonts,...YouTubeFonts,...VimeoFonts,...FullScreenShowcaseVideoFonts,...FooterDarkCopyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRUi3EWwrz\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j_LuEhpmL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GHYKkJO9T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7625\",\"framerIntrinsicWidth\":\"1200\"}},\"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", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "ECuMpVXIJ", "qDcQ6Fj5k", "JlXHpra9M", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap5nwm83", "args", "isDisplayed", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "Image2", "RichText2", "x", "css", "FramerkNXL7vmzI", "withCSS", "kNXL7vmzI_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "toResponsiveImage", "value", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "P6K4k1rIG", "HdkIDGG6g", "NZwHCt1Jw", "FI8zOV23i", "t95aGlJcv", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapo1u6di", "args", "onPlayxgiqqz", "onTaphq2wpb", "isDisplayed", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "Image2", "RichText2", "x", "css", "FramerXsMNwyNS4", "withCSS", "XsMNwyNS4_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "MenuNavFonts", "getFonts", "JKKZgVcIZ_default", "VideoFonts", "Video", "ShowcaseVideosFonts", "XsMNwyNS4_default", "FeatherFonts", "Icon", "YouTubeFonts", "Youtube", "VimeoFonts", "Vimeo_default", "FullScreenShowcaseVideoFonts", "kNXL7vmzI_default", "FooterDarkCopyFonts", "aMf0QUxWb_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap42m929", "overlay", "args", "onClickzn6atv", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "JKKZgVcIZ_default", "PropertyOverrides2", "x", "RichText2", "Video", "l", "XsMNwyNS4_default", "AnimatePresence", "Ga", "Icon", "Youtube", "Link", "overlay1", "Vimeo_default", "overlay2", "kNXL7vmzI_default", "overlay3", "overlay4", "overlay5", "overlay6", "overlay7", "overlay8", "overlay9", "overlay10", "overlay11", "overlay12", "overlay13", "overlay14", "overlay15", "overlay16", "overlay17", "overlay18", "overlay19", "overlay20", "overlay21", "overlay22", "aMf0QUxWb_default", "css", "FramerRUi3EWwrz", "withCSS", "RUi3EWwrz_default", "addFonts", "MenuNavFonts", "VideoFonts", "ShowcaseVideosFonts", "FeatherFonts", "YouTubeFonts", "VimeoFonts", "FullScreenShowcaseVideoFonts", "FooterDarkCopyFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
