{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://framerusercontent.com/modules/tJkoUmXmKH1c1R1iUERu/NGfUXeLj9KiAo56NvBNf/hSMUUl1_y.js", "ssg:https://framerusercontent.com/modules/5JmoFHAEaz1w7Xz8UX17/plD0rCZ9T8tCQgXlDBp9/NZQ_0Fwqz.js", "ssg:https://framerusercontent.com/modules/8MZxFFLm66WespfJ1zoZ/V9apAd1c1v9TNRIpWMk4/vcXBxLeBu.js", "ssg:https://framerusercontent.com/modules/cN6Jg1BKlMhqNeUkYAE2/lqqkKjgMawCCm9LnfzPJ/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/4ku9tSVTx4vryNkKYD4e/9bX6RrFPMzyG8w4MZJ0A/kZ5N_Xefb.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vXDF83rzEf3fKHWoXwZW/aIXOAypS9ZuZTZK8kQpw/vedXHUzQj.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={F2NFcnfVz:{hover:true}};const cycleOrder=[\"F2NFcnfVz\",\"f4_EhSlb6\"];const serializationHash=\"framer-8gDwS\";const variantClassNames={F2NFcnfVz:\"framer-v-1ix6q9f\",f4_EhSlb6:\"framer-v-l7pw88\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:50,delay:0,mass:1,stiffness:200,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dark Card\":\"F2NFcnfVz\",\"Light Card\":\"f4_EhSlb6\"};const getProps=({height,id,link,width,...props})=>{return{...props,iDi6OGApk:link??props.iDi6OGApk,variant:humanReadableVariantMap[props.variant]??props.variant??\"F2NFcnfVz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,iDi6OGApk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"F2NFcnfVz\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:iDi6OGApk,motionChild:true,nodeId:\"F2NFcnfVz\",openInNewTab:true,scopeId:\"hSMUUl1_y\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1ix6q9f\",className,classNames)} framer-n5vaya`,\"data-border\":true,\"data-framer-name\":\"Dark Card\",layoutDependency:layoutDependency,layoutId:\"F2NFcnfVz\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{\"F2NFcnfVz-hover\":{\"--border-color\":\"var(--token-427ec4a1-6126-417a-9822-7f4f7c9d8aff, rgb(254, 87, 51))\"},f4_EhSlb6:{\"--border-color\":\"var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"F2NFcnfVz-hover\":{\"data-framer-name\":undefined},f4_EhSlb6:{\"data-framer-name\":\"Light Card\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-180bjkl\",\"data-styles-preset\":\"kZ5N_Xefb\",children:\"Abonnez-vous\"})}),className:\"framer-ig3k36\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CEkShAG7J\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"F2NFcnfVz-hover\":{\"--extracted-1eung3n\":\"var(--token-427ec4a1-6126-417a-9822-7f4f7c9d8aff, rgb(254, 87, 51))\"},f4_EhSlb6:{\"--extracted-1eung3n\":\"var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"F2NFcnfVz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-180bjkl\",\"data-styles-preset\":\"kZ5N_Xefb\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-427ec4a1-6126-417a-9822-7f4f7c9d8aff, rgb(254, 87, 51)))\"},children:\"Abonnez-vous\"})})},f4_EhSlb6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-180bjkl\",\"data-styles-preset\":\"kZ5N_Xefb\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255)))\"},children:\"Abonne-toi\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",children:\"Recevez votre magazine hebdo.\"})}),className:\"framer-1irfv4f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iOsSadZcP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"F2NFcnfVz-hover\":{\"--extracted-r6o4lv\":\"var(--token-427ec4a1-6126-417a-9822-7f4f7c9d8aff, rgb(254, 87, 51))\"},f4_EhSlb6:{\"--extracted-r6o4lv\":\"var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"F2NFcnfVz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-427ec4a1-6126-417a-9822-7f4f7c9d8aff, rgb(254, 87, 51)))\"},children:\"Recevez votre magazine hebdo.\"})})},f4_EhSlb6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255)))\"},children:\"Manque pas LE magazine de r\\xe9f\\xe9rence\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nqe3es\",\"data-framer-name\":\"Arrow\",layoutDependency:layoutDependency,layoutId:\"pLkBYCFhl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ncc9o6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v1ykOgUly-container\",nodeId:\"v1ykOgUly\",rendersWithMotion:true,scopeId:\"hSMUUl1_y\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowDownRight\",id:\"v1ykOgUly\",layoutId:\"v1ykOgUly\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({\"F2NFcnfVz-hover\":{color:\"var(--token-427ec4a1-6126-417a-9822-7f4f7c9d8aff, rgb(254, 87, 51))\"},f4_EhSlb6:{color:\"var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e60r1u-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rOK1cTcQl-container\",nodeId:\"rOK1cTcQl\",rendersWithMotion:true,scopeId:\"hSMUUl1_y\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowDownRight\",id:\"rOK1cTcQl\",layoutId:\"rOK1cTcQl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({\"F2NFcnfVz-hover\":{color:\"var(--token-427ec4a1-6126-417a-9822-7f4f7c9d8aff, rgb(254, 87, 51))\"},f4_EhSlb6:{color:\"var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8gDwS.framer-n5vaya, .framer-8gDwS .framer-n5vaya { display: block; }\",\".framer-8gDwS.framer-1ix6q9f { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 160px; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; text-decoration: none; width: 333px; }\",\".framer-8gDwS .framer-ig3k36 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8gDwS .framer-1irfv4f { flex: none; height: auto; max-width: 190px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8gDwS .framer-1nqe3es { align-content: center; align-items: center; bottom: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 16px; width: 32px; z-index: 1; }\",\".framer-8gDwS .framer-ncc9o6-container { flex: none; height: 32px; left: -32px; position: absolute; top: -32px; width: 32px; z-index: 1; }\",\".framer-8gDwS .framer-e60r1u-container { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8gDwS.framer-1ix6q9f, .framer-8gDwS .framer-1nqe3es { gap: 0px; } .framer-8gDwS.framer-1ix6q9f > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-8gDwS.framer-1ix6q9f > :first-child { margin-top: 0px; } .framer-8gDwS.framer-1ix6q9f > :last-child { margin-bottom: 0px; } .framer-8gDwS .framer-1nqe3es > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8gDwS .framer-1nqe3es > :first-child { margin-left: 0px; } .framer-8gDwS .framer-1nqe3es > :last-child { margin-right: 0px; } }\",\".framer-8gDwS.framer-v-l7pw88.framer-1ix6q9f { cursor: unset; }\",\".framer-8gDwS.framer-v-1ix6q9f.hover .framer-ncc9o6-container { left: 0px; top: 0px; }\",\".framer-8gDwS.framer-v-1ix6q9f.hover .framer-e60r1u-container { bottom: -32px; left: unset; right: -32px; top: unset; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-8gDwS[data-border=\"true\"]::after, .framer-8gDwS [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 160\n * @framerIntrinsicWidth 333\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"f4_EhSlb6\":{\"layout\":[\"fixed\",\"fixed\"]},\"smeL6oXR7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"iDi6OGApk\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhSMUUl1_y=withCSS(Component,css,\"framer-8gDwS\");export default FramerhSMUUl1_y;FramerhSMUUl1_y.displayName=\"Cards / Contact Card\";FramerhSMUUl1_y.defaultProps={height:160,width:333};addPropertyControls(FramerhSMUUl1_y,{variant:{options:[\"F2NFcnfVz\",\"f4_EhSlb6\"],optionTitles:[\"Dark Card\",\"Light Card\"],title:\"Variant\",type:ControlType.Enum},iDi6OGApk:{title:\"Link\",type:ControlType.Link}});addFonts(FramerhSMUUl1_y,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhSMUUl1_y\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"160\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"iDi6OGApk\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"333\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f4_EhSlb6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"smeL6oXR7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hSMUUl1_y.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wlZAmfqrwVkmMBjXSuSB/NnOo4HqONL9aLv1bsdG4/cUbCndIyU.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vXDF83rzEf3fKHWoXwZW/aIXOAypS9ZuZTZK8kQpw/vedXHUzQj.js\";import SocialSocialIcon from\"https://framerusercontent.com/modules/dpKEXJwBXjSRmojWpWmn/CoyjOOdM0UxN7Mh1BxF0/gYbj18C7h.js\";import CardsContactCard from\"https://framerusercontent.com/modules/tJkoUmXmKH1c1R1iUERu/NGfUXeLj9KiAo56NvBNf/hSMUUl1_y.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const VideoFonts=getFonts(Video);const SocialSocialIconFonts=getFonts(SocialSocialIcon);const CardsContactCardFonts=getFonts(CardsContactCard);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const cycleOrder=[\"RgscGsLzL\",\"m7GoaPMKM\",\"Ec0b9B7rh\",\"fA0bmd5d5\",\"gFlvmb7CK\",\"svgMXq7Rh\",\"KDFHIzUk7\"];const serializationHash=\"framer-QWsYl\";const variantClassNames={Ec0b9B7rh:\"framer-v-1q72kcr\",fA0bmd5d5:\"framer-v-1883fir\",gFlvmb7CK:\"framer-v-tvhdyo\",KDFHIzUk7:\"framer-v-puyznb\",m7GoaPMKM:\"framer-v-5iy48o\",RgscGsLzL:\"framer-v-on364t\",svgMXq7Rh:\"framer-v-qoy9cb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const transition2={damping:50,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition3={damping:50,delay:1.3,mass:1,stiffness:200,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={damping:50,delay:.1,mass:1,stiffness:200,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:50,delay:1.1,mass:1,stiffness:200,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:50,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={damping:50,delay:.7,mass:1,stiffness:200,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:50,delay:.9,mass:1,stiffness:200,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={damping:50,delay:.5,mass:1,stiffness:200,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={damping:50,delay:.3,mass:1,stiffness:200,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Secondary\":\"m7GoaPMKM\",\"Phone - Secondary\":\"fA0bmd5d5\",\"Tablet - Secondary\":\"svgMXq7Rh\",\"Variant 7\":\"KDFHIzUk7\",Desktop:\"RgscGsLzL\",Phone:\"Ec0b9B7rh\",Tablet:\"gFlvmb7CK\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RgscGsLzL\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RgscGsLzL\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1gfeu89=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"m7GoaPMKM\"),1800);});const onAppearvdmsmi=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fA0bmd5d5\"),1800);});const onAppear1h4ri9j=activeVariantCallback(async(...args)=>{setVariant(\"svgMXq7Rh\");});useOnVariantChange(baseVariant,{default:onAppear1gfeu89,Ec0b9B7rh:onAppearvdmsmi,fA0bmd5d5:undefined,gFlvmb7CK:onAppear1h4ri9j,svgMXq7Rh:undefined});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"svgMXq7Rh\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"svgMXq7Rh\")return false;return true;};const isDisplayed2=()=>{if([\"Ec0b9B7rh\",\"fA0bmd5d5\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-on364t\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RgscGsLzL\",ref:refBinding,style:{backgroundColor:\"var(--token-427ec4a1-6126-417a-9822-7f4f7c9d8aff, rgb(254, 87, 51))\",...style},...addPropertyOverrides({Ec0b9B7rh:{\"data-framer-name\":\"Phone\"},fA0bmd5d5:{\"data-framer-name\":\"Phone - Secondary\",\"data-highlight\":undefined},gFlvmb7CK:{\"data-framer-name\":\"Tablet\"},KDFHIzUk7:{\"data-framer-name\":\"Variant 7\"},m7GoaPMKM:{\"data-framer-name\":\"Desktop - Secondary\"},svgMXq7Rh:{\"data-framer-name\":\"Tablet - Secondary\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ai48b8\",\"data-framer-name\":\"Slider\",layoutDependency:layoutDependency,layoutId:\"CyCbATTi7\",style:{backgroundColor:\"var(--token-1f6852e9-1497-4551-bef7-299f387d8f98, rgb(232, 229, 226))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p6tie1\",layoutDependency:layoutDependency,layoutId:\"uSEVREnG0\",children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1gslbdv\",\"data-framer-appear-id\":\"1gslbdv\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"nI_P1cgjc\",optimized:true,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"85.32648951068069px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"107px\"},children:\"ACP\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"107px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"107px\"},children:\"NATION\"})]})}),className:\"framer-6440p9\",fonts:[\"GF;Poppins-700\"],layoutDependency:layoutDependency,layoutId:\"ZDFouwoFN\",style:{\"--extracted-gdpscs\":\"var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-r7lt5b\",\"data-framer-appear-id\":\"r7lt5b\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"TQTZ903TY\",optimized:true,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"163.64494233072233px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255)))\"},children:\"ACPNATION\"})}),className:\"framer-gfec9l\",fonts:[\"GF;Poppins-700\"],layoutDependency:layoutDependency,layoutId:\"fva0JW7N2\",style:{\"--extracted-gdpscs\":\"var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fA0bmd5d5:{\"--extracted-gdpscs\":\"var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30))\"},KDFHIzUk7:{\"--extracted-gdpscs\":\"var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30))\"},m7GoaPMKM:{\"--extracted-gdpscs\":\"var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30))\"}},verticalAlignment:\"top\",viewBox:\"0 0 988 163\",withExternalLayout:true,...addPropertyOverrides({Ec0b9B7rh:{viewBox:\"0 0 988 164\"},fA0bmd5d5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"163.64494233072233px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30)))\"},children:\"ACPNATION\"})}),viewBox:\"0 0 988 164\"},gFlvmb7CK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"101px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255)))\"},children:[\"ACP\",/*#__PURE__*/_jsx(motion.br,{}),\"NATION\"]})}),viewBox:undefined},KDFHIzUk7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"163.64494233072233px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30)))\"},children:\"ACPNATION\"})}),viewBox:\"0 0 988 164\"},m7GoaPMKM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"163.64494233072233px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30)))\"},children:\"ACPNATION\"})}),viewBox:\"0 0 988 164\"}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,background:{alt:\"\",fit:\"fill\"},className:\"framer-16o7su1\",\"data-framer-appear-id\":\"16o7su1\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"DRbXw37JI\",optimized:true,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1apafyt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pk6XYq7Bd-container\",nodeId:\"pk6XYq7Bd\",rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:4,bottomLeftRadius:4,bottomRightRadius:4,controls:false,height:\"100%\",id:\"pk6XYq7Bd\",isMixedBorderRadius:false,layoutId:\"pk6XYq7Bd\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/u7Ebb66m0btvntzOWLG5yB507U4.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/43152/43152-720.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:4,topRightRadius:4,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1nb28os\",\"data-framer-appear-id\":\"1nb28os\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"A5JoR2Rfl\",optimized:true,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255)))\"},children:\"Aventure Chasse et P\\xeache est le m\\xe9dia incontournable pour les passionn\\xe9s de plein air. \\xc0 travers nos \\xe9missions, capsules et articles, nous partageons expertise, conseils pratiques et d\\xe9couvertes exclusives pour vous accompagner dans votre passion. \"})}),className:\"framer-9zdqzc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dkT6DwI86\",style:{\"--extracted-r6o4lv\":\"var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fA0bmd5d5:{\"--extracted-r6o4lv\":\"var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30))\"},KDFHIzUk7:{\"--extracted-r6o4lv\":\"rgb(30, 30, 30)\"},m7GoaPMKM:{\"--extracted-r6o4lv\":\"rgb(30, 30, 30)\"},svgMXq7Rh:{\"--extracted-r6o4lv\":\"var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Ec0b9B7rh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255)))\"},children:\"Aventure Chasse et P\\xeache est le m\\xe9dia incontournable pour les passionn\\xe9s de plein air. \\xc0 travers nos \\xe9missions, capsules et articles, nous partageons expertise, conseils pratiques et d\\xe9couvertes exclusives pour vous accompagner dans votre passion. \"})})},fA0bmd5d5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30)))\"},children:\"Aventure Chasse et P\\xeache est le m\\xe9dia incontournable pour les passionn\\xe9s de plein air. \\xc0 travers nos \\xe9missions, capsules et articles, nous partageons expertise, conseils pratiques et d\\xe9couvertes exclusives pour vous accompagner dans votre passion. \"})})},gFlvmb7CK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255)))\"},children:\"Notre nouveau site web est en cours de construction. Soyons honn\\xeates, il \\xe9tait grand temps de lui donner un petit coup de neuf!\"})})},KDFHIzUk7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(30, 30, 30))\"},children:\"Aventure Chasse et P\\xeache est le m\\xe9dia incontournable pour les passionn\\xe9s de plein air. \\xc0 travers nos \\xe9missions, capsules et articles, nous partageons expertise, conseils pratiques et d\\xe9couvertes exclusives pour vous accompagner dans votre passion. \"})})},m7GoaPMKM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(30, 30, 30))\"},children:\"Aventure Chasse et P\\xeache est le m\\xe9dia incontournable pour les passionn\\xe9s de plein air. \\xc0 travers nos \\xe9missions, capsules et articles, nous partageons expertise, conseils pratiques et d\\xe9couvertes exclusives pour vous accompagner dans votre passion. \"})})},svgMXq7Rh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7712de8b-cd5c-4040-8ffb-91f4bea9bb25, rgb(30, 30, 30)))\"},children:\"Notre nouveau site web est en cours de construction. Soyons honn\\xeates, il \\xe9tait grand temps de lui donner un petit coup de neuf!\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\"},className:\"framer-13x3e8y\",\"data-framer-appear-id\":\"13x3e8y\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"yKmv5xeYL\",optimized:true,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({Ec0b9B7rh:{animate:animation6},fA0bmd5d5:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qxeqmm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KUQEsufBj-container\",nodeId:\"KUQEsufBj\",rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:4,bottomLeftRadius:4,bottomRightRadius:4,controls:false,height:\"100%\",id:\"KUQEsufBj\",isMixedBorderRadius:false,layoutId:\"KUQEsufBj\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/4yM4CMm7x1zi98TZs0S2AjMEoRY.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/43150/43150-720.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:4,topRightRadius:4,volume:25,width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation7,background:{alt:\"\",fit:\"fill\"},className:\"framer-1wn3hhw\",\"data-framer-appear-id\":\"1wn3hhw\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"h4Ws4UF8Q\",optimized:true,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16jowkj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"A5FOi13HP-container\",nodeId:\"A5FOi13HP\",rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:4,bottomLeftRadius:4,bottomRightRadius:4,controls:false,height:\"100%\",id:\"A5FOi13HP\",isMixedBorderRadius:false,layoutId:\"A5FOi13HP\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/yU6YIBjRj3DPJOajJB7UtPTi9c.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/43159/43159-720.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:4,topRightRadius:4,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-a1yato\",\"data-framer-appear-id\":\"a1yato\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"FnkQ5Rliz\",optimized:true,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({fA0bmd5d5:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255)))\"},children:\"Ne rate rien d'Aventure Chasse et P\\xeache en t'abonnant \\xe0 nos r\\xe9seaux sociaux !\"})}),className:\"framer-1cuy2sm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"K3gkEKlv_\",style:{\"--extracted-r6o4lv\":\"var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fA0bmd5d5:{\"--extracted-r6o4lv\":\"rgb(30, 30, 30)\"},KDFHIzUk7:{\"--extracted-r6o4lv\":\"rgb(30, 30, 30)\"},m7GoaPMKM:{\"--extracted-r6o4lv\":\"rgb(30, 30, 30)\"},svgMXq7Rh:{\"--extracted-r6o4lv\":\"rgb(30, 30, 30)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Ec0b9B7rh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255)))\"},children:\"Ne rate rien d'Aventure Chasse et P\\xeache en t'abonnant \\xe0 nos r\\xe9seaux sociaux !\"})})},fA0bmd5d5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(30, 30, 30))\"},children:\"Ne rate rien d'Aventure Chasse et P\\xeache en t'abonnant \\xe0 nos r\\xe9seaux sociaux !\"})})},gFlvmb7CK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35c36f3c-8523-4623-83f9-76c6f492ff46, rgb(255, 255, 255)))\"},children:\"Ne rate rien d'Aventure Chasse et P\\xeache!\"})})},KDFHIzUk7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(30, 30, 30))\"},children:\"Ne rate rien d'Aventure Chasse et P\\xeache en t'abonnant \\xe0 nos r\\xe9seaux sociaux !\"})})},m7GoaPMKM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(30, 30, 30))\"},children:\"Ne rate rien d'Aventure Chasse et P\\xeache en t'abonnant \\xe0 nos r\\xe9seaux sociaux !\"})})},svgMXq7Rh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(30, 30, 30))\"},children:\"Ne rate rien d'Aventure Chasse et P\\xeache!\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18oqgsw\",layoutDependency:layoutDependency,layoutId:\"tmm0ccmJW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hhmnlc-container\",layoutDependency:layoutDependency,layoutId:\"gOWDXAagU-container\",nodeId:\"gOWDXAagU\",rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(SocialSocialIcon,{height:\"100%\",id:\"gOWDXAagU\",layoutId:\"gOWDXAagU\",NM7xI0GsK:\"InstagramLogo\",Pv5Rz7Tbb:\"https://www.instagram.com/aventurechassepeche/\",variant:\"Dt8iDoZf8\",width:\"100%\",...addPropertyOverrides({fA0bmd5d5:{variant:\"BOQHnUy6H\"},KDFHIzUk7:{variant:\"BOQHnUy6H\"},m7GoaPMKM:{variant:\"BOQHnUy6H\"},svgMXq7Rh:{variant:\"BOQHnUy6H\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qsdcoo-container\",layoutDependency:layoutDependency,layoutId:\"wwF87a1vK-container\",nodeId:\"wwF87a1vK\",rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(SocialSocialIcon,{height:\"100%\",id:\"wwF87a1vK\",layoutId:\"wwF87a1vK\",NM7xI0GsK:\"FacebookLogo\",Pv5Rz7Tbb:\"https://www.facebook.com/aventurechassepeche\",variant:\"Dt8iDoZf8\",width:\"100%\",...addPropertyOverrides({fA0bmd5d5:{variant:\"BOQHnUy6H\"},KDFHIzUk7:{variant:\"BOQHnUy6H\"},m7GoaPMKM:{variant:\"BOQHnUy6H\"},svgMXq7Rh:{variant:\"BOQHnUy6H\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jnvne6-container\",layoutDependency:layoutDependency,layoutId:\"u4Cr41TtI-container\",nodeId:\"u4Cr41TtI\",rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(SocialSocialIcon,{height:\"100%\",id:\"u4Cr41TtI\",layoutId:\"u4Cr41TtI\",NM7xI0GsK:\"YoutubeLogo\",Pv5Rz7Tbb:\"https://www.youtube.com/@acpnation\",variant:\"Dt8iDoZf8\",width:\"100%\",...addPropertyOverrides({fA0bmd5d5:{variant:\"BOQHnUy6H\"},KDFHIzUk7:{variant:\"BOQHnUy6H\"},m7GoaPMKM:{variant:\"BOQHnUy6H\"},svgMXq7Rh:{variant:\"BOQHnUy6H\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gq1is7-container\",layoutDependency:layoutDependency,layoutId:\"GiSIRVuyC-container\",nodeId:\"GiSIRVuyC\",rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(SocialSocialIcon,{height:\"100%\",id:\"GiSIRVuyC\",layoutId:\"GiSIRVuyC\",NM7xI0GsK:\"TiktokLogo\",Pv5Rz7Tbb:\"https://www.tiktok.com/@acpnation\",variant:\"Dt8iDoZf8\",width:\"100%\",...addPropertyOverrides({fA0bmd5d5:{variant:\"BOQHnUy6H\"},KDFHIzUk7:{variant:\"BOQHnUy6H\"},m7GoaPMKM:{variant:\"BOQHnUy6H\"},svgMXq7Rh:{variant:\"BOQHnUy6H\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pmo5sm-container\",layoutDependency:layoutDependency,layoutId:\"w9JW1zh7M-container\",nodeId:\"w9JW1zh7M\",rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(SocialSocialIcon,{height:\"100%\",id:\"w9JW1zh7M\",layoutId:\"w9JW1zh7M\",NM7xI0GsK:\"TwitterLogo\",Pv5Rz7Tbb:\"https://x.com/acpnation\",variant:\"Dt8iDoZf8\",width:\"100%\",...addPropertyOverrides({fA0bmd5d5:{variant:\"BOQHnUy6H\"},KDFHIzUk7:{variant:\"BOQHnUy6H\"},m7GoaPMKM:{variant:\"BOQHnUy6H\"},svgMXq7Rh:{variant:\"BOQHnUy6H\"}},baseVariant,gestureVariant)})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,background:{alt:\"\",fit:\"fill\"},className:\"framer-wh8akv\",\"data-framer-appear-id\":\"wh8akv\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"uDDaCb7hg\",optimized:true,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d1oaw1-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"oyCZFp1zn-container\",nodeId:\"oyCZFp1zn\",rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:4,bottomLeftRadius:4,bottomRightRadius:4,controls:false,height:\"100%\",id:\"oyCZFp1zn\",isMixedBorderRadius:false,layoutId:\"oyCZFp1zn\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/b5PCUMMfTkA1ywmu53V7twvAtB0.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/43165/43165-720.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:4,topRightRadius:4,volume:25,width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation9,background:{alt:\"\",fit:\"fill\"},className:\"framer-1pnz1dc\",\"data-framer-appear-id\":\"1pnz1dc\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"PkygxKDay\",optimized:true,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vgot1l-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wyGTdloUt-container\",nodeId:\"wyGTdloUt\",rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:4,bottomLeftRadius:4,bottomRightRadius:4,controls:false,height:\"100%\",id:\"wyGTdloUt\",isMixedBorderRadius:false,layoutId:\"wyGTdloUt\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/mbx99wJa2UBJeYpRsN94ycctJc.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/43162/43162-720.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:4,topRightRadius:4,volume:25,width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1560px) - 110px) / 4, 100px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||800)-0-800)/2)+100+420,...addPropertyOverrides({gFlvmb7CK:{height:220,y:(componentViewport?.y||0)+(0+((componentViewport?.height||800)-0-800)/2)+100+460},KDFHIzUk7:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-800)/2)+100+420}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation10,className:\"framer-wgkjxf-container\",\"data-framer-appear-id\":\"wgkjxf\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"OJz80QmBB-container\",nodeId:\"OJz80QmBB\",optimized:true,rendersWithMotion:true,scopeId:\"NZQ_0Fwqz\",children:/*#__PURE__*/_jsx(CardsContactCard,{height:\"100%\",id:\"OJz80QmBB\",iDi6OGApk:\"https://simplecirc.com/subscribe/aventure-chasse-peche\",layoutId:\"OJz80QmBB\",style:{height:\"100%\",width:\"100%\"},variant:\"f4_EhSlb6\",width:\"100%\",...addPropertyOverrides({KDFHIzUk7:{variant:\"F2NFcnfVz\"},m7GoaPMKM:{variant:\"F2NFcnfVz\"},svgMXq7Rh:{variant:\"F2NFcnfVz\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QWsYl.framer-1y11g34, .framer-QWsYl .framer-1y11g34 { display: block; }\",\".framer-QWsYl.framer-on364t { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-QWsYl .framer-ai48b8 { bottom: 0px; flex: none; left: -20px; overflow: hidden; position: absolute; top: 0px; width: 20px; z-index: 1; }\",\".framer-QWsYl .framer-p6tie1 { display: grid; flex: 1 0 0px; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(100px, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); height: 800px; justify-content: center; max-width: 1560px; overflow: hidden; padding: 100px 40px 80px 40px; position: relative; width: 1px; z-index: 2; }\",\".framer-QWsYl .framer-1gslbdv { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 3; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QWsYl .framer-6440p9, .framer-QWsYl .framer-1cuy2sm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QWsYl .framer-r7lt5b { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; grid-column: auto / span 3; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 0px 30px 0px 0px; position: relative; width: 100%; }\",\".framer-QWsYl .framer-gfec9l { flex: 1 0 0px; height: auto; position: relative; white-space: pre; width: 1px; }\",\".framer-QWsYl .framer-16o7su1, .framer-QWsYl .framer-13x3e8y, .framer-QWsYl .framer-1wn3hhw, .framer-QWsYl .framer-wh8akv, .framer-QWsYl .framer-1pnz1dc { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QWsYl .framer-1apafyt-container, .framer-QWsYl .framer-qxeqmm-container, .framer-QWsYl .framer-16jowkj-container, .framer-QWsYl .framer-1d1oaw1-container, .framer-QWsYl .framer-vgot1l-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-QWsYl .framer-1nb28os { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-column: auto / span 2; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QWsYl .framer-9zdqzc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-QWsYl .framer-a1yato { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QWsYl .framer-18oqgsw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QWsYl .framer-hhmnlc-container, .framer-QWsYl .framer-1qsdcoo-container, .framer-QWsYl .framer-jnvne6-container, .framer-QWsYl .framer-gq1is7-container, .framer-QWsYl .framer-1pmo5sm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-QWsYl .framer-wgkjxf-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QWsYl.framer-on364t, .framer-QWsYl .framer-1gslbdv, .framer-QWsYl .framer-r7lt5b, .framer-QWsYl .framer-16o7su1, .framer-QWsYl .framer-1nb28os, .framer-QWsYl .framer-13x3e8y, .framer-QWsYl .framer-1wn3hhw, .framer-QWsYl .framer-a1yato, .framer-QWsYl .framer-18oqgsw, .framer-QWsYl .framer-wh8akv, .framer-QWsYl .framer-1pnz1dc { gap: 0px; } .framer-QWsYl.framer-on364t > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QWsYl.framer-on364t > :first-child, .framer-QWsYl .framer-r7lt5b > :first-child, .framer-QWsYl .framer-16o7su1 > :first-child, .framer-QWsYl .framer-13x3e8y > :first-child, .framer-QWsYl .framer-1wn3hhw > :first-child, .framer-QWsYl .framer-18oqgsw > :first-child, .framer-QWsYl .framer-wh8akv > :first-child, .framer-QWsYl .framer-1pnz1dc > :first-child { margin-left: 0px; } .framer-QWsYl.framer-on364t > :last-child, .framer-QWsYl .framer-r7lt5b > :last-child, .framer-QWsYl .framer-16o7su1 > :last-child, .framer-QWsYl .framer-13x3e8y > :last-child, .framer-QWsYl .framer-1wn3hhw > :last-child, .framer-QWsYl .framer-18oqgsw > :last-child, .framer-QWsYl .framer-wh8akv > :last-child, .framer-QWsYl .framer-1pnz1dc > :last-child { margin-right: 0px; } .framer-QWsYl .framer-1gslbdv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QWsYl .framer-1gslbdv > :first-child, .framer-QWsYl .framer-1nb28os > :first-child, .framer-QWsYl .framer-a1yato > :first-child { margin-top: 0px; } .framer-QWsYl .framer-1gslbdv > :last-child, .framer-QWsYl .framer-1nb28os > :last-child, .framer-QWsYl .framer-a1yato > :last-child { margin-bottom: 0px; } .framer-QWsYl .framer-r7lt5b > *, .framer-QWsYl .framer-16o7su1 > *, .framer-QWsYl .framer-13x3e8y > *, .framer-QWsYl .framer-1wn3hhw > *, .framer-QWsYl .framer-18oqgsw > *, .framer-QWsYl .framer-wh8akv > *, .framer-QWsYl .framer-1pnz1dc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QWsYl .framer-1nb28os > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QWsYl .framer-a1yato > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-QWsYl.framer-v-5iy48o .framer-ai48b8, .framer-QWsYl.framer-v-1883fir .framer-ai48b8, .framer-QWsYl.framer-v-qoy9cb .framer-ai48b8, .framer-QWsYl.framer-v-puyznb .framer-ai48b8 { left: 0px; width: 100%; }\",\".framer-QWsYl.framer-v-5iy48o .framer-r7lt5b, .framer-QWsYl.framer-v-puyznb .framer-r7lt5b { height: min-content; }\",\".framer-QWsYl.framer-v-5iy48o .framer-1nb28os, .framer-QWsYl.framer-v-puyznb .framer-1nb28os { height: min-content; padding: 28px 0px 28px 0px; }\",\".framer-QWsYl.framer-v-5iy48o .framer-a1yato, .framer-QWsYl.framer-v-puyznb .framer-a1yato { gap: 98px; height: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QWsYl.framer-v-5iy48o .framer-a1yato { gap: 0px; } .framer-QWsYl.framer-v-5iy48o .framer-a1yato > * { margin: 0px; margin-bottom: calc(98px / 2); margin-top: calc(98px / 2); } .framer-QWsYl.framer-v-5iy48o .framer-a1yato > :first-child { margin-top: 0px; } .framer-QWsYl.framer-v-5iy48o .framer-a1yato > :last-child { margin-bottom: 0px; } }\",\".framer-QWsYl.framer-v-1q72kcr.framer-on364t, .framer-QWsYl.framer-v-1883fir.framer-on364t { width: 390px; }\",\".framer-QWsYl.framer-v-1q72kcr .framer-p6tie1, .framer-QWsYl.framer-v-1883fir .framer-p6tie1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 120px 20px 30px 20px; }\",\".framer-QWsYl.framer-v-1q72kcr .framer-r7lt5b, .framer-QWsYl.framer-v-1883fir .framer-r7lt5b { align-self: unset; height: min-content; padding: 0px; }\",\".framer-QWsYl.framer-v-1q72kcr .framer-1nb28os, .framer-QWsYl.framer-v-1883fir .framer-1nb28os { align-self: unset; gap: 20px; height: 200px; }\",\".framer-QWsYl.framer-v-1q72kcr .framer-9zdqzc, .framer-QWsYl.framer-v-1883fir .framer-9zdqzc { width: 100%; }\",\".framer-QWsYl.framer-v-1q72kcr .framer-13x3e8y, .framer-QWsYl.framer-v-1883fir .framer-13x3e8y { align-self: unset; height: 250px; }\",\".framer-QWsYl.framer-v-1q72kcr .framer-a1yato, .framer-QWsYl.framer-v-1883fir .framer-a1yato { align-self: unset; height: min-content; justify-content: center; }\",\".framer-QWsYl.framer-v-1q72kcr .framer-18oqgsw, .framer-QWsYl.framer-v-1883fir .framer-18oqgsw { justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QWsYl.framer-v-1q72kcr .framer-p6tie1, .framer-QWsYl.framer-v-1q72kcr .framer-1nb28os { gap: 0px; } .framer-QWsYl.framer-v-1q72kcr .framer-p6tie1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-QWsYl.framer-v-1q72kcr .framer-p6tie1 > :first-child, .framer-QWsYl.framer-v-1q72kcr .framer-1nb28os > :first-child { margin-top: 0px; } .framer-QWsYl.framer-v-1q72kcr .framer-p6tie1 > :last-child, .framer-QWsYl.framer-v-1q72kcr .framer-1nb28os > :last-child { margin-bottom: 0px; } .framer-QWsYl.framer-v-1q72kcr .framer-1nb28os > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QWsYl.framer-v-1883fir .framer-p6tie1, .framer-QWsYl.framer-v-1883fir .framer-1nb28os { gap: 0px; } .framer-QWsYl.framer-v-1883fir .framer-p6tie1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-QWsYl.framer-v-1883fir .framer-p6tie1 > :first-child, .framer-QWsYl.framer-v-1883fir .framer-1nb28os > :first-child { margin-top: 0px; } .framer-QWsYl.framer-v-1883fir .framer-p6tie1 > :last-child, .framer-QWsYl.framer-v-1883fir .framer-1nb28os > :last-child { margin-bottom: 0px; } .framer-QWsYl.framer-v-1883fir .framer-1nb28os > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-QWsYl.framer-v-tvhdyo.framer-on364t, .framer-QWsYl.framer-v-qoy9cb.framer-on364t { width: 810px; }\",\".framer-QWsYl.framer-v-tvhdyo .framer-p6tie1 { padding: 100px 40px 20px 40px; }\",\".framer-QWsYl.framer-v-tvhdyo .framer-r7lt5b { align-content: flex-start; align-items: flex-start; flex-direction: column; height: min-content; }\",\".framer-QWsYl.framer-v-tvhdyo .framer-gfec9l { flex: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QWsYl.framer-v-tvhdyo .framer-r7lt5b { gap: 0px; } .framer-QWsYl.framer-v-tvhdyo .framer-r7lt5b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QWsYl.framer-v-tvhdyo .framer-r7lt5b > :first-child { margin-top: 0px; } .framer-QWsYl.framer-v-tvhdyo .framer-r7lt5b > :last-child { margin-bottom: 0px; } }\",\".framer-QWsYl.framer-v-puyznb.framer-on364t { width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QWsYl.framer-v-puyznb .framer-a1yato { gap: 0px; } .framer-QWsYl.framer-v-puyznb .framer-a1yato > * { margin: 0px; margin-bottom: calc(98px / 2); margin-top: calc(98px / 2); } .framer-QWsYl.framer-v-puyznb .framer-a1yato > :first-child { margin-top: 0px; } .framer-QWsYl.framer-v-puyznb .framer-a1yato > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"m7GoaPMKM\":{\"layout\":[\"fixed\",\"auto\"]},\"Ec0b9B7rh\":{\"layout\":[\"fixed\",\"auto\"]},\"fA0bmd5d5\":{\"layout\":[\"fixed\",\"auto\"]},\"gFlvmb7CK\":{\"layout\":[\"fixed\",\"auto\"]},\"svgMXq7Rh\":{\"layout\":[\"fixed\",\"auto\"]},\"KDFHIzUk7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNZQ_0Fwqz=withCSS(Component,css,\"framer-QWsYl\");export default FramerNZQ_0Fwqz;FramerNZQ_0Fwqz.displayName=\"General / Hero Banner\";FramerNZQ_0Fwqz.defaultProps={height:800,width:1440};addPropertyControls(FramerNZQ_0Fwqz,{variant:{options:[\"RgscGsLzL\",\"m7GoaPMKM\",\"Ec0b9B7rh\",\"fA0bmd5d5\",\"gFlvmb7CK\",\"svgMXq7Rh\",\"KDFHIzUk7\"],optionTitles:[\"Desktop\",\"Desktop - Secondary\",\"Phone\",\"Phone - Secondary\",\"Tablet\",\"Tablet - Secondary\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNZQ_0Fwqz,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...SocialSocialIconFonts,...CardsContactCardFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNZQ_0Fwqz\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m7GoaPMKM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ec0b9B7rh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fA0bmd5d5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gFlvmb7CK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"svgMXq7Rh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KDFHIzUk7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NZQ_0Fwqz.map", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"jLAzrxneA\",\"PYrSS_k7t\",\"NWkbrX93a\",\"v1v6M14MF\"];const serializationHash=\"framer-vfKR1\";const variantClassNames={jLAzrxneA:\"framer-v-gdp0r3\",NWkbrX93a:\"framer-v-11ah67s\",PYrSS_k7t:\"framer-v-139km4g\",v1v6M14MF:\"framer-v-x2ji9w\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mountain Biking\":\"PYrSS_k7t\",\"Outdoor School\":\"v1v6M14MF\",Hiking:\"jLAzrxneA\",Running:\"NWkbrX93a\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"jLAzrxneA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jLAzrxneA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-gdp0r3\",className,classNames),\"data-framer-name\":\"Hiking\",layoutDependency:layoutDependency,layoutId:\"jLAzrxneA\",ref:ref??ref1,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({NWkbrX93a:{\"data-framer-name\":\"Running\"},PYrSS_k7t:{\"data-framer-name\":\"Mountain Biking\"},v1v6M14MF:{\"data-framer-name\":\"Outdoor School\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.5000000000000002-(componentViewport?.height||800)*1/2)),pixelHeight:2160,pixelWidth:1842,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg\",srcSet:\"https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg?scale-down-to=1024 873w,https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg?scale-down-to=2048 1746w,https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg 1842w\"},className:\"framer-v4vc92\",\"data-framer-name\":\"Hiking\",layoutDependency:layoutDependency,layoutId:\"ir6gbZQkh\",style:{opacity:1},variants:{NWkbrX93a:{opacity:0},PYrSS_k7t:{opacity:0},v1v6M14MF:{opacity:0}},...addPropertyOverrides({NWkbrX93a:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150),pixelHeight:2160,pixelWidth:1842,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg\",srcSet:\"https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg?scale-down-to=1024 873w,https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg?scale-down-to=2048 1746w,https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg 1842w\"}},PYrSS_k7t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150),pixelHeight:2160,pixelWidth:1842,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg\",srcSet:\"https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg?scale-down-to=1024 873w,https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg?scale-down-to=2048 1746w,https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg 1842w\"}},v1v6M14MF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150),pixelHeight:2160,pixelWidth:1842,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg\",srcSet:\"https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg?scale-down-to=1024 873w,https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg?scale-down-to=2048 1746w,https://framerusercontent.com/images/QdGDo0kgUZ7oYuyK6532fUoLG0.jpg 1842w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150),pixelHeight:2048,pixelWidth:1517,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OHR3GojM3m8ddlZdyf4MbO4vJc.jpg\",srcSet:\"https://framerusercontent.com/images/OHR3GojM3m8ddlZdyf4MbO4vJc.jpg?scale-down-to=1024 758w,https://framerusercontent.com/images/OHR3GojM3m8ddlZdyf4MbO4vJc.jpg 1517w\"},className:\"framer-3rjkfw\",\"data-framer-name\":\"Mountain Biking\",layoutDependency:layoutDependency,layoutId:\"BqEpyaHP_\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:0},variants:{PYrSS_k7t:{opacity:1}},...addPropertyOverrides({PYrSS_k7t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:2048,pixelWidth:1517,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OHR3GojM3m8ddlZdyf4MbO4vJc.jpg\",srcSet:\"https://framerusercontent.com/images/OHR3GojM3m8ddlZdyf4MbO4vJc.jpg?scale-down-to=1024 758w,https://framerusercontent.com/images/OHR3GojM3m8ddlZdyf4MbO4vJc.jpg 1517w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150),pixelHeight:2048,pixelWidth:1536,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/g6rPNGYLIm35JwLtsq9nJKHZUo.jpg\",srcSet:\"https://framerusercontent.com/images/g6rPNGYLIm35JwLtsq9nJKHZUo.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/g6rPNGYLIm35JwLtsq9nJKHZUo.jpg 1536w\"},className:\"framer-1j100h6\",\"data-framer-name\":\"Running\",layoutDependency:layoutDependency,layoutId:\"zbBvKSMxv\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:0},variants:{NWkbrX93a:{opacity:1}},...addPropertyOverrides({NWkbrX93a:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:2048,pixelWidth:1536,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/g6rPNGYLIm35JwLtsq9nJKHZUo.jpg\",srcSet:\"https://framerusercontent.com/images/g6rPNGYLIm35JwLtsq9nJKHZUo.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/g6rPNGYLIm35JwLtsq9nJKHZUo.jpg 1536w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+150),pixelHeight:2160,pixelWidth:3840,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ehsKbuGnbCDLd7teyE8T4rdQWGE.jpg\",srcSet:\"https://framerusercontent.com/images/ehsKbuGnbCDLd7teyE8T4rdQWGE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ehsKbuGnbCDLd7teyE8T4rdQWGE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ehsKbuGnbCDLd7teyE8T4rdQWGE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ehsKbuGnbCDLd7teyE8T4rdQWGE.jpg 3840w\"},className:\"framer-bpgdjg\",\"data-framer-name\":\"Outdoor School\",layoutDependency:layoutDependency,layoutId:\"JpUw8ffmV\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:0},variants:{v1v6M14MF:{opacity:1}},...addPropertyOverrides({v1v6M14MF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:2160,pixelWidth:3840,src:\"https://framerusercontent.com/images/ehsKbuGnbCDLd7teyE8T4rdQWGE.jpg\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vfKR1.framer-3t7ttk, .framer-vfKR1 .framer-3t7ttk { display: block; }\",\".framer-vfKR1.framer-gdp0r3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 640px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vfKR1 .framer-v4vc92 { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-vfKR1 .framer-3rjkfw, .framer-vfKR1 .framer-1j100h6, .framer-vfKR1 .framer-bpgdjg { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 150px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vfKR1.framer-gdp0r3 { gap: 0px; } .framer-vfKR1.framer-gdp0r3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vfKR1.framer-gdp0r3 > :first-child { margin-left: 0px; } .framer-vfKR1.framer-gdp0r3 > :last-child { margin-right: 0px; } }\",\".framer-vfKR1.framer-v-139km4g .framer-v4vc92, .framer-vfKR1.framer-v-11ah67s .framer-v4vc92, .framer-vfKR1.framer-v-x2ji9w .framer-v4vc92 { top: 150px; }\",\".framer-vfKR1.framer-v-139km4g .framer-3rjkfw, .framer-vfKR1.framer-v-11ah67s .framer-1j100h6, .framer-vfKR1.framer-v-x2ji9w .framer-bpgdjg { top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 640\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PYrSS_k7t\":{\"layout\":[\"fixed\",\"fixed\"]},\"NWkbrX93a\":{\"layout\":[\"fixed\",\"fixed\"]},\"v1v6M14MF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervcXBxLeBu=withCSS(Component,css,\"framer-vfKR1\");export default FramervcXBxLeBu;FramervcXBxLeBu.displayName=\"Current Program Slider\";FramervcXBxLeBu.defaultProps={height:800,width:640};addPropertyControls(FramervcXBxLeBu,{variant:{options:[\"jLAzrxneA\",\"PYrSS_k7t\",\"NWkbrX93a\",\"v1v6M14MF\"],optionTitles:[\"Hiking\",\"Mountain Biking\",\"Running\",\"Outdoor School\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervcXBxLeBu,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervcXBxLeBu\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"640\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PYrSS_k7t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NWkbrX93a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v1v6M14MF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vcXBxLeBu.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import Instagram from\"https://framerusercontent.com/modules/HGu8PKPDwAHu4uSgLoYR/8ScWawSL1gtbsgAxdHrd/Instagram.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import ButtonsButton from\"#framer/local/canvasComponent/CVcEQsW5n/CVcEQsW5n.js\";import FooterSection from\"#framer/local/canvasComponent/dRYWlqXgG/dRYWlqXgG.js\";import Navigation2 from\"#framer/local/canvasComponent/G5Swxcl5J/G5Swxcl5J.js\";import GeneralHeroBanner from\"#framer/local/canvasComponent/NZQ_0Fwqz/NZQ_0Fwqz.js\";import CurrentProgramSlider from\"#framer/local/canvasComponent/vcXBxLeBu/vcXBxLeBu.js\";import*as sharedStyle3 from\"#framer/local/css/cUbCndIyU/cUbCndIyU.js\";import*as sharedStyle2 from\"#framer/local/css/dHiwUZ76W/dHiwUZ76W.js\";import*as sharedStyle from\"#framer/local/css/eJBKK5MfO/eJBKK5MfO.js\";import*as sharedStyle1 from\"#framer/local/css/vedXHUzQj/vedXHUzQj.js\";import*as sharedStyle4 from\"#framer/local/css/ZsJwalBvf/ZsJwalBvf.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const Navigation2Fonts=getFonts(Navigation2);const ContainerWithFX=withFX(Container);const GeneralHeroBannerFonts=getFonts(GeneralHeroBanner);const SmoothScrollFonts=getFonts(SmoothScroll);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const ButtonsButtonFonts=getFonts(ButtonsButton);const CurrentProgramSliderFonts=getFonts(CurrentProgramSlider);const CurrentProgramSliderWithVariantAppearEffect=withVariantAppearEffect(CurrentProgramSlider);const InstagramFonts=getFonts(Instagram);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={AlBR9nLRL:\"(min-width: 810px) and (max-width: 1437px)\",gfrGo1hjM:\"(min-width: 1920px)\",rLxfYrlUg:\"(min-width: 1438px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px) and (max-width: 1919px)\",YjDaE4n9p:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-v6Zi6\";const variantClassNames={AlBR9nLRL:\"framer-v-1es2cp9\",gfrGo1hjM:\"framer-v-1vepkg3\",rLxfYrlUg:\"framer-v-1lld87g\",WQLkyLRf1:\"framer-v-72rtr7\",YjDaE4n9p:\"framer-v-1vrw3kt\"};const transition1={damping:35,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={damping:50,delay:.1,mass:1,stiffness:200,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition3={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop (Full)\":\"rLxfYrlUg\",Desktop:\"WQLkyLRf1\",Phone:\"YjDaE4n9p\",Tablet:\"AlBR9nLRL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"XQQRXZ0zW\");const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const elementId1=useRouteElementId(\"wQlH1lRdH\");const elementId2=useRouteElementId(\"GOn_2JOvR\");const elementId3=useRouteElementId(\"z84EbnkbU\");const elementId4=useRouteElementId(\"iTK1Q_xoB\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"YjDaE4n9p\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{height:108,width:componentViewport?.width||\"100vw\"},gfrGo1hjM:{height:108},YjDaE4n9p:{height:108,width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{transformTemplate:transformTemplate1},gfrGo1hjM:{transformTemplate:transformTemplate1},YjDaE4n9p:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s10m7t-container\",layoutScroll:true,nodeId:\"upri1x4Jm\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{style:{width:\"100%\"},variant:\"NVn_T8wSW\"},gfrGo1hjM:{style:{width:\"100%\"},variant:\"EtQUZ43FR\"},rLxfYrlUg:{variant:\"EtQUZ43FR\"},YjDaE4n9p:{style:{width:\"100%\"},variant:\"AzfFjkqOJ\"}},children:/*#__PURE__*/_jsx(Navigation2,{height:\"100%\",id:\"upri1x4Jm\",layoutId:\"upri1x4Jm\",style:{height:\"100%\",width:\"100%\"},variant:\"T3XIkAeOe\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-hcnzsw\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{height:992.5926},gfrGo1hjM:{height:1099.4832},rLxfYrlUg:{height:1071.0594},YjDaE4n9p:{height:800,y:(componentViewport?.y||0)+41+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1089.1473,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-njeljx-container\",id:elementId,nodeId:\"XQQRXZ0zW\",ref:ref1,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{variant:\"gFlvmb7CK\"},YjDaE4n9p:{style:{width:\"100%\"},variant:\"Ec0b9B7rh\"}},children:/*#__PURE__*/_jsx(GeneralHeroBanner,{height:\"100%\",id:\"XQQRXZ0zW\",layoutId:\"XQQRXZ0zW\",style:{height:\"100%\",width:\"100%\"},variant:\"RgscGsLzL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10zi0er-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QIatBy6P1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"QIatBy6P1\",intensity:15,layoutId:\"QIatBy6P1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yr8hyg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uwGDFiefe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"uwGDFiefe\",layoutId:\"uwGDFiefe\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-151lrp6\",\"data-framer-name\":\"Banner Site En Construction\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-drhlul\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-m36wqo\",\"data-styles-preset\":\"eJBKK5MfO\",style:{\"--framer-text-alignment\":\"center\"},children:\"Le site complet est en d\\xe9veloppement.\"})}),className:\"framer-1kr9i86\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hm9vdy\",\"data-framer-name\":\"Phone application\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p1sy9r\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-alignment\":\"center\"},children:\"Notre Fameux Magazine\"})})},YjDaE4n9p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-alignment\":\"center\"},children:\"Notre Fameux Magazine\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",children:\"Notre Fameux Magazine\"})}),className:\"framer-1emcue\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",style:{\"--framer-text-alignment\":\"center\"},children:\"Le Magazine\"})})},rLxfYrlUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",children:\"Le Magazine\"})})},YjDaE4n9p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",style:{\"--framer-text-alignment\":\"center\"},children:\"Le Magazine\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",children:\"Le Magazine\"})}),className:\"framer-u86k78\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xsghi5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-alignment\":\"center\"},children:\"Aventure Chasse P\\xeache est le fameux magazine incontournable pour tous les passionn\\xe9s de chasse, p\\xeache et aventures en plein air. D\\xe9couvrez des chroniques captivantes, des astuces d'experts, et des produits innovants pour enrichir vos escapades. Procurez-vous votre exemplaire d\\xe8s aujourd'hui et plongez dans l'Aventure Chasse P\\xeache!\"})})},YjDaE4n9p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-alignment\":\"center\"},children:\"Aventure Chasse P\\xeache est le fameux magazine incontournable pour tous les passionn\\xe9s de chasse, p\\xeache et aventures en plein air. D\\xe9couvrez des chroniques captivantes, des astuces d'experts, et des produits innovants pour enrichir vos escapades. Procurez-vous votre exemplaire d\\xe8s aujourd'hui et plongez dans l'Aventure Chasse P\\xeache!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:\"Aventure Chasse P\\xeache est le fameux magazine incontournable pour tous les passionn\\xe9s de chasse, p\\xeache et aventures en plein air. D\\xe9couvrez des chroniques captivantes, des astuces d'experts, et des produits innovants pour enrichir vos escapades. Procurez-vous votre exemplaire d\\xe8s aujourd'hui et plongez dans l'Aventure Chasse P\\xeache!\"})}),className:\"framer-14po9kc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nhpm5n\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{y:(componentViewport?.y||0)+0+0+0+1255.5926+80+0+0+482+0},gfrGo1hjM:{y:(componentViewport?.y||0)+0+0+0+1362.4832+101.5+0+482+0},rLxfYrlUg:{y:(componentViewport?.y||0)+0+0+0+1334.0594+101.5+0+482+0},YjDaE4n9p:{y:(componentViewport?.y||0)+41+0+0+1063+80+0+0+482+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+0+0+0+1352.1473+108.5+0+482+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uo3qw6-container\",nodeId:\"pGT2IhrIG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonsButton,{height:\"100%\",id:\"pGT2IhrIG\",layoutId:\"pGT2IhrIG\",nK5G4IhyV:\"Abonnez-vous\",R9_LCDCpO:true,v73gZy5u6:\"https://simplecirc.com/subscribe/aventure-chasse-peche\",variant:\"GIjoI57rF\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1255.5926+80+623),pixelHeight:2262,pixelWidth:2579,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px)`,src:\"https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png\",srcSet:\"https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=512 512w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png 2579w\"}},gfrGo1hjM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1362.4832+38),pixelHeight:2262,pixelWidth:2579,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px)`,src:\"https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png\",srcSet:\"https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=512 512w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png 2579w\"}},rLxfYrlUg:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1334.0594+38),pixelHeight:2262,pixelWidth:2579,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px)`,src:\"https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png\",srcSet:\"https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=512 512w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png 2579w\"}},YjDaE4n9p:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+41+0+0+1063+80+623),pixelHeight:2262,pixelWidth:2579,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,src:\"https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png\",srcSet:\"https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=512 512w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png 2579w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1352.1473+45),pixelHeight:2262,pixelWidth:2579,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px)`,src:\"https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png\",srcSet:\"https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=512 512w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vkvHzmrf4szFKFBsMmCJj5x3Fjw.png 2579w\"},className:\"framer-18klpze\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-239bw7\",\"data-framer-name\":\"Future trips\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1egd85\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dh6mff\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2708.5926+80+0+0+643+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 90px) / 2, 50px)`,src:\"https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg\",srcSet:\"https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg 1920w\"}},gfrGo1hjM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2108.4832+120+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg\",srcSet:\"https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg 1920w\"}},rLxfYrlUg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2080.0594+120+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg\",srcSet:\"https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg 1920w\"}},YjDaE4n9p:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+41+0+0+2246+80+0+0+643+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 50px) / 2, 50px)`,src:\"https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg\",srcSet:\"https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2112.1473+120+0+0+0+0),pixelHeight:1080,pixelWidth:1920,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg\",srcSet:\"https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/akNZvZnGdH1AtEV7GYvSkE89w.jpg 1920w\"},className:\"framer-1rijryt\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2708.5926+80+0+0+643+0+0),pixelHeight:2160,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 90px) / 2, 50px)`,src:\"https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg\",srcSet:\"https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg 3840w\"}},gfrGo1hjM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2108.4832+120+0+0+0+0),pixelHeight:2160,pixelWidth:3840,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg\",srcSet:\"https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg 3840w\"}},rLxfYrlUg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2080.0594+120+0+0+0+0),pixelHeight:2160,pixelWidth:3840,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg\",srcSet:\"https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg 3840w\"}},YjDaE4n9p:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+41+0+0+2246+80+0+0+643+0+0),pixelHeight:2160,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 50px) / 2, 50px)`,src:\"https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg\",srcSet:\"https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2112.1473+120+0+0+0+0),pixelHeight:2160,pixelWidth:3840,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg\",srcSet:\"https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LWGVTHrmQeqhahzZSMXcdRd5ZU.jpg 3840w\"},className:\"framer-1tbii65\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2708.5926+80+0+0+643+0+310),pixelHeight:2160,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 90px) / 2, 50px)`,src:\"https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg\",srcSet:\"https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg 3840w\"}},gfrGo1hjM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2108.4832+120+0+0+0+310),pixelHeight:2160,pixelWidth:3840,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg\",srcSet:\"https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg 3840w\"}},rLxfYrlUg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2080.0594+120+0+0+0+310),pixelHeight:2160,pixelWidth:3840,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg\",srcSet:\"https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg 3840w\"}},YjDaE4n9p:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+41+0+0+2246+80+0+0+643+0+310),pixelHeight:2160,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 50px) / 2, 50px)`,src:\"https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg\",srcSet:\"https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2112.1473+120+0+0+0+310),pixelHeight:2160,pixelWidth:3840,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg\",srcSet:\"https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TD1hoOd3QqhSm8r6W316xEha4I.jpg 3840w\"},className:\"framer-1tw43wy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2708.5926+80+0+0+643+0+310),pixelHeight:1080,pixelWidth:1920,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 90px) / 2, 50px)`,src:\"https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg\",srcSet:\"https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg 1920w\"}},gfrGo1hjM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2108.4832+120+0+0+0+310),pixelHeight:1080,pixelWidth:1920,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg\",srcSet:\"https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg 1920w\"}},rLxfYrlUg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2080.0594+120+0+0+0+310),pixelHeight:1080,pixelWidth:1920,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg\",srcSet:\"https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg 1920w\"}},YjDaE4n9p:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+41+0+0+2246+80+0+0+643+0+310),pixelHeight:1080,pixelWidth:1920,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 50px) / 2, 50px)`,src:\"https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg\",srcSet:\"https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2112.1473+120+0+0+0+310),pixelHeight:1080,pixelWidth:1920,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px) - 10px) / 2, 50px)`,src:\"https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg\",srcSet:\"https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zoj5uWl7AnApjKOjhhV2qxkzvA.jpg 1920w\"},className:\"framer-w5r47j\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sx8bq0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-alignment\":\"center\"},children:\"La Fameuse \\xc9mission\"})})},YjDaE4n9p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",style:{\"--framer-text-alignment\":\"center\"},children:\"La Fameuse \\xc9mission\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1krt19p\",\"data-styles-preset\":\"vedXHUzQj\",children:\"La Fameuse \\xc9mission\"})}),className:\"framer-19vw42c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",style:{\"--framer-text-alignment\":\"center\"},children:\"L'\\xe9mission \"})})},rLxfYrlUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",children:\"L'\\xe9mission \"})})},YjDaE4n9p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",style:{\"--framer-text-alignment\":\"center\"},children:\"L'\\xe9mission \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",children:\"L'\\xe9mission \"})}),className:\"framer-1bdrzem\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-alignment\":\"center\"},children:\"Retrouvez l\u2019int\\xe9gralit\\xe9 de nos \\xe9missions et capsules directement sur notre site web. En tant que r\\xe9f\\xe9rence francophone en chasse et p\\xeache, Aventure Chasse et P\\xeache vous propose du contenu exclusif, des conseils d\u2019experts et des reportages immersifs accessibles \\xe0 tout moment. Restez inform\\xe9, perfectionnez vos techniques et plongez au c\u0153ur de l\u2019action, o\\xf9 que vous soyez.\"})})},YjDaE4n9p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",style:{\"--framer-text-alignment\":\"center\"},children:\"Retrouvez l\u2019int\\xe9gralit\\xe9 de nos \\xe9missions et capsules directement sur notre site web. En tant que r\\xe9f\\xe9rence francophone en chasse et p\\xeache, Aventure Chasse et P\\xeache vous propose du contenu exclusif, des conseils d\u2019experts et des reportages immersifs accessibles \\xe0 tout moment. Restez inform\\xe9, perfectionnez vos techniques et plongez au c\u0153ur de l\u2019action, o\\xf9 que vous soyez.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:\"Retrouvez l\u2019int\\xe9gralit\\xe9 de nos \\xe9missions et capsules directement sur notre site web. En tant que r\\xe9f\\xe9rence francophone en chasse et p\\xeache, Aventure Chasse et P\\xeache vous propose du contenu exclusif, des conseils d\u2019experts et des reportages immersifs accessibles \\xe0 tout moment. Restez inform\\xe9, perfectionnez vos techniques et plongez au c\u0153ur de l\u2019action, o\\xf9 que vous soyez.\"})}),className:\"framer-xsjc0j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{y:(componentViewport?.y||0)+0+0+0+2708.5926+80+0+0+0+0+502},gfrGo1hjM:{y:(componentViewport?.y||0)+0+0+0+2108.4832+120+0+23.5+0+502},rLxfYrlUg:{y:(componentViewport?.y||0)+0+0+0+2080.0594+120+0+23.5+0+502},YjDaE4n9p:{y:(componentViewport?.y||0)+41+0+0+2246+80+0+0+0+0+502}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+0+0+0+2112.1473+120+0+23.5+0+502,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bxpbyr-container\",nodeId:\"C1WpSaK4j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonsButton,{height:\"100%\",id:\"C1WpSaK4j\",layoutId:\"C1WpSaK4j\",nK5G4IhyV:\"Voir nos capsules\",R9_LCDCpO:true,v73gZy5u6:\"https://www.youtube.com/@acpnation\",variant:\"GIjoI57rF\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1z5h65\",\"data-framer-name\":\"Current programs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hf9u4y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rLxfYrlUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",children:\"C'est quoi ACP?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",children:\"C'est quoi ACP?\"})}),className:\"framer-1ux301d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j786i9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a8kwar\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:\"Aventure Chasse P\\xeache, c\u2019est tout un univers : une \\xe9mission, un magazine, une station de radio et une \\xe9quipe de FEU. C\u2019est pourquoi nous sommes LA r\\xe9f\\xe9rence en chasse et p\\xeache au Qu\\xe9bec !\"})}),className:\"framer-96d5xt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{height:776,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px)`,y:(componentViewport?.y||0)+0+0+0+4121.5926+80+130+0+0+40+184},gfrGo1hjM:{y:(componentViewport?.y||0)+0+0+0+2958.4832+100+130+0+40+184},rLxfYrlUg:{y:(componentViewport?.y||0)+0+0+0+2930.0594+100+130+0+40+184},YjDaE4n9p:{height:776,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px)`,y:(componentViewport?.y||0)+41+0+0+3659+80+130+0+0+40+184}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:736,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+2962.1473+100+130+0+40+184,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qq8a6d-container\",nodeId:\"x0QDB_wko\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{__framer__variantAppearEffectEnabled:undefined},rLxfYrlUg:{__framer__targets:undefined},YjDaE4n9p:{__framer__variantAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(CurrentProgramSliderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"jLAzrxneA\"},{ref:ref3,target:\"PYrSS_k7t\"},{ref:ref4,target:\"NWkbrX93a\"},{ref:ref5,target:\"v1v6M14MF\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"x0QDB_wko\",layoutId:\"x0QDB_wko\",style:{height:\"100%\",width:\"100%\"},variant:\"jLAzrxneA\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ojanr6\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lja6he\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-eovsdo\",\"data-styles-preset\":\"ZsJwalBvf\",children:\"Une \\xc9mission\"})}),className:\"framer-y9bjz8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:[\"En onde depuis 2004, l\u2019\\xe9mission \",/*#__PURE__*/_jsx(\"em\",{children:\"Aventure Chasse P\\xeache\"}),\", c\u2019est des centaines de chroniques tourn\\xe9es aux quatre coins du Qu\\xe9bec et du monde, des pourvoiries des Laurentides jusqu\u2019aux grands espaces de l\u2019Afrique. Peu importe la destination, Martin et Kate t\u2019emm\\xe8nent avec eux dans leurs aventures.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:\"Au fil des ann\\xe9es, on a eu la chance de mettre \\xe0 l\u2019\\xe9preuve une foule de nouveaux produits gr\\xe2ce \\xe0 nos nombreux partenaires. Des bottes chauffantes aux fusils haut de gamme, tout y est pass\\xe9!\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:[\"Et surtout, \",/*#__PURE__*/_jsx(\"em\",{children:\"Aventure Chasse P\\xeache\"}),\", c\u2019est des rencontres inoubliables. Nos invit\\xe9s nous ont partag\\xe9 anecdotes et r\\xe9cits de chasse, des histoires qui r\\xe9sonnent encore aujourd\u2019hui.\"]})]}),className:\"framer-35emdp\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rz3spf\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-eovsdo\",\"data-styles-preset\":\"ZsJwalBvf\",children:\"Un Magazine\"})}),className:\"framer-du51ef\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:[\"Le l\\xe9gendaire magazine \",/*#__PURE__*/_jsx(\"em\",{children:\"Aventure Chasse P\\xeache\"}),\" c\\xe9l\\xe8bre d\\xe9j\\xe0 son 32\u1D49 volume! C\u2019est 32 \\xe9ditions riches en r\\xe9cits palpitants, en conseils d\u2019experts et en aventures qui font vibrer la communaut\\xe9 de la chasse, de la p\\xeache et du pi\\xe9geage au Qu\\xe9bec.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:\"\\xc0 travers des centaines de pages, plonge dans les actualit\\xe9s de l\u2019ann\\xe9e, d\\xe9couvre les anecdotes captivantes des chasseurs les plus passionn\\xe9s et profite de recommandations exclusives sur l\u2019\\xe9quipement test\\xe9 et approuv\\xe9 par notre \\xe9quipe.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:\"Ne manque pas ce rendez-vous incontournable! Abonne-toi d\\xe8s maintenant et assure-toi d\u2019avoir chaque volume entre les mains.\"})]}),className:\"framer-1zayv8\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19c0ehn\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-eovsdo\",\"data-styles-preset\":\"ZsJwalBvf\",children:\"Une Station de Radio\"})}),className:\"framer-ov5rfx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:[/*#__PURE__*/_jsx(\"em\",{children:\"Radio Crash\"}),\", c\u2019est plus de 8 animateurs passionn\\xe9s qui prennent la parole chaque semaine \\xe0 travers des chroniques captivantes. Premi\\xe8re radio au Qu\\xe9bec d\\xe9di\\xe9e \\xe0 la chasse, \\xe0 la p\\xeache, au tir sportif, au plein air et \\xe0 l\u2019aventure, elle rassemble une communaut\\xe9 de passionn\\xe9s en qu\\xeate de d\\xe9couvertes et de bons moments.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:\"Au menu? Du gros fun, des actualit\\xe9s, des invit\\xe9s de choix et une s\\xe9lection musicale qui met l\u2019ambiance. Ne manque pas \\xe7a! Branche-toi et joins-toi \\xe0 l\u2019aventure.\"})]}),className:\"framer-qudaok\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{y:(componentViewport?.y||0)+0+0+0+4121.5926+80+130+0+1080+0+1344+0+478},gfrGo1hjM:{y:(componentViewport?.y||0)+0+0+0+2958.4832+100+130+0+40+1584+0+478},rLxfYrlUg:{y:(componentViewport?.y||0)+0+0+0+2930.0594+100+130+0+40+1584+0+478},YjDaE4n9p:{y:(componentViewport?.y||0)+41+0+0+3659+80+130+0+1080+0+1344+0+478}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+0+0+0+2962.1473+100+130+0+40+1584+0+478,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fbglws-container\",nodeId:\"GEhSZoQ57\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonsButton,{height:\"100%\",id:\"GEhSZoQ57\",layoutId:\"GEhSZoQ57\",nK5G4IhyV:\"Branche-toi !\",R9_LCDCpO:false,variant:\"GIjoI57rF\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h2uez9\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-eovsdo\",\"data-styles-preset\":\"ZsJwalBvf\",children:\"Une \\xe9quipe de feu\"})}),className:\"framer-1diy3fj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:[\"Au bout du compte, \",/*#__PURE__*/_jsx(\"em\",{children:\"Aventure Chasse P\\xeache\"}),\", c\u2019est avant tout une gang de chums qui trippent et qui partagent leur passion. Notre mission? Informer des millions de Qu\\xe9b\\xe9cois et Qu\\xe9b\\xe9coises sur les actualit\\xe9s du domaine, leur faire d\\xe9couvrir les meilleurs endroits pour chasser et p\\xeacher, et transmettre notre amour du grand air \\xe0 travers nos m\\xe9dias.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:\"Peu importe ton niveau d\u2019exp\\xe9rience, on est l\\xe0 pour t\u2019accompagner et faire de chaque aventure une r\\xe9ussite. Alors, toi? T\u2019embarques dans l\u2019aventure?\"})]}),className:\"framer-1p96n9x\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o0gmda\",\"data-framer-name\":\"Our stories\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xt5eib\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rLxfYrlUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",children:\"Filles de Bois\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",children:\"Filles de Bois\"})}),className:\"framer-hugj52\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Filles de Bois\"}),\", c\u2019est une communaut\\xe9 d\\xe9di\\xe9e aux femmes passionn\\xe9es de chasse, de p\\xeache, de trappage et de plein air. Un espace cr\\xe9\\xe9 \",/*#__PURE__*/_jsx(\"strong\",{children:\"par et pour celles\"}),\" qui vivent au rythme de la nature, que ce soit \\xe0 travers la cueillette, la foresterie, la biologie ou toute autre implication dans le domaine faunique.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:[\"Ici, on met de l\u2019avant les femmes qui pratiquent ces activit\\xe9s avec fiert\\xe9 et on favorise l\u2019entraide. Que tu sois une experte ou une d\\xe9butante, \",/*#__PURE__*/_jsx(\"strong\",{children:\"tu es la bienvenue\"}),\"! Partage tes exp\\xe9riences, pose tes questions et viens \\xe9changer avec une communaut\\xe9 qui partage ta passion.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:\"Pr\\xeate \\xe0 rejoindre la gang et \\xe0 plonger au c\u0153ur de l\u2019aventure? \"})]}),className:\"framer-1j4dm62\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{y:(componentViewport?.y||0)+0+0+0+7882.5926+80+0+0+662},gfrGo1hjM:{y:(componentViewport?.y||0)+0+0+0+6219.4832+238.5+0+662},rLxfYrlUg:{y:(componentViewport?.y||0)+0+0+0+6191.0594+238.5+0+662},YjDaE4n9p:{y:(componentViewport?.y||0)+41+0+0+7420+80+0+0+662}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+0+0+0+6223.1473+238.5+0+662,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ph8z68-container\",nodeId:\"Mb2SENfFS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonsButton,{height:\"100%\",id:\"Mb2SENfFS\",layoutId:\"Mb2SENfFS\",nK5G4IhyV:\"Rejoins le groupe\",R9_LCDCpO:true,v73gZy5u6:\"https://www.facebook.com/groups/fillesdebois\",variant:\"GIjoI57rF\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1grpewm\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18uic9g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EPPDV56nC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"EPPDV56nC\",layoutId:\"EPPDV56nC\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5773,pixelWidth:3774,sizes:\"310px\",src:\"https://framerusercontent.com/images/f9978dT0yvVaCwFxB1Alem0sDJw.jpg\",srcSet:\"https://framerusercontent.com/images/f9978dT0yvVaCwFxB1Alem0sDJw.jpg?scale-down-to=1024 669w,https://framerusercontent.com/images/f9978dT0yvVaCwFxB1Alem0sDJw.jpg?scale-down-to=2048 1338w,https://framerusercontent.com/images/f9978dT0yvVaCwFxB1Alem0sDJw.jpg?scale-down-to=4096 2677w,https://framerusercontent.com/images/f9978dT0yvVaCwFxB1Alem0sDJw.jpg 3774w\"},className:\"framer-qvm14y\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5710,pixelWidth:3807,sizes:\"310px\",src:\"https://framerusercontent.com/images/1Hk7niF6FjLqFsdy26WUtx8oLsE.jpg\",srcSet:\"https://framerusercontent.com/images/1Hk7niF6FjLqFsdy26WUtx8oLsE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/1Hk7niF6FjLqFsdy26WUtx8oLsE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/1Hk7niF6FjLqFsdy26WUtx8oLsE.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/1Hk7niF6FjLqFsdy26WUtx8oLsE.jpg 3807w\"},className:\"framer-7zs2bj\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5404,pixelWidth:3601,sizes:\"310px\",src:\"https://framerusercontent.com/images/4Dg1VtSkEioJ16AvdvrS9J3fBA.jpg\",srcSet:\"https://framerusercontent.com/images/4Dg1VtSkEioJ16AvdvrS9J3fBA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/4Dg1VtSkEioJ16AvdvrS9J3fBA.jpg?scale-down-to=2048 1364w,https://framerusercontent.com/images/4Dg1VtSkEioJ16AvdvrS9J3fBA.jpg?scale-down-to=4096 2729w,https://framerusercontent.com/images/4Dg1VtSkEioJ16AvdvrS9J3fBA.jpg 3601w\"},className:\"framer-1hrqe2b\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j3vnup-container hidden-1vrw3kt\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zDxu9LoTw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"zDxu9LoTw\",layoutId:\"zDxu9LoTw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:6e3,pixelWidth:4e3,sizes:\"310px\",src:\"https://framerusercontent.com/images/METS5KkIUnitx1C9nJ7wj7nwqA.jpg\",srcSet:\"https://framerusercontent.com/images/METS5KkIUnitx1C9nJ7wj7nwqA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/METS5KkIUnitx1C9nJ7wj7nwqA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/METS5KkIUnitx1C9nJ7wj7nwqA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/METS5KkIUnitx1C9nJ7wj7nwqA.jpg 4000w\"},className:\"framer-f4cp8c\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:5327,pixelWidth:3983,sizes:\"310px\",src:\"https://framerusercontent.com/images/WTOkCCBCFwdxioQccwdufuyNx9M.jpg\",srcSet:\"https://framerusercontent.com/images/WTOkCCBCFwdxioQccwdufuyNx9M.jpg?scale-down-to=1024 765w,https://framerusercontent.com/images/WTOkCCBCFwdxioQccwdufuyNx9M.jpg?scale-down-to=2048 1531w,https://framerusercontent.com/images/WTOkCCBCFwdxioQccwdufuyNx9M.jpg?scale-down-to=4096 3062w,https://framerusercontent.com/images/WTOkCCBCFwdxioQccwdufuyNx9M.jpg 3983w\"},className:\"framer-8qg3j5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4848.18171310031,intrinsicWidth:3635.454466658192,pixelHeight:5333,pixelWidth:3999,sizes:\"310px\",src:\"https://framerusercontent.com/images/isAwBYsv9Ef4aZHea7Ojy1oH0.jpg\",srcSet:\"https://framerusercontent.com/images/isAwBYsv9Ef4aZHea7Ojy1oH0.jpg?scale-down-to=1024 767w,https://framerusercontent.com/images/isAwBYsv9Ef4aZHea7Ojy1oH0.jpg?scale-down-to=2048 1535w,https://framerusercontent.com/images/isAwBYsv9Ef4aZHea7Ojy1oH0.jpg?scale-down-to=4096 3071w,https://framerusercontent.com/images/isAwBYsv9Ef4aZHea7Ojy1oH0.jpg 3999w\"},className:\"framer-13av5xc\",\"data-framer-name\":\"7Q4A6332 (1)-min\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hfxvs6\",\"data-framer-name\":\"Share your adventure\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nbvrj5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rLxfYrlUg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",children:\"Ne manque rien! \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrysju\",\"data-styles-preset\":\"dHiwUZ76W\",children:\"Ne manque rien! \"})}),className:\"framer-rl5ds4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dw5hx4\",\"data-styles-preset\":\"cUbCndIyU\",children:\"\\xc0 ta place, je nous suivrais sur les r\\xe9seaux sociaux pour ne rien manquer : anecdotes, nouvelles capsules et bien plus encore! On se voit l\\xe0-bas?\"})}),className:\"framer-1kuxm3n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dmldqv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tyvrls-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qPxdLrHiN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"qPxdLrHiN\",layoutId:\"qPxdLrHiN\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19k6v6a-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vMhMtM4wl\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"vMhMtM4wl\",layoutId:\"vMhMtM4wl\",style:{height:\"100%\",width:\"100%\"},url:\"https://www.instagram.com/p/DFdzDCYTIzB/?hl=fr\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lwfjaz-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oY7v_CvWK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"oY7v_CvWK\",layoutId:\"oY7v_CvWK\",style:{height:\"100%\",width:\"100%\"},url:\"https://www.instagram.com/p/DFntElYhRUv/?hl=fr\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uwgkq-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YzOQFDfHh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"YzOQFDfHh\",layoutId:\"YzOQFDfHh\",style:{height:\"100%\",width:\"100%\"},url:\"https://www.instagram.com/p/DFJwmMNzaXc/?hl=fr\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f85u06-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jed9Lqg8Z\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"jed9Lqg8Z\",layoutId:\"jed9Lqg8Z\",style:{height:\"100%\",width:\"100%\"},url:\"https://www.instagram.com/p/DFHTImWtPoi/?hl=fr&img_index=1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o2u3t9-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fbuATsQiy\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"fbuATsQiy\",layoutId:\"fbuATsQiy\",style:{height:\"100%\",width:\"100%\"},url:\"https://www.instagram.com/p/DE8aHwZPJVb/?hl=fr\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vmhc9a-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"va3vCu4ar\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"va3vCu4ar\",layoutId:\"va3vCu4ar\",style:{height:\"100%\",width:\"100%\"},url:\"https://www.instagram.com/p/DFGF_5Rv1qn/?hl=fr&img_index=1\",width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{y:(componentViewport?.y||0)+0+11056.5926},gfrGo1hjM:{y:(componentViewport?.y||0)+0+8650.4832},rLxfYrlUg:{y:(componentViewport?.y||0)+0+8622.0594},YjDaE4n9p:{y:(componentViewport?.y||0)+41+10294}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:529,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8654.1473,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rttimn-container\",nodeId:\"ihMBURaJl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AlBR9nLRL:{variant:\"c1Wo2xUxI\"},YjDaE4n9p:{variant:\"xTSDK6BCj\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"ihMBURaJl\",layoutId:\"ihMBURaJl\",style:{width:\"100%\"},variant:\"EncR17M0O\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-v6Zi6.framer-lux5qc, .framer-v6Zi6 .framer-lux5qc { display: block; }\",\".framer-v6Zi6.framer-72rtr7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-v6Zi6 .framer-s10m7t-container { flex: none; height: 80px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 3; }\",\".framer-v6Zi6 .framer-hcnzsw { align-content: center; align-items: center; background-color: var(--token-1f6852e9-1497-4551-bef7-299f387d8f98, #e8e5e2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 150px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-v6Zi6 .framer-njeljx-container { flex: none; height: 108.91472868217053vh; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-10zi0er-container, .framer-v6Zi6 .framer-uo3qw6-container, .framer-v6Zi6 .framer-1bxpbyr-container, .framer-v6Zi6 .framer-1fbglws-container, .framer-v6Zi6 .framer-1ph8z68-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-v6Zi6 .framer-yr8hyg-container { flex: none; height: 63px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-151lrp6 { align-content: center; align-items: center; background-color: var(--token-427ec4a1-6126-417a-9822-7f4f7c9d8aff, #ec7728); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 40px 8px 40px; position: relative; width: 841px; }\",\".framer-v6Zi6 .framer-drhlul, .framer-v6Zi6 .framer-1p1sy9r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-v6Zi6 .framer-1kr9i86, .framer-v6Zi6 .framer-1emcue, .framer-v6Zi6 .framer-u86k78, .framer-v6Zi6 .framer-14po9kc, .framer-v6Zi6 .framer-19vw42c, .framer-v6Zi6 .framer-1bdrzem, .framer-v6Zi6 .framer-xsjc0j, .framer-v6Zi6 .framer-96d5xt, .framer-v6Zi6 .framer-y9bjz8, .framer-v6Zi6 .framer-35emdp, .framer-v6Zi6 .framer-du51ef, .framer-v6Zi6 .framer-1zayv8, .framer-v6Zi6 .framer-ov5rfx, .framer-v6Zi6 .framer-qudaok, .framer-v6Zi6 .framer-1diy3fj, .framer-v6Zi6 .framer-1p96n9x, .framer-v6Zi6 .framer-hugj52, .framer-v6Zi6 .framer-1j4dm62, .framer-v6Zi6 .framer-rl5ds4, .framer-v6Zi6 .framer-1kuxm3n { --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; }\",\".framer-v6Zi6 .framer-hm9vdy { align-content: center; align-items: center; background-color: #e8e5e2; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 45px 40px 45px 40px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-xsghi5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-nhpm5n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-18klpze { flex: 1 0 0px; height: 670px; overflow: hidden; position: relative; width: 1px; }\",\".framer-v6Zi6 .framer-239bw7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 120px 40px 120px 40px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-1egd85 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-dh6mff { display: grid; flex: 1 0 0px; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-v6Zi6 .framer-1rijryt, .framer-v6Zi6 .framer-1tw43wy { align-self: start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 300px; justify-self: start; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-1tbii65, .framer-v6Zi6 .framer-w5r47j { align-self: start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-1sx8bq0, .framer-v6Zi6 .framer-xt5eib { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-v6Zi6 .framer-1z5h65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-1hf9u4y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-1ux301d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-v6Zi6 .framer-j786i9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-1a8kwar { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 40px 0px 40px 0px; position: sticky; top: 0px; width: 1px; z-index: 1; }\",\".framer-v6Zi6 .framer-1qq8a6d-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-1ojanr6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-v6Zi6 .framer-1lja6he, .framer-v6Zi6 .framer-1rz3spf, .framer-v6Zi6 .framer-19c0ehn, .framer-v6Zi6 .framer-h2uez9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-o0gmda { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-1grpewm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-v6Zi6 .framer-18uic9g-container, .framer-v6Zi6 .framer-j3vnup-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-v6Zi6 .framer-qvm14y, .framer-v6Zi6 .framer-7zs2bj, .framer-v6Zi6 .framer-1hrqe2b, .framer-v6Zi6 .framer-f4cp8c, .framer-v6Zi6 .framer-8qg3j5 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 540px; position: relative; width: 310px; }\",\".framer-v6Zi6 .framer-13av5xc { height: 540px; overflow: visible; position: relative; width: 310px; }\",\".framer-v6Zi6 .framer-1hfxvs6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-1nbvrj5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-dmldqv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-1tyvrls-container { flex: none; height: 607px; position: relative; width: 100%; }\",\".framer-v6Zi6 .framer-19k6v6a-container, .framer-v6Zi6 .framer-1lwfjaz-container, .framer-v6Zi6 .framer-1uwgkq-container, .framer-v6Zi6 .framer-f85u06-container, .framer-v6Zi6 .framer-o2u3t9-container, .framer-v6Zi6 .framer-1vmhc9a-container { height: 410px; position: relative; width: 300px; }\",\".framer-v6Zi6 .framer-rttimn-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-v6Zi6.framer-72rtr7, .framer-v6Zi6 .framer-hcnzsw, .framer-v6Zi6 .framer-151lrp6, .framer-v6Zi6 .framer-drhlul, .framer-v6Zi6 .framer-hm9vdy, .framer-v6Zi6 .framer-1p1sy9r, .framer-v6Zi6 .framer-xsghi5, .framer-v6Zi6 .framer-nhpm5n, .framer-v6Zi6 .framer-239bw7, .framer-v6Zi6 .framer-1egd85, .framer-v6Zi6 .framer-1sx8bq0, .framer-v6Zi6 .framer-1z5h65, .framer-v6Zi6 .framer-1hf9u4y, .framer-v6Zi6 .framer-j786i9, .framer-v6Zi6 .framer-1a8kwar, .framer-v6Zi6 .framer-1ojanr6, .framer-v6Zi6 .framer-1lja6he, .framer-v6Zi6 .framer-1rz3spf, .framer-v6Zi6 .framer-19c0ehn, .framer-v6Zi6 .framer-h2uez9, .framer-v6Zi6 .framer-o0gmda, .framer-v6Zi6 .framer-xt5eib, .framer-v6Zi6 .framer-1grpewm, .framer-v6Zi6 .framer-1hfxvs6, .framer-v6Zi6 .framer-1nbvrj5, .framer-v6Zi6 .framer-dmldqv { gap: 0px; } .framer-v6Zi6.framer-72rtr7 > *, .framer-v6Zi6 .framer-hcnzsw > *, .framer-v6Zi6 .framer-1ojanr6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-v6Zi6.framer-72rtr7 > :first-child, .framer-v6Zi6 .framer-hcnzsw > :first-child, .framer-v6Zi6 .framer-drhlul > :first-child, .framer-v6Zi6 .framer-1p1sy9r > :first-child, .framer-v6Zi6 .framer-xsghi5 > :first-child, .framer-v6Zi6 .framer-239bw7 > :first-child, .framer-v6Zi6 .framer-1sx8bq0 > :first-child, .framer-v6Zi6 .framer-1z5h65 > :first-child, .framer-v6Zi6 .framer-1hf9u4y > :first-child, .framer-v6Zi6 .framer-1a8kwar > :first-child, .framer-v6Zi6 .framer-1ojanr6 > :first-child, .framer-v6Zi6 .framer-1lja6he > :first-child, .framer-v6Zi6 .framer-1rz3spf > :first-child, .framer-v6Zi6 .framer-19c0ehn > :first-child, .framer-v6Zi6 .framer-h2uez9 > :first-child, .framer-v6Zi6 .framer-xt5eib > :first-child, .framer-v6Zi6 .framer-1hfxvs6 > :first-child, .framer-v6Zi6 .framer-1nbvrj5 > :first-child, .framer-v6Zi6 .framer-dmldqv > :first-child { margin-top: 0px; } .framer-v6Zi6.framer-72rtr7 > :last-child, .framer-v6Zi6 .framer-hcnzsw > :last-child, .framer-v6Zi6 .framer-drhlul > :last-child, .framer-v6Zi6 .framer-1p1sy9r > :last-child, .framer-v6Zi6 .framer-xsghi5 > :last-child, .framer-v6Zi6 .framer-239bw7 > :last-child, .framer-v6Zi6 .framer-1sx8bq0 > :last-child, .framer-v6Zi6 .framer-1z5h65 > :last-child, .framer-v6Zi6 .framer-1hf9u4y > :last-child, .framer-v6Zi6 .framer-1a8kwar > :last-child, .framer-v6Zi6 .framer-1ojanr6 > :last-child, .framer-v6Zi6 .framer-1lja6he > :last-child, .framer-v6Zi6 .framer-1rz3spf > :last-child, .framer-v6Zi6 .framer-19c0ehn > :last-child, .framer-v6Zi6 .framer-h2uez9 > :last-child, .framer-v6Zi6 .framer-xt5eib > :last-child, .framer-v6Zi6 .framer-1hfxvs6 > :last-child, .framer-v6Zi6 .framer-1nbvrj5 > :last-child, .framer-v6Zi6 .framer-dmldqv > :last-child { margin-bottom: 0px; } .framer-v6Zi6 .framer-151lrp6 > *, .framer-v6Zi6 .framer-hm9vdy > *, .framer-v6Zi6 .framer-1egd85 > *, .framer-v6Zi6 .framer-j786i9 > *, .framer-v6Zi6 .framer-o0gmda > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-v6Zi6 .framer-151lrp6 > :first-child, .framer-v6Zi6 .framer-hm9vdy > :first-child, .framer-v6Zi6 .framer-nhpm5n > :first-child, .framer-v6Zi6 .framer-1egd85 > :first-child, .framer-v6Zi6 .framer-j786i9 > :first-child, .framer-v6Zi6 .framer-o0gmda > :first-child, .framer-v6Zi6 .framer-1grpewm > :first-child { margin-left: 0px; } .framer-v6Zi6 .framer-151lrp6 > :last-child, .framer-v6Zi6 .framer-hm9vdy > :last-child, .framer-v6Zi6 .framer-nhpm5n > :last-child, .framer-v6Zi6 .framer-1egd85 > :last-child, .framer-v6Zi6 .framer-j786i9 > :last-child, .framer-v6Zi6 .framer-o0gmda > :last-child, .framer-v6Zi6 .framer-1grpewm > :last-child { margin-right: 0px; } .framer-v6Zi6 .framer-drhlul > *, .framer-v6Zi6 .framer-1p1sy9r > *, .framer-v6Zi6 .framer-1z5h65 > *, .framer-v6Zi6 .framer-dmldqv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-v6Zi6 .framer-xsghi5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-v6Zi6 .framer-nhpm5n > *, .framer-v6Zi6 .framer-1grpewm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-v6Zi6 .framer-239bw7 > *, .framer-v6Zi6 .framer-1hfxvs6 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-v6Zi6 .framer-1sx8bq0 > *, .framer-v6Zi6 .framer-1hf9u4y > *, .framer-v6Zi6 .framer-1a8kwar > *, .framer-v6Zi6 .framer-xt5eib > *, .framer-v6Zi6 .framer-1nbvrj5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-v6Zi6 .framer-1lja6he > *, .framer-v6Zi6 .framer-1rz3spf > *, .framer-v6Zi6 .framer-19c0ehn > *, .framer-v6Zi6 .framer-h2uez9 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1437px) { .framer-v6Zi6.framer-72rtr7 { width: 810px; } .framer-v6Zi6 .framer-s10m7t-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-v6Zi6 .framer-njeljx-container { height: 99.25925925925925vh; } .framer-v6Zi6 .framer-hm9vdy, .framer-v6Zi6 .framer-o0gmda { flex-direction: column; padding: 80px 40px 80px 40px; } .framer-v6Zi6 .framer-1p1sy9r { align-content: center; align-items: center; flex: none; width: 100%; } .framer-v6Zi6 .framer-nhpm5n { justify-content: center; } .framer-v6Zi6 .framer-18klpze, .framer-v6Zi6 .framer-xt5eib, .framer-v6Zi6 .framer-1grpewm { flex: none; width: 100%; } .framer-v6Zi6 .framer-239bw7 { padding: 80px 40px 80px 40px; } .framer-v6Zi6 .framer-1egd85, .framer-v6Zi6 .framer-j786i9 { flex-direction: column; } .framer-v6Zi6 .framer-dh6mff { flex: none; order: 1; width: 100%; } .framer-v6Zi6 .framer-1sx8bq0 { align-content: center; align-items: center; flex: none; order: 0; width: 100%; } .framer-v6Zi6 .framer-1z5h65, .framer-v6Zi6 .framer-1hfxvs6 { padding: 80px 40px 0px 40px; } .framer-v6Zi6 .framer-1a8kwar { flex: none; padding: 40px 0px 0px 0px; position: relative; top: unset; width: 100%; } .framer-v6Zi6 .framer-1ojanr6 { flex: none; padding: 0px; width: 100%; } .framer-v6Zi6 .framer-1lja6he, .framer-v6Zi6 .framer-1rz3spf, .framer-v6Zi6 .framer-19c0ehn, .framer-v6Zi6 .framer-h2uez9 { padding: 0px 0px 80px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-v6Zi6 .framer-hm9vdy, .framer-v6Zi6 .framer-1egd85, .framer-v6Zi6 .framer-j786i9, .framer-v6Zi6 .framer-o0gmda { gap: 0px; } .framer-v6Zi6 .framer-hm9vdy > *, .framer-v6Zi6 .framer-1egd85 > *, .framer-v6Zi6 .framer-j786i9 > *, .framer-v6Zi6 .framer-o0gmda > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-v6Zi6 .framer-hm9vdy > :first-child, .framer-v6Zi6 .framer-1egd85 > :first-child, .framer-v6Zi6 .framer-j786i9 > :first-child, .framer-v6Zi6 .framer-o0gmda > :first-child { margin-top: 0px; } .framer-v6Zi6 .framer-hm9vdy > :last-child, .framer-v6Zi6 .framer-1egd85 > :last-child, .framer-v6Zi6 .framer-j786i9 > :last-child, .framer-v6Zi6 .framer-o0gmda > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-v6Zi6.framer-72rtr7 { padding: 41px 0px 41px 0px; width: 390px; } .framer-v6Zi6 .framer-s10m7t-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-v6Zi6 .framer-njeljx-container { height: auto; } .framer-v6Zi6 .framer-hm9vdy, .framer-v6Zi6 .framer-o0gmda { flex-direction: column; padding: 80px 20px 80px 20px; } .framer-v6Zi6 .framer-1p1sy9r { align-content: center; align-items: center; flex: none; width: 100%; } .framer-v6Zi6 .framer-nhpm5n, .framer-v6Zi6 .framer-1egd85, .framer-v6Zi6 .framer-j786i9 { flex-direction: column; } .framer-v6Zi6 .framer-18klpze { flex: none; height: 400px; width: 100%; } .framer-v6Zi6 .framer-239bw7 { padding: 80px 20px 80px 20px; } .framer-v6Zi6 .framer-dh6mff { flex: none; order: 1; width: 100%; } .framer-v6Zi6 .framer-1sx8bq0 { align-content: center; align-items: center; flex: none; order: 0; width: 100%; } .framer-v6Zi6 .framer-1z5h65, .framer-v6Zi6 .framer-1hfxvs6 { padding: 80px 20px 0px 20px; } .framer-v6Zi6 .framer-1a8kwar { flex: none; padding: 40px 0px 0px 0px; position: relative; top: unset; width: 100%; } .framer-v6Zi6 .framer-1ojanr6 { flex: none; padding: 0px; width: 100%; } .framer-v6Zi6 .framer-1lja6he, .framer-v6Zi6 .framer-1rz3spf, .framer-v6Zi6 .framer-19c0ehn, .framer-v6Zi6 .framer-h2uez9 { padding: 0px 0px 80px 0px; } .framer-v6Zi6 .framer-xt5eib { flex: none; width: 100%; } .framer-v6Zi6 .framer-1grpewm { flex: none; height: 70vh; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-v6Zi6 .framer-hm9vdy, .framer-v6Zi6 .framer-nhpm5n, .framer-v6Zi6 .framer-1egd85, .framer-v6Zi6 .framer-j786i9, .framer-v6Zi6 .framer-o0gmda { gap: 0px; } .framer-v6Zi6 .framer-hm9vdy > *, .framer-v6Zi6 .framer-1egd85 > *, .framer-v6Zi6 .framer-j786i9 > *, .framer-v6Zi6 .framer-o0gmda > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-v6Zi6 .framer-hm9vdy > :first-child, .framer-v6Zi6 .framer-nhpm5n > :first-child, .framer-v6Zi6 .framer-1egd85 > :first-child, .framer-v6Zi6 .framer-j786i9 > :first-child, .framer-v6Zi6 .framer-o0gmda > :first-child { margin-top: 0px; } .framer-v6Zi6 .framer-hm9vdy > :last-child, .framer-v6Zi6 .framer-nhpm5n > :last-child, .framer-v6Zi6 .framer-1egd85 > :last-child, .framer-v6Zi6 .framer-j786i9 > :last-child, .framer-v6Zi6 .framer-o0gmda > :last-child { margin-bottom: 0px; } .framer-v6Zi6 .framer-nhpm5n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (min-width: 1920px) { .framer-v6Zi6.framer-72rtr7 { width: 1920px; } .framer-v6Zi6 .framer-s10m7t-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-v6Zi6 .framer-njeljx-container { height: 109.94832041343669vh; } .framer-v6Zi6 .framer-hm9vdy { padding: 38px 40px 38px 40px; }}\",\"@media (min-width: 1438px) and (max-width: 1439px) { .framer-v6Zi6.framer-72rtr7 { width: 1438px; } .framer-v6Zi6 .framer-njeljx-container { height: 107.10594315245478vh; } .framer-v6Zi6 .framer-hm9vdy { padding: 38px 40px 38px 40px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8022\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AlBR9nLRL\":{\"layout\":[\"fixed\",\"auto\"]},\"YjDaE4n9p\":{\"layout\":[\"fixed\",\"auto\"]},\"gfrGo1hjM\":{\"layout\":[\"fixed\",\"auto\"]},\"rLxfYrlUg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"XQQRXZ0zW\":{\"pattern\":\":XQQRXZ0zW\",\"name\":\"hero\"},\"wQlH1lRdH\":{\"pattern\":\":wQlH1lRdH\",\"name\":\"hiking\"},\"GOn_2JOvR\":{\"pattern\":\":GOn_2JOvR\",\"name\":\"mountain-biking\"},\"z84EbnkbU\":{\"pattern\":\":z84EbnkbU\",\"name\":\"running\"},\"iTK1Q_xoB\":{\"pattern\":\":iTK1Q_xoB\",\"name\":\"outdoor-school\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-v6Zi6\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8022,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.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://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.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://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.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://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.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://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.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://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.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://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.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://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.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://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.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://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...Navigation2Fonts,...GeneralHeroBannerFonts,...SmoothScrollFonts,...TickerFonts,...ButtonsButtonFonts,...CurrentProgramSliderFonts,...InstagramFonts,...FooterSectionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"XQQRXZ0zW\\\":{\\\"pattern\\\":\\\":XQQRXZ0zW\\\",\\\"name\\\":\\\"hero\\\"},\\\"wQlH1lRdH\\\":{\\\"pattern\\\":\\\":wQlH1lRdH\\\",\\\"name\\\":\\\"hiking\\\"},\\\"GOn_2JOvR\\\":{\\\"pattern\\\":\\\":GOn_2JOvR\\\",\\\"name\\\":\\\"mountain-biking\\\"},\\\"z84EbnkbU\\\":{\\\"pattern\\\":\\\":z84EbnkbU\\\",\\\"name\\\":\\\"running\\\"},\\\"iTK1Q_xoB\\\":{\\\"pattern\\\":\\\":iTK1Q_xoB\\\",\\\"name\\\":\\\"outdoor-school\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"8022\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AlBR9nLRL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YjDaE4n9p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gfrGo1hjM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rLxfYrlUg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "iDi6OGApk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerhSMUUl1_y", "withCSS", "hSMUUl1_y_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "VideoFonts", "getFonts", "Video", "SocialSocialIconFonts", "gYbj18C7h_default", "CardsContactCardFonts", "hSMUUl1_y_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "transition7", "animation7", "transition8", "animation8", "transition9", "animation9", "transition10", "animation10", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1gfeu89", "args", "onAppearvdmsmi", "onAppear1h4ri9j", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "css", "FramerNZQ_0Fwqz", "withCSS", "NZQ_0Fwqz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FramervcXBxLeBu", "withCSS", "vcXBxLeBu_default", "addPropertyControls", "ControlType", "addFonts", "Navigation2Fonts", "getFonts", "G5Swxcl5J_default", "ContainerWithFX", "withFX", "Container", "GeneralHeroBannerFonts", "NZQ_0Fwqz_default", "SmoothScrollFonts", "SmoothScroll", "MotionDivWithFX", "motion", "TickerFonts", "Ticker", "ButtonsButtonFonts", "CVcEQsW5n_default", "CurrentProgramSliderFonts", "vcXBxLeBu_default", "CurrentProgramSliderWithVariantAppearEffect", "withVariantAppearEffect", "InstagramFonts", "Instagram", "FooterSectionFonts", "dRYWlqXgG_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "animation1", "transition2", "animation2", "transition3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "ref2", "ref3", "ref4", "ref5", "elementId1", "elementId2", "elementId3", "elementId4", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
