{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/4lPJUInr9BbZwDYdxSgD/MtDBVuDoZ2YXDgn8MBbB/StaggeredTextCycle_Prod.js", "ssg:https://framer.com/m/iconoir-icons/Home.js@0.0.11", "ssg:https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js", "ssg:https://framerusercontent.com/modules/m1sZOfTsTMnEccB6U60i/35jJY2n6cvLTwTQ9mhQH/CBFtf9aEr.js", "ssg:https://framerusercontent.com/modules/6PE5UpYpb5GOIImW9vVN/iRzWVUaRiSO4FQwnO97I/dmpLNdv0N.js", "ssg:https://framerusercontent.com/modules/GqOmdZf56rI4egkEhYUj/CuRj79z5w1kGHqXOJR4H/g9_Uslit0.js", "ssg:https://framerusercontent.com/modules/wJAbEcP1sRRMIv4emYA7/V7T3rBGNX7QjMdMn92VN/LhuZFXCgK.js", "ssg:https://framerusercontent.com/modules/IuIwQRQMbfHdt8OEBoOW/Q0LB4qYmqaWOt8jUQGks/oghZC7c8t.js", "ssg:https://framerusercontent.com/modules/vNLgRUactpjNUZxOgAwR/b5RJcol2RArlHfXfEqIV/xECSFa0KT.js", "ssg:https://framerusercontent.com/modules/uP6opRlZOfV39JhoBPAj/Vvd3j4FkXIv919DneL1u/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";const MAX_SPEED=20;const defaultTransition={// ease: \"power4.out\",\nease:[.11,.72,0,1]};/**\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function StaggeredTextCycleV2({text,speed,delay,font,userSelect,color,alignment,tag,loop,stagger}){const Tag=tag;const content=text.split(\", \").map(phrase=>phrase.replace(/\\s+/g,\" \").trim());const[iteration,setIteration]=useState(0);const speedFormatted=(MAX_SPEED-speed+1)/MAX_SPEED*5;const delayFormattedMs=delay*1e3;const speedFormattedMs=speedFormatted*1e3;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[isFirstRender,setIsFirstRender]=useState(true);useEffect(()=>{const timeout=isFirstRender?speedFormattedMs/3+delayFormattedMs:speedFormattedMs+delayFormattedMs;const interval=setInterval(()=>{setIsFirstRender(false);if(iteration<content.length-1){setIteration(prev=>prev+1);}else if(loop){setIteration(0);}},timeout);return()=>clearInterval(interval);},[iteration,loop,isFirstRender]);return /*#__PURE__*/_jsxs(\"div\",{style:{userSelect:userSelect?\"auto\":\"none\",position:\"relative\",display:\"flex\",flexDirection:\"row\",overflow:\"visible\",justifyContent:alignment===\"center\"?\"center\":alignment===\"right\"?\"flex-end\":\"flex-start\"},children:[/*#__PURE__*/_jsx(Tag,{\"aria-hidden\":true,style:{fontSize:\"24px\",...font,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",pointerEvents:\"none\",opacity:0,whiteSpace:\"pre-wrap\",width:\"100%\",textAlign:alignment},children:content.reduce((longest,current)=>current.length>longest.length?current:longest)}),isCanvas&&/*#__PURE__*/_jsx(Tag,{style:{fontSize:\"24px\",...font,color,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",whiteSpace:\"pre-wrap\",position:\"absolute\",top:0,left:0,width:\"100%\",textAlign:alignment},children:content[0]}),!isCanvas&&/*#__PURE__*/_jsx(_Fragment,{children:content.map((sentence,sentenceIndex)=>{let charIndex=0;// Split sentence into segments\nconst segments=sentence.split(/(\\s+|\\b)/).map(segment=>({text:segment,chars:segment.split(\"\").map(char=>({char,originalIndex:charIndex++}))}));console.log(segments);return /*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:0,left:0,overflow:\"visible\",width:\"100%\",textAlign:alignment},children:/*#__PURE__*/_jsx(AnimatePresence,{mode:\"sync\",children:iteration===sentenceIndex&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexWrap:\"wrap\",width:\"100%\",justifyContent:alignment===\"center\"?\"center\":alignment===\"right\"?\"flex-end\":\"flex-start\",gap:0},children:segments.map((segment,segmentIndex)=>/*#__PURE__*/_jsx(\"div\",{style:{display:\"inline-flex\",flexWrap:\"nowrap\",whiteSpace:\"pre\",overflow:\"hidden\"},children:segment.chars.map(({char,originalIndex})=>{const baseDelay=originalIndex/(sentence.length-1);const delayInitial=baseDelay*(speedFormatted*.3)// 30% of speed\n    ;const delayAnimate=baseDelay*(speedFormatted*.4)// 40% of speed\n    ;const delayExit=baseDelay*(speedFormatted*.3)// 30% of speed\n    ;const itemTransition={initial:{transform:`translate(0px, 150%)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayInitial*stagger}},animate:{transform:`translate(0px, 0px)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayAnimate*stagger}},exit:{transform:`translate(0px, -150%)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayExit*stagger}}};return /*#__PURE__*/_jsx(motion.div,{variants:itemTransition,initial:isFirstRender?false:\"initial\",animate:isFirstRender?false:\"animate\",exit:\"exit\",style:{display:\"inline-block\"},children:/*#__PURE__*/_jsx(Tag,{style:{fontSize:\"24px\",...font,color,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",opacity:1},children:char})},sentence+originalIndex);})},segmentIndex))})})},sentenceIndex);})})]});}StaggeredTextCycleV2.displayName=\"Staggered Cycle\";addPropertyControls(StaggeredTextCycleV2,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"DESIGNER, DEVELOPER\",description:\"Divide the words with a comma (,) if you want to display them separately.\"},speed:{type:ControlType.Number,title:\"Speed\",defaultValue:MAX_SPEED/2,min:1,max:MAX_SPEED},delay:{type:ControlType.Number,title:\"Delay\",defaultValue:1,min:0,max:10,unit:\"s\"},stagger:{title:\"Stagger\",description:\"The delay between each word.\",type:ControlType.Number,defaultValue:.5,step:.1,min:0,max:1},font:{title:\"Font\",type:ControlType.Font,controls:\"extended\"},alignment:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Alignment\",defaultValue:\"left\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"]},userSelect:{title:\"User Select\",type:ControlType.Boolean,defaultValue:false},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#ffffff\"},tag:{type:ControlType.Enum,title:\"Tag\",defaultValue:\"p\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"]},loop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"StaggeredTextCycleV2\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./StaggeredTextCycle_Prod.map", "let e;var f=r=>{if(!e){let o=function(t,n){return r.createElement(\"svg\",{width:\"100%\",height:\"1.5em\",strokeWidth:1.5,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",color:\"currentColor\",ref:n,...t},r.createElement(\"path\",{d:\"M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))};e=r.forwardRef(o)}return e};export{f as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/iconoir-icons/Home.js@0.0.11\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"Accessibility\",\"AccessibilitySign\",\"AccessibilityTech\",\"Activity\",\"AddCircledOutline\",\"AddDatabaseScript\",\"AddFolder\",\"AddFrame\",\"AddHexagon\",\"AddKeyframe\",\"AddKeyframeAlt\",\"AddKeyframes\",\"AddLens\",\"AddPage\",\"AddPinAlt\",\"AddSelection\",\"AddSquare\",\"AddToCart\",\"AddUser\",\"Airplane\",\"AirplaneHelix\",\"AirplaneHelix45Deg\",\"AirplaneOff\",\"AirplaneRotation\",\"Airplay\",\"Alarm\",\"Album\",\"AlbumCarousel\",\"AlbumList\",\"AlbumOpen\",\"AlignBottomBox\",\"AlignCenter\",\"AlignJustify\",\"AlignLeft\",\"AlignLeftBox\",\"AlignRight\",\"AlignRightBox\",\"AlignTopBox\",\"Antenna\",\"AntennaOff\",\"AntennaSignal\",\"AppNotification\",\"Apple\",\"AppleHalf\",\"AppleHalfAlt\",\"AppleImac2021\",\"AppleImac2021Side\",\"AppleSwift\",\"ArSymbol\",\"Archery\",\"Archive\",\"AreaSearch\",\"ArrowArchery\",\"ArrowDown\",\"ArrowDownCircled\",\"ArrowLeft\",\"ArrowLeftCircled\",\"ArrowRight\",\"ArrowRightCircled\",\"ArrowSeparate\",\"ArrowUnion\",\"ArrowUnionVertical\",\"ArrowUp\",\"ArrowUpCircled\",\"Asana\",\"Attachment\",\"AutoFlash\",\"Bag\",\"BasketBall\",\"BasketBallAlt\",\"BasketballField\",\"Battery25\",\"Battery50\",\"Battery75\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryIndicator\",\"BatteryWarning\",\"BeachBag\",\"BeachBagBig\",\"Bell\",\"BellNotification\",\"BellOff\",\"Bicycle\",\"Bin\",\"BinAdd\",\"BinFull\",\"BinHalf\",\"BinMinus\",\"Bluetooth\",\"Bold\",\"BoldSquareOutline\",\"BookmarkCircled\",\"BookmarkEmpty\",\"BorderBl\",\"BorderBottom\",\"BorderBr\",\"BorderInner\",\"BorderLeft\",\"BorderOut\",\"BorderRight\",\"BorderTl\",\"BorderTop\",\"BorderTr\",\"BounceLeft\",\"BounceRight\",\"BowlingBall\",\"Box\",\"BoxIso\",\"BoxingGlove\",\"BubbleDownload\",\"BubbleError\",\"BubbleIncome\",\"BubbleOutcome\",\"BubbleSearch\",\"BubbleStar\",\"BubbleUpload\",\"BubbleWarning\",\"Building\",\"BusOutline\",\"BusStop\",\"Calculator\",\"Calendar\",\"Camera\",\"Cancel\",\"CarOutline\",\"Cart\",\"CartAlt\",\"Cash\",\"Cell4X4\",\"CenterAlign\",\"ChatAdd\",\"ChatBubble\",\"ChatBubbleCheck\",\"ChatBubbleCheck1\",\"ChatBubbleEmpty\",\"ChatBubbleError\",\"ChatBubbleQuestion\",\"ChatBubbleTranslate\",\"ChatBubbleWarning\",\"ChatLines\",\"ChatRemove\",\"Check\",\"CheckCircledOutline\",\"Chocolate\",\"Chromecast\",\"ChromecastActive\",\"Church\",\"ChurchAlt\",\"CinemaOld\",\"Circle\",\"City\",\"ClockOutline\",\"Closet\",\"Cloud\",\"CloudBookAlt\",\"CloudCheck\",\"CloudDesync\",\"CloudDownload\",\"CloudError\",\"CloudSunny\",\"CloudSync\",\"CloudUpload\",\"Code\",\"Codepen\",\"Coin\",\"CollageFrame\",\"Collapse\",\"ColorFilter\",\"ColorPicker\",\"ColorPickerEmpty\",\"Combine\",\"CompactDisc\",\"Compress\",\"CompressLines\",\"Computer\",\"ControlSlider\",\"Copy\",\"Copyright\",\"CornerBottomLeft\",\"CornerBottomRight\",\"CornerTopLeft\",\"CornerTopRight\",\"Cpu\",\"CpuWarning\",\"CrackedEgg\",\"CreativeCommons\",\"CreditCard\",\"CreditCard2\",\"Crop\",\"CropRotateBl\",\"CropRotateBr\",\"CropRotateTl\",\"CropRotateTr\",\"Css3\",\"CursorPointer\",\"Cut\",\"CutAlt\",\"Cycling\",\"DashFlag\",\"Dashboard\",\"DashboardDots\",\"DashboardSpeed\",\"DataTransferBoth\",\"DataTransferCheck\",\"DataTransferDown\",\"DataTransferUp\",\"DataTransferWarning\",\"DatabaseBackup\",\"DatabaseExport\",\"DatabaseMonitor\",\"DatabaseRestore\",\"DatabaseScript\",\"DatabaseSettings\",\"DatabaseStar\",\"DatabaseStats\",\"Db\",\"DbCheck\",\"DbError\",\"DbSearch\",\"DbStar\",\"DbWarning\",\"DeCompress\",\"DeleteCircledOutline\",\"DesignPencil\",\"Dialpad\",\"Display4K\",\"DivideSelection1\",\"DivideSelection2\",\"DocSearch\",\"DocSearchAlt\",\"DocStar\",\"DocStarAlt\",\"Dollar\",\"DomoticIssue\",\"Donate\",\"DoubleCheck\",\"DownRoundArrow\",\"Download\",\"DragHandGesture\",\"Drawer\",\"Dribbble\",\"Droplet\",\"DropletHalf\",\"EaseIn\",\"EaseInControlPoint\",\"EaseInOut\",\"EaseOut\",\"EaseOutControlPoint\",\"Edit\",\"EditPencil\",\"Egg\",\"Eject\",\"ElectronicsChip\",\"Emoji\",\"EmojiBall\",\"EmojiBlinkLeft\",\"EmojiBlinkRight\",\"EmojiLookBottom\",\"EmojiLookLeft\",\"EmojiLookRight\",\"EmojiLookTop\",\"EmojiQuite\",\"EmojiReally\",\"EmojiSad\",\"EmojiSatisfied\",\"EmojiSingLeft\",\"EmojiSingLeftNote\",\"EmojiSingRight\",\"EmojiSingRightNote\",\"EmojiSurprise\",\"EmojiSurpriseAlt\",\"EmojiTalkingAngry\",\"EmojiTalkingHappy\",\"EmojiThinkLeft\",\"EmojiThinkRight\",\"EmptyPage\",\"Enlarge\",\"EnlargeRoundArrow\",\"Euro\",\"EuroSquare\",\"EvCharge\",\"EvChargeAlt\",\"EvPlug\",\"EvPlugCharging\",\"EvPlugError\",\"EvStation\",\"Exclude\",\"Expand\",\"ExpandLines\",\"EyeAlt\",\"EyeClose\",\"EyeEmpty\",\"EyeOff\",\"FaceId\",\"Facebook\",\"FacebookSquared\",\"Farm\",\"FastArrowDown\",\"FastArrowDownBox\",\"FastArrowLeft\",\"FastArrowLeftBox\",\"FastArrowRight\",\"FastArrowRightBox\",\"FastArrowTop\",\"FastArrowUpBox\",\"FastBottomCircle\",\"FastLeftCircle\",\"FastRightCircle\",\"FastTopCircle\",\"Female\",\"Figma\",\"FileNotFound\",\"Filter\",\"FilterAlt\",\"Finder\",\"Fingerprint\",\"FingerprintCircled\",\"FingerprintCircledOk\",\"FingerprintPhone\",\"FingerprintScan\",\"FingerprintSquared\",\"Fishing\",\"Flare\",\"Flash\",\"FlashOff\",\"Flip\",\"FlipReverse\",\"Flower\",\"Fog\",\"Folder\",\"FolderAlert\",\"FontSize\",\"Football\",\"FootballBall\",\"ForwardOutline\",\"Frame\",\"FrameAlt\",\"FrameAltEmpty\",\"FrameSelect\",\"FrameSimple\",\"FrameTool\",\"Fridge\",\"Fx\",\"Garage\",\"Gas\",\"GasTank\",\"GasTankDrop\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitHub\",\"GitHubOutline\",\"GitLabFull\",\"GitMerge\",\"GlassEmpty\",\"GlassHalf\",\"GlassHalfAlt\",\"Glasses\",\"Golf\",\"Google\",\"GoogleCircled\",\"GoogleDocs\",\"GoogleDrive\",\"GoogleDriveCheck\",\"GoogleDriveSync\",\"GoogleDriveWarning\",\"GoogleHome\",\"GoogleOne\",\"Gps\",\"GraphDown\",\"GraphUp\",\"GridAdd\",\"GridMinus\",\"GridRemove\",\"Group\",\"Gym\",\"HalfMoon\",\"HandBrake\",\"Handbag\",\"HardDrive\",\"Hat\",\"Hd\",\"Hdr\",\"Headset\",\"HeadsetCharge\",\"HeadsetHelp\",\"HeadsetIssue\",\"HealthShield\",\"Healthcare\",\"Heart\",\"HeavyRain\",\"Heptagon\",\"HerSlips\",\"HesaWarningOutline\",\"Hexagon\",\"HexagonAlt\",\"HighPriority\",\"HistoricShield\",\"HistoricShieldAlt\",\"Home\",\"HomeAlt\",\"HomeAltSlim\",\"HomeAltSlimHoriz\",\"HomeHospital\",\"HomeSimple\",\"HomeSimpleDoor\",\"HomeUser\",\"Hospital\",\"HospitalSign\",\"Hourglass\",\"Html5\",\"Iconoir\",\"Import\",\"Industry\",\"InfoEmpty\",\"InputField\",\"InputSearch\",\"Instagram\",\"Intersect\",\"IntersectAlt\",\"IosSettings\",\"IrisScan\",\"Italic\",\"ItalicSquareOutline\",\"Journal\",\"JournalPage\",\"KeyAlt\",\"KeyAltBack\",\"KeyAltMinus\",\"KeyAltPlus\",\"KeyAltRemove\",\"Keyframe\",\"KeyframeAlignCenter\",\"KeyframePosition\",\"Keyframes\",\"KeyframesCouple\",\"LabelOutline\",\"Lamp\",\"Language\",\"Laptop\",\"LaptopCharging\",\"LaptopFix\",\"LaptopIssue\",\"LargeSuitcase\",\"LayoutLeft\",\"LayoutRight\",\"Leaderboard\",\"LeaderboardStar\",\"LeftRoundArrow\",\"Lens\",\"Lifebelt\",\"LightBulb\",\"LightBulbOff\",\"LightBulbOn\",\"LineSpace\",\"Linear\",\"Link\",\"LinkedIn\",\"List\",\"LoadActionFloppy\",\"Lock\",\"LockKey\",\"LogDenied\",\"LogIn\",\"LogOut\",\"LongArrowDownLeft\",\"LongArrowDownRight\",\"LongArrowLeftDown\",\"LongArrowLeftUp\",\"LongArrowRightDown\",\"LongArrowRightUp\",\"LongArrowRightUp1\",\"LongArrowUpLeft\",\"LongArrowUpRight\",\"LotOfCash\",\"MacControlKey\",\"MacDock\",\"MacOptionKey\",\"MacOsWindow\",\"Mail\",\"MailOpened\",\"Male\",\"Map\",\"MapIssue\",\"MapsArrow\",\"MapsArrowDiagonal\",\"MapsArrowIssue\",\"MapsGoStraight\",\"MapsTurnBack\",\"MapsTurnLeft\",\"MapsTurnRight\",\"MaskSquare\",\"Maximize\",\"Medal\",\"Medal1St\",\"Medium\",\"Megaphone\",\"Menu\",\"MenuScale\",\"Message\",\"MessageAlert\",\"MessageText\",\"Metro\",\"Mic\",\"MicAdd\",\"MicCheck\",\"MicMute\",\"MicRemove\",\"MicSpeaking\",\"MicWarning\",\"Minus\",\"Minus1\",\"MinusHexagon\",\"MinusPinAlt\",\"MinusSquare\",\"MissingFont\",\"ModernTv\",\"ModernTv4K\",\"MoneySquare\",\"MoonSat\",\"MoreHoriz\",\"MoreVert\",\"MouseButtonLeft\",\"MouseButtonRight\",\"MouseScrollWheel\",\"MoveDown\",\"MoveLeft\",\"MoveRight\",\"MoveRuler\",\"MoveUp\",\"Movie\",\"MultiBubble\",\"MultiMacOsWindow\",\"MultiWindow\",\"MultiplePages\",\"MultiplePagesAdd\",\"MultiplePagesDelete\",\"MultiplePagesEmpty\",\"MultiplePagesRemove\",\"Music1\",\"Music1Add\",\"Music2\",\"Music2Add\",\"NavArrowDown\",\"NavArrowLeft\",\"NavArrowRight\",\"NavArrowUp\",\"Navigator\",\"NavigatorAlt\",\"Network\",\"NetworkAlt\",\"NetworkLeft\",\"NetworkRight\",\"NoBattery\",\"NoCoin\",\"NoCreditCard\",\"NoLock\",\"NoSmoking\",\"Notes\",\"Octagon\",\"OilIndustry\",\"OpenInBrowser\",\"OpenInWindow\",\"OpenVpn\",\"OrangeHalf\",\"OrangeSlice\",\"OrangeSliceAlt\",\"Page\",\"PageFlip\",\"PageSearch\",\"PageStar\",\"Palette\",\"PanoramaEnlarge\",\"PanoramaReduce\",\"Pants\",\"PantsAlt\",\"PasswordCursor\",\"PasswordError\",\"PasswordPass\",\"PauseOutline\",\"PcMouse\",\"PenConnectBluetooth\",\"PenConnectWifi\",\"PenTablet\",\"PenTabletConnectUsb\",\"PenTabletConnectWifi\",\"Pentagon\",\"Percentage\",\"PercentageRound\",\"PercentageSquare\",\"PharmacyCircledCross\",\"PharmacySquaredCross\",\"Phone\",\"PhoneAdd\",\"PhoneDelete\",\"PhoneDisabled\",\"PhoneIncome\",\"PhoneOutcome\",\"PhonePaused\",\"PhoneRemove\",\"Pin\",\"PinAlt\",\"PizzaSlice\",\"Planet\",\"PlanetAlt\",\"PlanetSat\",\"PlayOutline\",\"Playlist\",\"PlaylistAdd\",\"PlaylistPlay\",\"PlugTypeA\",\"PlugTypeC\",\"PlugTypeG\",\"PlugTypeL\",\"Plus\",\"Pocket\",\"Position\",\"PositionAlign\",\"Pound\",\"PrecisionTool\",\"Printer\",\"PrinterAlt\",\"PrintingPage\",\"PriorityDown\",\"PriorityUp\",\"ProfileCircled\",\"Prohibition\",\"QuestionMark\",\"QuestionMarkCircle\",\"Rain\",\"ReceiveDollars\",\"ReceiveEuros\",\"ReceivePounds\",\"ReceiveYens\",\"Redo\",\"RedoAction\",\"RedoCircle\",\"Reduce\",\"ReduceRoundArrow\",\"Refresh\",\"RefreshCircular\",\"RefreshDouble\",\"ReminderHandGesture\",\"RemoveDatabaseScript\",\"RemoveEmpty\",\"RemoveFolder\",\"RemoveFrame\",\"RemoveFromCart\",\"RemoveKeyframe\",\"RemoveKeyframeAlt\",\"RemoveKeyframes\",\"RemovePage\",\"RemovePinAlt\",\"RemoveSelection\",\"RemoveSquare\",\"RemoveUser\",\"Repeat\",\"RepeatOnce\",\"ReportColumns\",\"Reports\",\"RewindOutline\",\"Rhombus\",\"RightRoundArrow\",\"Rings\",\"RotateCameraLeft\",\"RotateCameraRight\",\"RssFeed\",\"RssFeedSquared\",\"Ruler\",\"RulerAdd\",\"RulerCombine\",\"RulerRemove\",\"Running\",\"Sandals\",\"SaveActionFloppy\",\"SaveFloppyDisk\",\"ScaleFrameEnlarge\",\"ScaleFrameReduce\",\"Scanning\",\"Scarf\",\"Scissor\",\"ScissorAlt\",\"SeaAndSun\",\"SeaWaves\",\"Search\",\"SearchFont\",\"SecurityPass\",\"Selection\",\"SelectiveTool\",\"SendDollars\",\"SendEuros\",\"SendPounds\",\"SendYens\",\"Server\",\"ServerConnection\",\"Settings\",\"SettingsCloud\",\"SettingsProfiles\",\"ShareAndroid\",\"ShareIos\",\"Shield\",\"ShieldAdd\",\"ShieldAlert\",\"ShieldAlt\",\"ShieldBroken\",\"ShieldCheck\",\"ShieldCross\",\"ShieldDownload\",\"ShieldEye\",\"ShieldLoading\",\"ShieldMinus\",\"ShieldQuestion\",\"ShieldSearch\",\"ShieldUpload\",\"Shop\",\"ShopAlt\",\"ShoppingBag\",\"ShoppingBagAdd\",\"ShoppingBagAlt\",\"ShoppingBagArrowDown\",\"ShoppingBagArrowUp\",\"ShoppingBagCheck\",\"ShoppingBagIssue\",\"ShoppingBagRemove\",\"ShoppingCode\",\"ShoppingCodeCheck\",\"ShoppingCodeError\",\"ShortPants\",\"ShortPantsAlt\",\"Shuffle\",\"SimpleCart\",\"SingleTapGesture\",\"Skateboard\",\"Skateboarding\",\"SkipNextOutline\",\"SkipPrevOutline\",\"SmallShop\",\"SmallShopAlt\",\"SmartphoneDevice\",\"Smoking\",\"Snow\",\"SnowFlake\",\"Soap\",\"SoccerBall\",\"SortDown\",\"SortUp\",\"SoundHigh\",\"SoundLow\",\"SoundMin\",\"SoundOff\",\"SpockHandGesture\",\"Square\",\"StarDashed\",\"StarHalfDashed\",\"StarOutline\",\"StatDown\",\"StatUp\",\"StatsReport\",\"StatsSquareDown\",\"StatsSquareUp\",\"Stretching\",\"StyleBorder\",\"Substract\",\"Suggestion\",\"SunLight\",\"Swimming\",\"SwipeDownGesture\",\"SwipeLeftGesture\",\"SwipeRightGesture\",\"SwipeUpGesture\",\"SwitchOffOutline\",\"SwitchOnOutline\",\"SystemRestart\",\"SystemShut\",\"Table\",\"Table2Columns\",\"TableRows\",\"Telegram\",\"TelegramCircled\",\"TennisBall\",\"TennisBallAlt\",\"TerminalOutline\",\"TerminalSimple\",\"Text\",\"TextAlt\",\"TextSize\",\"ThreeStars\",\"Thunderstorm\",\"TikTok\",\"Timer\",\"TimerOff\",\"Tower\",\"TowerCheck\",\"TowerNoAccess\",\"TowerWarning\",\"Trademark\",\"TrainOutline\",\"Tram\",\"TransitionBottom\",\"TransitionLeft\",\"TransitionRight\",\"TransitionTop\",\"Translate\",\"Trash\",\"Treadmill\",\"Trekking\",\"Trello\",\"Triangle\",\"TriangleFlag\",\"TriangleFlagCircle\",\"TriangleFlagFull\",\"Trophy\",\"Tunnel\",\"Tv\",\"TvFix\",\"TvIssue\",\"Twitter\",\"TwitterVerifiedBadge\",\"Type\",\"UmbrellaFull\",\"Underline\",\"Undo\",\"UndoAction\",\"UndoCircle\",\"Union\",\"UnionAlt\",\"UnionHorizAlt\",\"Unity\",\"Unity5\",\"UpRoundArrow\",\"Upload\",\"UploadSquareOutline\",\"Usb\",\"User\",\"UserBag\",\"UserCart\",\"UserCircleAlt\",\"UserScan\",\"UserSquareAlt\",\"VerifiedBadge\",\"VerifiedUser\",\"VideoCamera\",\"VideoCameraOff\",\"ViewColumns2\",\"ViewColumns3\",\"ViewGrid\",\"ViewStructureDown\",\"ViewStructureUp\",\"Voice\",\"VoiceCircled\",\"VoiceCircledLock\",\"VoiceError\",\"VoiceOk\",\"VoicePhone\",\"VoiceScan\",\"VoiceSquared\",\"VrSymbol\",\"Waist\",\"Walking\",\"WarningSquareOutline\",\"WebWindow\",\"WebWindowClose\",\"Weight\",\"WeightAlt\",\"WhiteFlag\",\"Wifi\",\"WifiIssue\",\"WifiOff\",\"WifiSignalNone\",\"Wind\",\"WrapText\",\"Wristwatch\",\"Yen\",\"YenSquare\",\"Yoga\",\"YouTube\",\"ZoomIn\",\"ZoomOut\",];const moduleBaseUrl=\"https://framer.com/m/iconoir-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * ICONOIR\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.11`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{size:\"100$%\",style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Iconoir\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Iconoir site](https://iconoir.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Iconoir.map", "// Generated by Framer (eb93fa7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"KS1vNajKT\",\"kfWTpo0Uk\",\"b1j3r4mIu\"];const serializationHash=\"framer-EvV3E\";const variantClassNames={b1j3r4mIu:\"framer-v-4h01ea\",kfWTpo0Uk:\"framer-v-osrfbn\",KS1vNajKT:\"framer-v-1nrvgxa\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,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={Testimonial_BASE_Desktop:\"KS1vNajKT\",Testimonial_BASE_Phone:\"b1j3r4mIu\",Testimonial_BASE_Tablet:\"kfWTpo0Uk\"};const getProps=({colorBar,colorFonction,colorNom,colorTexte,fonction,height,id,imageBG,nom,t_moignage,width,...props})=>{return{...props,DKrw2C4Sz:colorNom??props.DKrw2C4Sz??\"rgb(0, 0, 0)\",Fc3hjb5L5:nom??props.Fc3hjb5L5??\"Carline Aulnette\",FvjsGrefH:t_moignage??props.FvjsGrefH??\"Arno JEGU est\\xa0un motion designer vid\\xe9o\\xa0auquel notre association de chirurgiens-dentistes bretons (URPS CDLB) a fait appel d\\xe8s 2023 afin de cr\\xe9er avec et pour nous 6 vid\\xe9os courtes et ludiques sur l'\\xe9coresponsabilit\\xe9 en cabinet dentaire. Arno a su nous\\xa0aiguiller durant\\xa0le processus de cr\\xe9ation lors de plusieurs r\\xe9unions avec\\xa0les \\xe9lus et les salari\\xe9es\\xa0de l'URPS, et a parfaitement r\\xe9ussi\\xa0\\xe0 retranscrire \\xe0 l'image, en anim\\xe9, les\\xa0sc\\xe9narios transmis par nos lib\\xe9raux de sant\\xe9. Les administrateurs de l'URPS\\xa0CDLB\\xa0ont trouv\\xe9 son\\xa0travail\\xa0de tr\\xe8s belle qualit\\xe9 et le recommandent.\\xa0Nous avons \\xe9t\\xe9\\xa0ravis\\xa0de travailler avec\\xa0lui\\xa0sur\\xa0notre\\xa0projet, et le referons probablement si l'occasion se pr\\xe9sente. Nos 6 vid\\xe9os \\\"Sant\\xe9 environnement\\\" sont tout \\xe0 fait transposables \\xe0 d'autres acteurs et secteurs de la sant\\xe9. N'h\\xe9sitez pas \\xe0 le contacter !\",G6kx7hLqH:colorBar??props.G6kx7hLqH??\"rgb(153, 238, 255)\",GL8Hlt5c8:imageBG??props.GL8Hlt5c8??{alt:\"JEGU paint\",pixelHeight:528,pixelWidth:448,src:\"https://framerusercontent.com/images/MID204yELYVxkYgZmj1vXd12jTs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MID204yELYVxkYgZmj1vXd12jTs.png 448w\"},OiORPcAB_:colorFonction??props.OiORPcAB_??\"rgb(0, 0, 0)\",tO4TKp6kS:colorTexte??props.tO4TKp6kS??\"rgb(0, 0, 0)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"KS1vNajKT\",wVGFQWdlb:fonction??props.wVGFQWdlb??\"Charg\\xe9e de missions URPS CDLB\"};};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,FvjsGrefH,Fc3hjb5L5,wVGFQWdlb,GL8Hlt5c8,G6kx7hLqH,tO4TKp6kS,DKrw2C4Sz,OiORPcAB_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KS1vNajKT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:528,pixelWidth:448,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(GL8Hlt5c8)},className:cx(scopingClassNames,\"framer-1nrvgxa\",className,classNames),\"data-framer-name\":\"Testimonial_BASE_Desktop\",layoutDependency:layoutDependency,layoutId:\"KS1vNajKT\",ref:refBinding,style:{borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,...style},...addPropertyOverrides({b1j3r4mIu:{\"data-framer-name\":\"Testimonial_BASE_Phone\"},kfWTpo0Uk:{\"data-framer-name\":\"Testimonial_BASE_Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-tO4TKp6kS-CBFtf9aEr))\"},children:\"Arno JEGU est\\xa0un motion designer vid\\xe9o\\xa0rennais auquel notre association de chirurgiens-dentistes bretons (URPS CDLB) a fait appel d\\xe8s 2023 afin de cr\\xe9er avec et pour nous 6 vid\\xe9os courtes et ludiques sur l'\\xe9coresponsabilit\\xe9 en cabinet dentaire. Arno a su nous\\xa0aiguiller durant\\xa0le processus de cr\\xe9ation lors de plusieurs r\\xe9unions avec\\xa0les \\xe9lus et les salari\\xe9es\\xa0de l'URPS, et a parfaitement r\\xe9ussi\\xa0\\xe0 retranscrire \\xe0 l'image, en anim\\xe9, les\\xa0sc\\xe9narios transmis par nos lib\\xe9raux de sant\\xe9. Les administrateurs de l'URPS\\xa0CDLB\\xa0ont trouv\\xe9 son\\xa0travail\\xa0de tr\\xe8s belle qualit\\xe9 et le recommandent.\\xa0Nous avons \\xe9t\\xe9\\xa0ravis\\xa0de travailler avec\\xa0lui\\xa0sur\\xa0notre\\xa0projet, et le referons probablement si l'occasion se pr\\xe9sente. Nos 6 vid\\xe9os \\\"Sant\\xe9 environnement\\\" sont tout \\xe0 fait transposables \\xe0 d'autres acteurs et secteurs de la sant\\xe9. N'h\\xe9sitez pas \\xe0 le contacter !\"})}),className:\"framer-nciqub\",fonts:[\"GF;Chivo-regular\"],layoutDependency:layoutDependency,layoutId:\"ZOO9kelxz\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-tO4TKp6kS-CBFtf9aEr)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-tO4TKp6kS-CBFtf9aEr\":tO4TKp6kS},text:FvjsGrefH,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({b1j3r4mIu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-tO4TKp6kS-CBFtf9aEr))\"},children:\"Arno JEGU est\\xa0un motion designer vid\\xe9o\\xa0rennais auquel notre association de chirurgiens-dentistes bretons (URPS CDLB) a fait appel d\\xe8s 2023 afin de cr\\xe9er avec et pour nous 6 vid\\xe9os courtes et ludiques sur l'\\xe9coresponsabilit\\xe9 en cabinet dentaire. Arno a su nous\\xa0aiguiller durant\\xa0le processus de cr\\xe9ation lors de plusieurs r\\xe9unions avec\\xa0les \\xe9lus et les salari\\xe9es\\xa0de l'URPS, et a parfaitement r\\xe9ussi\\xa0\\xe0 retranscrire \\xe0 l'image, en anim\\xe9, les\\xa0sc\\xe9narios transmis par nos lib\\xe9raux de sant\\xe9. Les administrateurs de l'URPS\\xa0CDLB\\xa0ont trouv\\xe9 son\\xa0travail\\xa0de tr\\xe8s belle qualit\\xe9 et le recommandent.\\xa0Nous avons \\xe9t\\xe9\\xa0ravis\\xa0de travailler avec\\xa0lui\\xa0sur\\xa0notre\\xa0projet, et le referons probablement si l'occasion se pr\\xe9sente. Nos 6 vid\\xe9os \\\"Sant\\xe9 environnement\\\" sont tout \\xe0 fait transposables \\xe0 d'autres acteurs et secteurs de la sant\\xe9. N'h\\xe9sitez pas \\xe0 le contacter !\"})})},kfWTpo0Uk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-tO4TKp6kS-CBFtf9aEr))\"},children:\"Arno JEGU est\\xa0un motion designer vid\\xe9o\\xa0rennais auquel notre association de chirurgiens-dentistes bretons (URPS CDLB) a fait appel d\\xe8s 2023 afin de cr\\xe9er avec et pour nous 6 vid\\xe9os courtes et ludiques sur l'\\xe9coresponsabilit\\xe9 en cabinet dentaire. Arno a su nous\\xa0aiguiller durant\\xa0le processus de cr\\xe9ation lors de plusieurs r\\xe9unions avec\\xa0les \\xe9lus et les salari\\xe9es\\xa0de l'URPS, et a parfaitement r\\xe9ussi\\xa0\\xe0 retranscrire \\xe0 l'image, en anim\\xe9, les\\xa0sc\\xe9narios transmis par nos lib\\xe9raux de sant\\xe9. Les administrateurs de l'URPS\\xa0CDLB\\xa0ont trouv\\xe9 son\\xa0travail\\xa0de tr\\xe8s belle qualit\\xe9 et le recommandent.\\xa0Nous avons \\xe9t\\xe9\\xa0ravis\\xa0de travailler avec\\xa0lui\\xa0sur\\xa0notre\\xa0projet, et le referons probablement si l'occasion se pr\\xe9sente. Nos 6 vid\\xe9os \\\"Sant\\xe9 environnement\\\" sont tout \\xe0 fait transposables \\xe0 d'autres acteurs et secteurs de la sant\\xe9. N'h\\xe9sitez pas \\xe0 le contacter !\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dwwo7x\",layoutDependency:layoutDependency,layoutId:\"I0FYgxKLt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18crf2q\",layoutDependency:layoutDependency,layoutId:\"HTLJ980Jd\",style:{backgroundColor:G6kx7hLqH}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rcgovi\",layoutDependency:layoutDependency,layoutId:\"KN_H2FXvz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-DKrw2C4Sz-CBFtf9aEr))\"},children:\"Carline Aulnette\"})}),className:\"framer-1uw1w5\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],layoutDependency:layoutDependency,layoutId:\"SKPmJFA9R\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-DKrw2C4Sz-CBFtf9aEr)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-DKrw2C4Sz-CBFtf9aEr\":DKrw2C4Sz},text:Fc3hjb5L5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-OiORPcAB_-CBFtf9aEr))\"},children:\"Charg\\xe9e de missions URPS CDLB\"})}),className:\"framer-ufiegj\",fonts:[\"GF;Chivo-regular\"],layoutDependency:layoutDependency,layoutId:\"Xj0wna8E6\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-OiORPcAB_-CBFtf9aEr)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-OiORPcAB_-CBFtf9aEr\":OiORPcAB_},text:wVGFQWdlb,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EvV3E.framer-oblekq, .framer-EvV3E .framer-oblekq { display: block; }\",\".framer-EvV3E.framer-1nrvgxa { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 413px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EvV3E .framer-nciqub { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EvV3E .framer-dwwo7x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 164px; }\",\".framer-EvV3E .framer-18crf2q { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 5px; }\",\".framer-EvV3E .framer-1rcgovi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-EvV3E .framer-1uw1w5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 155px; word-break: break-word; word-wrap: break-word; }\",\".framer-EvV3E .framer-ufiegj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 156px; word-break: break-word; word-wrap: break-word; }\",\".framer-EvV3E.framer-v-osrfbn.framer-1nrvgxa { padding: 50px 20px 50px 20px; width: 350px; }\",\".framer-EvV3E.framer-v-4h01ea.framer-1nrvgxa { padding: 40px 20px 50px 20px; width: 250px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 479\n * @framerIntrinsicWidth 413\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kfWTpo0Uk\":{\"layout\":[\"fixed\",\"auto\"]},\"b1j3r4mIu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"FvjsGrefH\":\"t_moignage\",\"Fc3hjb5L5\":\"nom\",\"wVGFQWdlb\":\"fonction\",\"GL8Hlt5c8\":\"imageBG\",\"G6kx7hLqH\":\"colorBar\",\"tO4TKp6kS\":\"colorTexte\",\"DKrw2C4Sz\":\"colorNom\",\"OiORPcAB_\":\"colorFonction\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCBFtf9aEr=withCSS(Component,css,\"framer-EvV3E\");export default FramerCBFtf9aEr;FramerCBFtf9aEr.displayName=\"Testimonial\";FramerCBFtf9aEr.defaultProps={height:479,width:413};addPropertyControls(FramerCBFtf9aEr,{variant:{options:[\"KS1vNajKT\",\"kfWTpo0Uk\",\"b1j3r4mIu\"],optionTitles:[\"Testimonial_BASE_Desktop\",\"Testimonial_BASE_Tablet\",\"Testimonial_BASE_Phone\"],title:\"Variant\",type:ControlType.Enum},FvjsGrefH:{defaultValue:\"Arno JEGU est\\xa0un motion designer vid\\xe9o\\xa0auquel notre association de chirurgiens-dentistes bretons (URPS CDLB) a fait appel d\\xe8s 2023 afin de cr\\xe9er avec et pour nous 6 vid\\xe9os courtes et ludiques sur l'\\xe9coresponsabilit\\xe9 en cabinet dentaire. Arno a su nous\\xa0aiguiller durant\\xa0le processus de cr\\xe9ation lors de plusieurs r\\xe9unions avec\\xa0les \\xe9lus et les salari\\xe9es\\xa0de l'URPS, et a parfaitement r\\xe9ussi\\xa0\\xe0 retranscrire \\xe0 l'image, en anim\\xe9, les\\xa0sc\\xe9narios transmis par nos lib\\xe9raux de sant\\xe9. Les administrateurs de l'URPS\\xa0CDLB\\xa0ont trouv\\xe9 son\\xa0travail\\xa0de tr\\xe8s belle qualit\\xe9 et le recommandent.\\xa0Nous avons \\xe9t\\xe9\\xa0ravis\\xa0de travailler avec\\xa0lui\\xa0sur\\xa0notre\\xa0projet, et le referons probablement si l'occasion se pr\\xe9sente. Nos 6 vid\\xe9os \\\"Sant\\xe9 environnement\\\" sont tout \\xe0 fait transposables \\xe0 d'autres acteurs et secteurs de la sant\\xe9. N'h\\xe9sitez pas \\xe0 le contacter !\",displayTextArea:false,title:\"T\\xe9moignage\",type:ControlType.String},Fc3hjb5L5:{defaultValue:\"Carline Aulnette\",displayTextArea:false,title:\"Nom\",type:ControlType.String},wVGFQWdlb:{defaultValue:\"Charg\\xe9e de missions URPS CDLB\",displayTextArea:false,title:\"Fonction\",type:ControlType.String},GL8Hlt5c8:{__defaultAssetReference:\"data:framer/asset-reference,MID204yELYVxkYgZmj1vXd12jTs.png?originalFilename=Bg-Rectangle-032.png&preferredSize=auto\",__vekterDefault:{alt:\"JEGU paint\",assetReference:\"data:framer/asset-reference,MID204yELYVxkYgZmj1vXd12jTs.png?originalFilename=Bg-Rectangle-032.png&preferredSize=auto\"},title:\"Image BG\",type:ControlType.ResponsiveImage},G6kx7hLqH:{defaultValue:\"rgb(153, 238, 255)\",title:\"Color Bar\",type:ControlType.Color},tO4TKp6kS:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color texte\",type:ControlType.Color},DKrw2C4Sz:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color Nom\",type:ControlType.Color},OiORPcAB_:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color Fonction\",type:ControlType.Color}});addFonts(FramerCBFtf9aEr,[{explicitInter:true,fonts:[{family:\"Chivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivo/v20/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ukmDSFXjQiQ.woff2\",weight:\"400\"},{family:\"PP Neue Machina Inktrap Ultrabold\",source:\"custom\",url:\"https://framerusercontent.com/assets/y7okTdbrJ8DsfKzta2dDKZ0zzY.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCBFtf9aEr\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"FvjsGrefH\\\":\\\"t_moignage\\\",\\\"Fc3hjb5L5\\\":\\\"nom\\\",\\\"wVGFQWdlb\\\":\\\"fonction\\\",\\\"GL8Hlt5c8\\\":\\\"imageBG\\\",\\\"G6kx7hLqH\\\":\\\"colorBar\\\",\\\"tO4TKp6kS\\\":\\\"colorTexte\\\",\\\"DKrw2C4Sz\\\":\\\"colorNom\\\",\\\"OiORPcAB_\\\":\\\"colorFonction\\\"}\",\"framerIntrinsicWidth\":\"413\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kfWTpo0Uk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b1j3r4mIu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"479\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CBFtf9aEr.map", "// Generated by Framer (eb93fa7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import Testimonial from\"https://framerusercontent.com/modules/m1sZOfTsTMnEccB6U60i/35jJY2n6cvLTwTQ9mhQH/CBFtf9aEr.js\";const TestimonialFonts=getFonts(Testimonial);const SlideshowFonts=getFonts(Slideshow);const serializationHash=\"framer-eB4uH\";const variantClassNames={zm9pkxx9i:\"framer-v-3f1x3b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"zm9pkxx9i\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3f1x3b\",className,classNames),\"data-framer-name\":\"Testimonial Desktop\",layoutDependency:layoutDependency,layoutId:\"zm9pkxx9i\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-872c1m-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"T1Lw6j00j-container\",nodeId:\"T1Lw6j00j\",rendersWithMotion:true,scopeId:\"dmpLNdv0N\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.9,effectsPerspective:1200,effectsRotate:0,effectsScale:.8,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"T1Lw6j00j\",intervalControl:1.5,itemAmount:2,layoutId:\"T1Lw6j00j\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kx3ppj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"O4B4xn85C-container\",nodeId:\"O4B4xn85C\",rendersWithMotion:true,scopeId:\"dmpLNdv0N\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\",Fc3hjb5L5:\"J\\xe9r\\xe9mie Vayer\",FvjsGrefH:\"D'une extr\\xeame r\\xe9activit\\xe9, Arno a su nous guider pour cr\\xe9er une vid\\xe9o de qualit\\xe9 respectant la charte et l'esprit de Kerlink.  il a, de plus, su faire preuve d'une compr\\xe9hension rapide de notre contexte ainsi que de nos enjeux.  a permis de simplifier le discours complexe de notre entreprise. Son accompagnement, sa connaissance du domaine technique, son professionnalisme et sa cr\\xe9ativit\\xe9 vont d\\xe9sormais nous aider au quotidien et durant des \\xe9v\\xe9nements importants.  De plus, les tarifs restent tr\\xe8s accessibles pour un travail de cette qualit\\xe9.    Vivement recommand\\xe9 :)\",G6kx7hLqH:\"var(--token-b980782c-8db1-4ed2-bddd-d5140f9b242e, rgb(237, 55, 125))\",GL8Hlt5c8:addImageAlt({pixelHeight:1534,pixelWidth:1300,src:\"https://framerusercontent.com/images/to2PQGdDkHEc1kGZobR1WqCaXEw.jpg\",srcSet:\"https://framerusercontent.com/images/to2PQGdDkHEc1kGZobR1WqCaXEw.jpg?scale-down-to=1024 867w,https://framerusercontent.com/images/to2PQGdDkHEc1kGZobR1WqCaXEw.jpg 1300w\"},\"JEGU paint\"),height:\"100%\",id:\"O4B4xn85C\",layoutId:\"O4B4xn85C\",OiORPcAB_:\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\",style:{width:\"100%\"},tO4TKp6kS:\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\",variant:\"KS1vNajKT\",width:\"100%\",wVGFQWdlb:\"R\\xe9dacteur web - SEO - Cr\\xe9ateur de contenus\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ieyawc-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qZ1QUnyhu-container\",nodeId:\"qZ1QUnyhu\",rendersWithMotion:true,scopeId:\"dmpLNdv0N\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"Morgan Bigot\",FvjsGrefH:\"La prestation d'Arno JEGU est tr\\xe8s professionnelle et je tiens \\xe0 pr\\xe9ciser que le prix est accessible \\xe0 une PME contrairement aux id\\xe9es re\\xe7ues. La m\\xe9thodologie de mise en \u0153uvre est efficace:  - storyboard  - cr\\xe9ativit\\xe9  - possibilit\\xe9 de prise de vues  - rendus 3D et animations  - choix musicaux...  Toutes les composantes ont \\xe9t\\xe9 r\\xe9unies pour notre teaser r\\xe9ussi! \",G6kx7hLqH:\"rgb(245, 162, 225)\",GL8Hlt5c8:addImageAlt({pixelHeight:328,pixelWidth:1478,positionX:\"64.6%\",positionY:\"54.1%\",src:\"https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png\",srcSet:\"https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png?scale-down-to=512 512w,https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png 1478w\"},\"JEGU paint\"),height:\"100%\",id:\"qZ1QUnyhu\",layoutId:\"qZ1QUnyhu\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"KS1vNajKT\",width:\"100%\",wVGFQWdlb:\"Fondateur Miranda Flow\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8ooi4t-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Wqv1HAqlA-container\",nodeId:\"Wqv1HAqlA\",rendersWithMotion:true,scopeId:\"dmpLNdv0N\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"David Bouchon\",FvjsGrefH:\"Nous travaillons avec Arno depuis plus de un an sur des projets vid\\xe9o et d'identit\\xe9 visuelle sur le march\\xe9 extr\\xeamement dynamique de la t\\xe9l\\xe9phonie mobile dans un contexte international.    Outre son expertise en motion design et sa cr\\xe9ativit\\xe9, Arno fait preuve d'une tr\\xe8s grande efficacit\\xe9 et d'une bonne compr\\xe9hension de notre environnement complexe.\",G6kx7hLqH:\"rgb(146, 88, 245)\",GL8Hlt5c8:addImageAlt({pixelHeight:347,pixelWidth:955,positionX:\"8.7%\",positionY:\"11.7%\",src:\"https://framerusercontent.com/images/aCfokbtZutSrp3pkDZvomthkfQ.png\",srcSet:\"https://framerusercontent.com/images/aCfokbtZutSrp3pkDZvomthkfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/aCfokbtZutSrp3pkDZvomthkfQ.png 955w\"},\"JEGU paint\"),height:\"100%\",id:\"Wqv1HAqlA\",layoutId:\"Wqv1HAqlA\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"KS1vNajKT\",width:\"100%\",wVGFQWdlb:\"Directeur Marketing & Communication\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-82dcjt-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pvUsW5k4i-container\",nodeId:\"pvUsW5k4i\",rendersWithMotion:true,scopeId:\"dmpLNdv0N\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(255, 255, 255)\",Fc3hjb5L5:\"Nad\\xe8ge Coulon-Trari\",FvjsGrefH:\"J'ai travaill\\xe9 avec Arno pour la r\\xe9alisation de nos films corporate. Il a su r\\xe9agir avec souplesse dans des d\\xe9lais courts pour nous fournir des r\\xe9alisations d'une grande qualit\\xe9. Cette attitude et son professionnalisme ont contribu\\xe9 au succ\\xe8s de l'\\xe9v\\xe9nement annuel que j'organisais.\",G6kx7hLqH:\"rgb(153, 255, 185)\",GL8Hlt5c8:addImageAlt({pixelHeight:217,pixelWidth:769,positionX:\"89.6%\",positionY:\"70.9%\",src:\"https://framerusercontent.com/images/HYv6n5AZN4jpEBDdLOqjixoQJo.png\",srcSet:\"https://framerusercontent.com/images/HYv6n5AZN4jpEBDdLOqjixoQJo.png?scale-down-to=512 512w,https://framerusercontent.com/images/HYv6n5AZN4jpEBDdLOqjixoQJo.png 769w\"},\"JEGU paint\"),height:\"100%\",id:\"pvUsW5k4i\",layoutId:\"pvUsW5k4i\",OiORPcAB_:\"rgb(255, 255, 255)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(255, 255, 255)\",variant:\"KS1vNajKT\",width:\"100%\",wVGFQWdlb:\"Consultante en communication - Intervenante - Elue locale\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gzfkle-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"MCQiWH2zT-container\",nodeId:\"MCQiWH2zT\",rendersWithMotion:true,scopeId:\"dmpLNdv0N\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"Carline Aulnette\",FvjsGrefH:\"Arno JEGU est\\xa0un motion designer vid\\xe9o\\xa0auquel notre association de chirurgiens-dentistes bretons (URPS CDLB) a fait appel d\\xe8s 2023 afin de cr\\xe9er avec et pour nous 6 vid\\xe9os courtes et ludiques sur l'\\xe9coresponsabilit\\xe9 en cabinet dentaire. Arno a su nous\\xa0aiguiller durant\\xa0le processus de cr\\xe9ation lors de plusieurs r\\xe9unions avec\\xa0les \\xe9lus et les salari\\xe9es\\xa0de l'URPS, et a parfaitement r\\xe9ussi\\xa0\\xe0 retranscrire \\xe0 l'image, en anim\\xe9, les\\xa0sc\\xe9narios transmis par nos lib\\xe9raux de sant\\xe9. Les administrateurs de l'URPS\\xa0CDLB\\xa0ont trouv\\xe9 son\\xa0travail\\xa0de tr\\xe8s belle qualit\\xe9 et le recommandent.\\xa0Nous avons \\xe9t\\xe9\\xa0ravis\\xa0de travailler avec\\xa0lui\\xa0sur\\xa0notre\\xa0projet, et le referons probablement si l'occasion se pr\\xe9sente. Nos 6 vid\\xe9os \\\"Sant\\xe9 environnement\\\" sont tout \\xe0 fait transposables \\xe0 d'autres acteurs et secteurs de la sant\\xe9. N'h\\xe9sitez pas \\xe0 le contacter !\",G6kx7hLqH:\"rgb(255, 121, 38)\",GL8Hlt5c8:addImageAlt({pixelHeight:528,pixelWidth:448,positionX:\"78.5%\",positionY:\"75.8%\",src:\"https://framerusercontent.com/images/MID204yELYVxkYgZmj1vXd12jTs.png\",srcSet:\"https://framerusercontent.com/images/MID204yELYVxkYgZmj1vXd12jTs.png 448w\"},\"JEGU paint\"),height:\"100%\",id:\"MCQiWH2zT\",layoutId:\"MCQiWH2zT\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"KS1vNajKT\",width:\"100%\",wVGFQWdlb:\"Charg\\xe9e de missions URPS CDLB\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v5au2f-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"m929qoKZE-container\",nodeId:\"m929qoKZE\",rendersWithMotion:true,scopeId:\"dmpLNdv0N\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"Karine Corre\",FvjsGrefH:\"Arno a permis de simplifier le discours complexe de notre entreprise. Son accompagnement, sa connaissance du domaine technique, son professionnalisme et sa cr\\xe9ativit\\xe9 vont d\\xe9sormais nous aider au quotidien et durant des \\xe9v\\xe9nements importants.  De plus, les tarifs restent tr\\xe8s accessibles pour un travail de cette qualit\\xe9.    Vivement recommand\\xe9 :)\",G6kx7hLqH:\"rgb(153, 238, 255)\",GL8Hlt5c8:addImageAlt({pixelHeight:279,pixelWidth:489,src:\"https://framerusercontent.com/images/KiDwqQqYdFOgtUKGb8JOCgoZQPg.png\"},\"JEGU paint\"),height:\"100%\",id:\"m929qoKZE\",layoutId:\"m929qoKZE\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"KS1vNajKT\",width:\"100%\",wVGFQWdlb:\"Cheffe de projets La Fonderie\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wa1204-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rS1ftnI5T-container\",nodeId:\"rS1ftnI5T\",rendersWithMotion:true,scopeId:\"dmpLNdv0N\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(255, 255, 255)\",Fc3hjb5L5:\"Zinnya del Villar\",FvjsGrefH:\"Arno worked for us at Data2B as motion designer. Arno was a fount of information about the latest artistic releases and creative ways to turn our data product offer into a clear storytelling. Arno is a talented co-worker and a joy to collaborate with.  Thank you! \",G6kx7hLqH:\"rgb(230, 255, 153)\",GL8Hlt5c8:addImageAlt({pixelHeight:437,pixelWidth:665,positionX:\"28.7%\",positionY:\"53.3%\",src:\"https://framerusercontent.com/images/rfKrqtUu0JDjCXNYm70fNjKECU.png\",srcSet:\"https://framerusercontent.com/images/rfKrqtUu0JDjCXNYm70fNjKECU.png?scale-down-to=512 512w,https://framerusercontent.com/images/rfKrqtUu0JDjCXNYm70fNjKECU.png 665w\"},\"JEGU paint\"),height:\"100%\",id:\"rS1ftnI5T\",layoutId:\"rS1ftnI5T\",OiORPcAB_:\"rgb(255, 255, 255)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(255, 255, 255)\",variant:\"KS1vNajKT\",width:\"100%\",wVGFQWdlb:\"Fair algorithms & sustainable data-driven technologies\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eB4uH.framer-8pysul, .framer-eB4uH .framer-8pysul { display: block; }\",\".framer-eB4uH.framer-3f1x3b { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-eB4uH .framer-872c1m-container { flex: none; height: 602px; position: relative; width: 802px; }\",\".framer-eB4uH .framer-1kx3ppj-container, .framer-eB4uH .framer-ieyawc-container, .framer-eB4uH .framer-8ooi4t-container, .framer-eB4uH .framer-82dcjt-container, .framer-eB4uH .framer-1gzfkle-container, .framer-eB4uH .framer-v5au2f-container, .framer-eB4uH .framer-1wa1204-container { height: auto; position: relative; width: 400px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 602\n * @framerIntrinsicWidth 802\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdmpLNdv0N=withCSS(Component,css,\"framer-eB4uH\");export default FramerdmpLNdv0N;FramerdmpLNdv0N.displayName=\"Testimonials DESKTOP\";FramerdmpLNdv0N.defaultProps={height:602,width:802};addFonts(FramerdmpLNdv0N,[{explicitInter:true,fonts:[]},...TestimonialFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdmpLNdv0N\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"602\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"802\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dmpLNdv0N.map", "// Generated by Framer (f73129a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import Testimonial from\"https://framerusercontent.com/modules/m1sZOfTsTMnEccB6U60i/35jJY2n6cvLTwTQ9mhQH/CBFtf9aEr.js\";const TestimonialFonts=getFonts(Testimonial);const SlideshowFonts=getFonts(Slideshow);const serializationHash=\"framer-iiAaw\";const variantClassNames={x5JJSyove:\"framer-v-hysyld\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"x5JJSyove\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-hysyld\",className,classNames),\"data-framer-name\":\"Testimonial Tablet\",layoutDependency:layoutDependency,layoutId:\"x5JJSyove\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mo8k44-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kbHds0PPB-container\",nodeId:\"kbHds0PPB\",rendersWithMotion:true,scopeId:\"g9_Uslit0\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.9,effectsPerspective:1200,effectsRotate:0,effectsScale:.8,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"kbHds0PPB\",intervalControl:1.5,itemAmount:2,layoutId:\"kbHds0PPB\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xhb39l-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"xhFp5aacf-container\",nodeId:\"xhFp5aacf\",rendersWithMotion:true,scopeId:\"g9_Uslit0\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\",Fc3hjb5L5:\"J\\xe9r\\xe9mie Vayer\",FvjsGrefH:\"D'une extr\\xeame r\\xe9activit\\xe9, Arno a su nous guider pour cr\\xe9er une vid\\xe9o de qualit\\xe9 respectant la charte et l'esprit de Kerlink.  il a, de plus, su faire preuve d'une compr\\xe9hension rapide de notre contexte ainsi que de nos enjeux.  a permis de simplifier le discours complexe de notre entreprise. Son accompagnement, sa connaissance du domaine technique, son professionnalisme et sa cr\\xe9ativit\\xe9 vont d\\xe9sormais nous aider au quotidien et durant des \\xe9v\\xe9nements importants.  De plus, les tarifs restent tr\\xe8s accessibles pour un travail de cette qualit\\xe9.    Vivement recommand\\xe9 :)\",G6kx7hLqH:\"var(--token-b980782c-8db1-4ed2-bddd-d5140f9b242e, rgb(237, 55, 125))\",GL8Hlt5c8:addImageAlt({pixelHeight:1534,pixelWidth:1300,src:\"https://framerusercontent.com/images/to2PQGdDkHEc1kGZobR1WqCaXEw.jpg\",srcSet:\"https://framerusercontent.com/images/to2PQGdDkHEc1kGZobR1WqCaXEw.jpg?scale-down-to=1024 867w,https://framerusercontent.com/images/to2PQGdDkHEc1kGZobR1WqCaXEw.jpg 1300w\"},\"JEGU paint\"),height:\"100%\",id:\"xhFp5aacf\",layoutId:\"xhFp5aacf\",OiORPcAB_:\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\",style:{width:\"100%\"},tO4TKp6kS:\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\",variant:\"kfWTpo0Uk\",width:\"100%\",wVGFQWdlb:\"R\\xe9dacteur web - SEO - Cr\\xe9ateur de contenus\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xygx4x-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"OlmAyoBBC-container\",nodeId:\"OlmAyoBBC\",rendersWithMotion:true,scopeId:\"g9_Uslit0\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"Morgan Bigot\",FvjsGrefH:\"La prestation d'Arno JEGU est tr\\xe8s professionnelle et je tiens \\xe0 pr\\xe9ciser que le prix est accessible \\xe0 une PME contrairement aux id\\xe9es re\\xe7ues. La m\\xe9thodologie de mise en \u0153uvre est efficace:  - storyboard  - cr\\xe9ativit\\xe9  - possibilit\\xe9 de prise de vues  - rendus 3D et animations  - choix musicaux...  Toutes les composantes ont \\xe9t\\xe9 r\\xe9unies pour notre teaser r\\xe9ussi! \",G6kx7hLqH:\"rgb(245, 162, 225)\",GL8Hlt5c8:addImageAlt({pixelHeight:328,pixelWidth:1478,positionX:\"64.6%\",positionY:\"54.1%\",src:\"https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png\",srcSet:\"https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png?scale-down-to=512 512w,https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png 1478w\"},\"JEGU paint\"),height:\"100%\",id:\"OlmAyoBBC\",layoutId:\"OlmAyoBBC\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"kfWTpo0Uk\",width:\"100%\",wVGFQWdlb:\"Fondateur Miranda Flow\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-191jkve-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"NA8dTRLJg-container\",nodeId:\"NA8dTRLJg\",rendersWithMotion:true,scopeId:\"g9_Uslit0\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"David Bouchon\",FvjsGrefH:\"Nous travaillons avec Arno depuis plus de un an sur des projets vid\\xe9o et d'identit\\xe9 visuelle sur le march\\xe9 extr\\xeamement dynamique de la t\\xe9l\\xe9phonie mobile dans un contexte international.    Outre son expertise en motion design et sa cr\\xe9ativit\\xe9, Arno fait preuve d'une tr\\xe8s grande efficacit\\xe9 et d'une bonne compr\\xe9hension de notre environnement complexe.\",G6kx7hLqH:\"rgb(146, 88, 245)\",GL8Hlt5c8:addImageAlt({pixelHeight:347,pixelWidth:955,positionX:\"8.7%\",positionY:\"11.7%\",src:\"https://framerusercontent.com/images/aCfokbtZutSrp3pkDZvomthkfQ.png\",srcSet:\"https://framerusercontent.com/images/aCfokbtZutSrp3pkDZvomthkfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/aCfokbtZutSrp3pkDZvomthkfQ.png 955w\"},\"JEGU paint\"),height:\"100%\",id:\"NA8dTRLJg\",layoutId:\"NA8dTRLJg\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"kfWTpo0Uk\",width:\"100%\",wVGFQWdlb:\"Directeur Marketing & Communication\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tmwq8-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cjV5vQRqT-container\",nodeId:\"cjV5vQRqT\",rendersWithMotion:true,scopeId:\"g9_Uslit0\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(255, 255, 255)\",Fc3hjb5L5:\"Nad\\xe8ge Coulon-Trari\",FvjsGrefH:\"J'ai travaill\\xe9 avec Arno pour la r\\xe9alisation de nos films corporate. Il a su r\\xe9agir avec souplesse dans des d\\xe9lais courts pour nous fournir des r\\xe9alisations d'une grande qualit\\xe9. Cette attitude et son professionnalisme ont contribu\\xe9 au succ\\xe8s de l'\\xe9v\\xe9nement annuel que j'organisais.\",G6kx7hLqH:\"rgb(153, 255, 185)\",GL8Hlt5c8:addImageAlt({pixelHeight:217,pixelWidth:769,positionX:\"89.6%\",positionY:\"70.9%\",src:\"https://framerusercontent.com/images/HYv6n5AZN4jpEBDdLOqjixoQJo.png\",srcSet:\"https://framerusercontent.com/images/HYv6n5AZN4jpEBDdLOqjixoQJo.png?scale-down-to=512 512w,https://framerusercontent.com/images/HYv6n5AZN4jpEBDdLOqjixoQJo.png 769w\"},\"JEGU paint\"),height:\"100%\",id:\"cjV5vQRqT\",layoutId:\"cjV5vQRqT\",OiORPcAB_:\"rgb(255, 255, 255)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(255, 255, 255)\",variant:\"kfWTpo0Uk\",width:\"100%\",wVGFQWdlb:\"Consultante en communication - Intervenante - Elue locale\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tdpt1d-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qUzfNAD6b-container\",nodeId:\"qUzfNAD6b\",rendersWithMotion:true,scopeId:\"g9_Uslit0\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"Carline Aulnette\",FvjsGrefH:\"Arno JEGU est\\xa0un motion designer vid\\xe9o\\xa0rennais auquel notre association de chirurgiens-dentistes bretons (URPS CDLB) a fait appel d\\xe8s 2023 afin de cr\\xe9er avec et pour nous 6 vid\\xe9os courtes et ludiques sur l'\\xe9coresponsabilit\\xe9 en cabinet dentaire. Arno a su nous\\xa0aiguiller durant\\xa0le processus de cr\\xe9ation lors de plusieurs r\\xe9unions avec\\xa0les \\xe9lus et les salari\\xe9es\\xa0de l'URPS, et a parfaitement r\\xe9ussi\\xa0\\xe0 retranscrire \\xe0 l'image, en anim\\xe9, les\\xa0sc\\xe9narios transmis par nos lib\\xe9raux de sant\\xe9. Les administrateurs de l'URPS\\xa0CDLB\\xa0ont trouv\\xe9 son\\xa0travail\\xa0de tr\\xe8s belle qualit\\xe9 et le recommandent.\\xa0Nous avons \\xe9t\\xe9\\xa0ravis\\xa0de travailler avec\\xa0lui\\xa0sur\\xa0notre\\xa0projet, et le referons probablement si l'occasion se pr\\xe9sente. Nos 6 vid\\xe9os \\\"Sant\\xe9 environnement\\\" sont tout \\xe0 fait transposables \\xe0 d'autres acteurs et secteurs de la sant\\xe9. N'h\\xe9sitez pas \\xe0 le contacter !\",G6kx7hLqH:\"rgb(255, 121, 38)\",GL8Hlt5c8:addImageAlt({pixelHeight:528,pixelWidth:448,positionX:\"78.5%\",positionY:\"75.8%\",src:\"https://framerusercontent.com/images/MID204yELYVxkYgZmj1vXd12jTs.png\",srcSet:\"https://framerusercontent.com/images/MID204yELYVxkYgZmj1vXd12jTs.png 448w\"},\"JEGU paint\"),height:\"100%\",id:\"qUzfNAD6b\",layoutId:\"qUzfNAD6b\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"kfWTpo0Uk\",width:\"100%\",wVGFQWdlb:\"Charg\\xe9e de missions URPS CDLB\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fnocow-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"AD8fwee8a-container\",nodeId:\"AD8fwee8a\",rendersWithMotion:true,scopeId:\"g9_Uslit0\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"Karine Corre\",FvjsGrefH:\"Arno a permis de simplifier le discours complexe de notre entreprise. Son accompagnement, sa connaissance du domaine technique, son professionnalisme et sa cr\\xe9ativit\\xe9 vont d\\xe9sormais nous aider au quotidien et durant des \\xe9v\\xe9nements importants.  De plus, les tarifs restent tr\\xe8s accessibles pour un travail de cette qualit\\xe9.    Vivement recommand\\xe9 :)\",G6kx7hLqH:\"rgb(153, 238, 255)\",GL8Hlt5c8:addImageAlt({pixelHeight:279,pixelWidth:489,src:\"https://framerusercontent.com/images/KiDwqQqYdFOgtUKGb8JOCgoZQPg.png\"},\"JEGU paint\"),height:\"100%\",id:\"AD8fwee8a\",layoutId:\"AD8fwee8a\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"kfWTpo0Uk\",width:\"100%\",wVGFQWdlb:\"Cheffe de projets La Fonderie\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14u8vmj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CRYuUAvtq-container\",nodeId:\"CRYuUAvtq\",rendersWithMotion:true,scopeId:\"g9_Uslit0\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(255, 255, 255)\",Fc3hjb5L5:\"Zinnya del Villar\",FvjsGrefH:\"Arno worked for us at Data2B as motion designer. Arno was a fount of information about the latest artistic releases and creative ways to turn our data product offer into a clear storytelling. Arno is a talented co-worker and a joy to collaborate with.  Thank you! \",G6kx7hLqH:\"rgb(230, 255, 153)\",GL8Hlt5c8:addImageAlt({pixelHeight:437,pixelWidth:665,positionX:\"28.7%\",positionY:\"53.3%\",src:\"https://framerusercontent.com/images/rfKrqtUu0JDjCXNYm70fNjKECU.png\",srcSet:\"https://framerusercontent.com/images/rfKrqtUu0JDjCXNYm70fNjKECU.png?scale-down-to=512 512w,https://framerusercontent.com/images/rfKrqtUu0JDjCXNYm70fNjKECU.png 665w\"},\"JEGU paint\"),height:\"100%\",id:\"CRYuUAvtq\",layoutId:\"CRYuUAvtq\",OiORPcAB_:\"rgb(255, 255, 255)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(255, 255, 255)\",variant:\"kfWTpo0Uk\",width:\"100%\",wVGFQWdlb:\"Fair algorithms & sustainable data-driven technologies\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iiAaw.framer-1551mz6, .framer-iiAaw .framer-1551mz6 { display: block; }\",\".framer-iiAaw.framer-hysyld { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-iiAaw .framer-mo8k44-container { flex: none; height: 385px; position: relative; width: 700px; }\",\".framer-iiAaw .framer-xhb39l-container, .framer-iiAaw .framer-1xygx4x-container, .framer-iiAaw .framer-191jkve-container, .framer-iiAaw .framer-1tmwq8-container, .framer-iiAaw .framer-1tdpt1d-container, .framer-iiAaw .framer-fnocow-container, .framer-iiAaw .framer-14u8vmj-container { height: auto; position: relative; width: 400px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 385\n * @framerIntrinsicWidth 700\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerg9_Uslit0=withCSS(Component,css,\"framer-iiAaw\");export default Framerg9_Uslit0;Framerg9_Uslit0.displayName=\"Testimonials TABLET\";Framerg9_Uslit0.defaultProps={height:385,width:700};addFonts(Framerg9_Uslit0,[{explicitInter:true,fonts:[]},...TestimonialFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg9_Uslit0\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"385\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"700\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-bLvrO\";const variantClassNames={gm1LZdoQR:\"framer-v-nchkei\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"gm1LZdoQR\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-nchkei\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"gm1LZdoQR\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qca6f8\",\"data-framer-name\":\"Ico separateur\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"N_paQp0TK\",opacity:1,style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 19\"><path d=\"M 7.309 4.808 C 7.48 4.564 7.733 4.423 8 4.423 C 8.267 4.423 8.52 4.564 8.691 4.808 L 11.505 8.815 C 11.783 9.212 11.783 9.788 11.505 10.184 L 8.691 14.192 C 8.52 14.436 8.267 14.577 8 14.577 C 7.733 14.577 7.48 14.436 7.309 14.192 L 4.495 10.184 C 4.217 9.787 4.217 9.211 4.496 8.815 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 0.833 9.5 C 0.833 9.172 1.057 8.906 1.333 8.906 L 2.667 8.906 C 2.943 8.906 3.167 9.172 3.167 9.5 C 3.167 9.828 2.943 10.094 2.667 10.094 L 1.333 10.094 C 1.057 10.094 0.833 9.828 0.833 9.5 Z M 12.833 9.5 C 12.833 9.172 13.057 8.906 13.333 8.906 L 14.667 8.906 C 14.943 8.906 15.167 9.172 15.167 9.5 C 15.167 9.828 14.943 10.094 14.667 10.094 L 13.333 10.094 C 13.057 10.094 12.833 9.828 12.833 9.5 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9978463070,withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bLvrO.framer-13brug4, .framer-bLvrO .framer-13brug4 { display: block; }\",\".framer-bLvrO.framer-nchkei { height: 28px; overflow: hidden; position: relative; width: 28px; }\",\".framer-bLvrO .framer-qca6f8 { flex: none; height: 19px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 19px / 2); width: 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 28\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLhuZFXCgK=withCSS(Component,css,\"framer-bLvrO\");export default FramerLhuZFXCgK;FramerLhuZFXCgK.displayName=\"Ico separateur\";FramerLhuZFXCgK.defaultProps={height:28,width:28};addFonts(FramerLhuZFXCgK,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLhuZFXCgK\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"28\",\"framerIntrinsicHeight\":\"28\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LhuZFXCgK.map", "// Generated by Framer (47dffbb)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import Testimonial from\"https://framerusercontent.com/modules/m1sZOfTsTMnEccB6U60i/35jJY2n6cvLTwTQ9mhQH/CBFtf9aEr.js\";const TestimonialFonts=getFonts(Testimonial);const SlideshowFonts=getFonts(Slideshow);const serializationHash=\"framer-HIT8O\";const variantClassNames={RGQki4vow:\"framer-v-1445fo8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"RGQki4vow\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1445fo8\",className,classNames),\"data-framer-name\":\"Testimonial Tablet\",layoutDependency:layoutDependency,layoutId:\"RGQki4vow\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jdr3x8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AeXHoC8rF-container\",nodeId:\"AeXHoC8rF\",rendersWithMotion:true,scopeId:\"oghZC7c8t\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.9,effectsPerspective:1200,effectsRotate:0,effectsScale:.8,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"AeXHoC8rF\",intervalControl:1.5,itemAmount:1,layoutId:\"AeXHoC8rF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:61,dotSize:5,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mwlrs7-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FFT5mnvz1-container\",nodeId:\"FFT5mnvz1\",rendersWithMotion:true,scopeId:\"oghZC7c8t\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"Carline Aulnette\",FvjsGrefH:\"Arno JEGU est\\xa0un motion designer vid\\xe9o\\xa0rennais auquel notre association de chirurgiens-dentistes bretons (URPS CDLB) a fait appel d\\xe8s 2023 afin de cr\\xe9er avec et pour nous 6 vid\\xe9os courtes et ludiques sur l'\\xe9coresponsabilit\\xe9 en cabinet dentaire. Arno a su nous\\xa0aiguiller durant\\xa0le processus de cr\\xe9ation lors de plusieurs r\\xe9unions avec\\xa0les \\xe9lus et les salari\\xe9es\\xa0de l'URPS, et a parfaitement r\\xe9ussi\\xa0\\xe0 retranscrire \\xe0 l'image, en anim\\xe9, les\\xa0sc\\xe9narios transmis par nos lib\\xe9raux de sant\\xe9. Les administrateurs de l'URPS\\xa0CDLB\\xa0ont trouv\\xe9 son\\xa0travail\\xa0de tr\\xe8s belle qualit\\xe9 et le recommandent.\\xa0Nous avons \\xe9t\\xe9\\xa0ravis\\xa0de travailler avec\\xa0lui\\xa0sur\\xa0notre\\xa0projet, et le referons probablement si l'occasion se pr\\xe9sente. Nos 6 vid\\xe9os \\\"Sant\\xe9 environnement\\\" sont tout \\xe0 fait transposables \\xe0 d'autres acteurs et secteurs de la sant\\xe9. N'h\\xe9sitez pas \\xe0 le contacter !\",G6kx7hLqH:\"rgb(255, 121, 38)\",GL8Hlt5c8:addImageAlt({pixelHeight:528,pixelWidth:448,positionX:\"78.5%\",positionY:\"75.8%\",src:\"https://framerusercontent.com/images/MID204yELYVxkYgZmj1vXd12jTs.png\",srcSet:\"https://framerusercontent.com/images/MID204yELYVxkYgZmj1vXd12jTs.png 448w\"},\"JEGU paint\"),height:\"100%\",id:\"FFT5mnvz1\",layoutId:\"FFT5mnvz1\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"b1j3r4mIu\",width:\"100%\",wVGFQWdlb:\"Charg\\xe9e de missions URPS CDLB\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cvg5mp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fBXj3w0Xc-container\",nodeId:\"fBXj3w0Xc\",rendersWithMotion:true,scopeId:\"oghZC7c8t\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(255, 255, 255)\",Fc3hjb5L5:\"Nad\\xe8ge Coulon-Trari\",FvjsGrefH:\"J'ai travaill\\xe9 avec Arno pour la r\\xe9alisation de nos films corporate. Il a su r\\xe9agir avec souplesse dans des d\\xe9lais courts pour nous fournir des r\\xe9alisations d'une grande qualit\\xe9. Cette attitude et son professionnalisme ont contribu\\xe9 au succ\\xe8s de l'\\xe9v\\xe9nement annuel que j'organisais.\",G6kx7hLqH:\"rgb(153, 255, 185)\",GL8Hlt5c8:addImageAlt({pixelHeight:217,pixelWidth:769,positionX:\"89.6%\",positionY:\"70.9%\",src:\"https://framerusercontent.com/images/HYv6n5AZN4jpEBDdLOqjixoQJo.png\",srcSet:\"https://framerusercontent.com/images/HYv6n5AZN4jpEBDdLOqjixoQJo.png?scale-down-to=512 512w,https://framerusercontent.com/images/HYv6n5AZN4jpEBDdLOqjixoQJo.png 769w\"},\"JEGU paint\"),height:\"100%\",id:\"fBXj3w0Xc\",layoutId:\"fBXj3w0Xc\",OiORPcAB_:\"rgb(255, 255, 255)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(255, 255, 255)\",variant:\"b1j3r4mIu\",width:\"100%\",wVGFQWdlb:\"Consultante en communication - Intervenante - Elue locale\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rco01x-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HqxYEU5Ga-container\",nodeId:\"HqxYEU5Ga\",rendersWithMotion:true,scopeId:\"oghZC7c8t\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"David Bouchon\",FvjsGrefH:\"Nous travaillons avec Arno depuis plus de un an sur des projets vid\\xe9o et d'identit\\xe9 visuelle sur le march\\xe9 extr\\xeamement dynamique de la t\\xe9l\\xe9phonie mobile dans un contexte international.    Outre son expertise en motion design et sa cr\\xe9ativit\\xe9, Arno fait preuve d'une tr\\xe8s grande efficacit\\xe9 et d'une bonne compr\\xe9hension de notre environnement complexe.\",G6kx7hLqH:\"rgb(146, 88, 245)\",GL8Hlt5c8:addImageAlt({pixelHeight:347,pixelWidth:955,positionX:\"8.7%\",positionY:\"11.7%\",src:\"https://framerusercontent.com/images/aCfokbtZutSrp3pkDZvomthkfQ.png\",srcSet:\"https://framerusercontent.com/images/aCfokbtZutSrp3pkDZvomthkfQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/aCfokbtZutSrp3pkDZvomthkfQ.png 955w\"},\"JEGU paint\"),height:\"100%\",id:\"HqxYEU5Ga\",layoutId:\"HqxYEU5Ga\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"b1j3r4mIu\",width:\"100%\",wVGFQWdlb:\"Directeur Marketing & Communication\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c4q994-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rOFu4vjqs-container\",nodeId:\"rOFu4vjqs\",rendersWithMotion:true,scopeId:\"oghZC7c8t\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"Morgan Bigot\",FvjsGrefH:\"La prestation d'Arno JEGU est tr\\xe8s professionnelle et je tiens \\xe0 pr\\xe9ciser que le prix est accessible \\xe0 une PME contrairement aux id\\xe9es re\\xe7ues. La m\\xe9thodologie de mise en \u0153uvre est efficace:  - storyboard  - cr\\xe9ativit\\xe9  - possibilit\\xe9 de prise de vues  - rendus 3D et animations  - choix musicaux...  Toutes les composantes ont \\xe9t\\xe9 r\\xe9unies pour notre teaser r\\xe9ussi! \",G6kx7hLqH:\"rgb(245, 162, 225)\",GL8Hlt5c8:addImageAlt({pixelHeight:328,pixelWidth:1478,positionX:\"64.6%\",positionY:\"54.1%\",src:\"https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png\",srcSet:\"https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png?scale-down-to=512 512w,https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XgE7aMnz5y9HxX9m7VoPRytiSAI.png 1478w\"},\"JEGU paint\"),height:\"100%\",id:\"rOFu4vjqs\",layoutId:\"rOFu4vjqs\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"b1j3r4mIu\",width:\"100%\",wVGFQWdlb:\"Fondateur Miranda Flow\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8edt8i-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qLvsysxAJ-container\",nodeId:\"qLvsysxAJ\",rendersWithMotion:true,scopeId:\"oghZC7c8t\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\",Fc3hjb5L5:\"J\\xe9r\\xe9mie Vayer\",FvjsGrefH:\"D'une extr\\xeame r\\xe9activit\\xe9, Arno a su nous guider pour cr\\xe9er une vid\\xe9o de qualit\\xe9 respectant la charte et l'esprit de Kerlink.  il a, de plus, su faire preuve d'une compr\\xe9hension rapide de notre contexte ainsi que de nos enjeux.  a permis de simplifier le discours complexe de notre entreprise. Son accompagnement, sa connaissance du domaine technique, son professionnalisme et sa cr\\xe9ativit\\xe9 vont d\\xe9sormais nous aider au quotidien et durant des \\xe9v\\xe9nements importants.  De plus, les tarifs restent tr\\xe8s accessibles pour un travail de cette qualit\\xe9.    Vivement recommand\\xe9 :)\",G6kx7hLqH:\"var(--token-b980782c-8db1-4ed2-bddd-d5140f9b242e, rgb(237, 55, 125))\",GL8Hlt5c8:addImageAlt({pixelHeight:1534,pixelWidth:1300,src:\"https://framerusercontent.com/images/to2PQGdDkHEc1kGZobR1WqCaXEw.jpg\",srcSet:\"https://framerusercontent.com/images/to2PQGdDkHEc1kGZobR1WqCaXEw.jpg?scale-down-to=1024 867w,https://framerusercontent.com/images/to2PQGdDkHEc1kGZobR1WqCaXEw.jpg 1300w\"},\"JEGU paint\"),height:\"100%\",id:\"qLvsysxAJ\",layoutId:\"qLvsysxAJ\",OiORPcAB_:\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\",style:{width:\"100%\"},tO4TKp6kS:\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\",variant:\"b1j3r4mIu\",width:\"100%\",wVGFQWdlb:\"R\\xe9dacteur web - SEO - Cr\\xe9ateur de contenus\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7x5gcv-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"AQwyXZWGA-container\",nodeId:\"AQwyXZWGA\",rendersWithMotion:true,scopeId:\"oghZC7c8t\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(0, 0, 0)\",Fc3hjb5L5:\"Karine Corre\",FvjsGrefH:\"Arno a permis de simplifier le discours complexe de notre entreprise. Son accompagnement, sa connaissance du domaine technique, son professionnalisme et sa cr\\xe9ativit\\xe9 vont d\\xe9sormais nous aider au quotidien et durant des \\xe9v\\xe9nements importants.  De plus, les tarifs restent tr\\xe8s accessibles pour un travail de cette qualit\\xe9.    Vivement recommand\\xe9 :)\",G6kx7hLqH:\"rgb(153, 238, 255)\",GL8Hlt5c8:addImageAlt({pixelHeight:279,pixelWidth:489,src:\"https://framerusercontent.com/images/KiDwqQqYdFOgtUKGb8JOCgoZQPg.png\"},\"JEGU paint\"),height:\"100%\",id:\"AQwyXZWGA\",layoutId:\"AQwyXZWGA\",OiORPcAB_:\"rgb(0, 0, 0)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(0, 0, 0)\",variant:\"b1j3r4mIu\",width:\"100%\",wVGFQWdlb:\"Cheffe de projets La Fonderie\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-saih9q-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pcf9psRw4-container\",nodeId:\"pcf9psRw4\",rendersWithMotion:true,scopeId:\"oghZC7c8t\",children:/*#__PURE__*/_jsx(Testimonial,{DKrw2C4Sz:\"rgb(255, 255, 255)\",Fc3hjb5L5:\"Zinnya del Villar\",FvjsGrefH:\"Arno worked for us at Data2B as motion designer. Arno was a fount of information about the latest artistic releases and creative ways to turn our data product offer into a clear storytelling. Arno is a talented co-worker and a joy to collaborate with.  Thank you! \",G6kx7hLqH:\"rgb(230, 255, 153)\",GL8Hlt5c8:addImageAlt({pixelHeight:437,pixelWidth:665,positionX:\"28.7%\",positionY:\"53.3%\",src:\"https://framerusercontent.com/images/rfKrqtUu0JDjCXNYm70fNjKECU.png\",srcSet:\"https://framerusercontent.com/images/rfKrqtUu0JDjCXNYm70fNjKECU.png?scale-down-to=512 512w,https://framerusercontent.com/images/rfKrqtUu0JDjCXNYm70fNjKECU.png 665w\"},\"JEGU paint\"),height:\"100%\",id:\"pcf9psRw4\",layoutId:\"pcf9psRw4\",OiORPcAB_:\"rgb(255, 255, 255)\",style:{width:\"100%\"},tO4TKp6kS:\"rgb(255, 255, 255)\",variant:\"b1j3r4mIu\",width:\"100%\",wVGFQWdlb:\"Fair algorithms & sustainable data-driven technologies\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HIT8O.framer-e8hpa7, .framer-HIT8O .framer-e8hpa7 { display: block; }\",\".framer-HIT8O.framer-1445fo8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-HIT8O .framer-1jdr3x8-container { flex: none; height: 382px; position: relative; width: 250px; }\",\".framer-HIT8O .framer-mwlrs7-container, .framer-HIT8O .framer-1cvg5mp-container, .framer-HIT8O .framer-1rco01x-container, .framer-HIT8O .framer-c4q994-container, .framer-HIT8O .framer-8edt8i-container, .framer-HIT8O .framer-7x5gcv-container, .framer-HIT8O .framer-saih9q-container { height: auto; position: relative; width: 400px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 382\n * @framerIntrinsicWidth 250\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameroghZC7c8t=withCSS(Component,css,\"framer-HIT8O\");export default FrameroghZC7c8t;FrameroghZC7c8t.displayName=\"Testimonials PHONE\";FrameroghZC7c8t.defaultProps={height:382,width:250};addFonts(FrameroghZC7c8t,[{explicitInter:true,fonts:[]},...TestimonialFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroghZC7c8t\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"250\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"382\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (eb93fa7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import DButton from\"https://framerusercontent.com/modules/2PnXlUq7dOjlAaTnhFPc/4HBtoMk906CS9xETeoAm/SO41lLC_A.js\";const DButtonFonts=getFonts(DButton);const cycleOrder=[\"OyGKGo6z0\",\"so0rQj45_\",\"xDMrB2vfZ\"];const serializationHash=\"framer-IuGgS\";const variantClassNames={OyGKGo6z0:\"framer-v-h9qukv\",so0rQj45_:\"framer-v-1jepqd4\",xDMrB2vfZ:\"framer-v-tkyye9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;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:\"OyGKGo6z0\",Phone:\"xDMrB2vfZ\",Tablet:\"so0rQj45_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OyGKGo6z0\"};};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:\"OyGKGo6z0\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-h9qukv\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"OyGKGo6z0\",ref:refBinding,style:{backgroundColor:\"rgb(25, 24, 28)\",...style},...addPropertyOverrides({so0rQj45_:{\"data-framer-name\":\"Tablet\"},xDMrB2vfZ:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qv2caj\",layoutDependency:layoutDependency,layoutId:\"qogB9bYr8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hf9tqg\",\"data-framer-name\":\"Homme_secteurs\",layoutDependency:layoutDependency,layoutId:\"B9I8laW9X\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:279,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+80.5),pixelHeight:558,pixelWidth:1e3,sizes:\"382px\",src:\"https://framerusercontent.com/images/kQHUuWW2zv4CfHhwAFmty9pDM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kQHUuWW2zv4CfHhwAFmty9pDM.png?scale-down-to=512 512w,https://framerusercontent.com/images/kQHUuWW2zv4CfHhwAFmty9pDM.png 1000w\"},className:\"framer-17e8amu\",\"data-framer-name\":\"Cloud 01\",layoutDependency:layoutDependency,layoutId:\"ZXg2nLgmf\",transformTemplate:transformTemplate1,...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:279,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+61.3205),pixelHeight:558,pixelWidth:1e3,sizes:\"382px\",src:\"https://framerusercontent.com/images/kQHUuWW2zv4CfHhwAFmty9pDM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kQHUuWW2zv4CfHhwAFmty9pDM.png?scale-down-to=512 512w,https://framerusercontent.com/images/kQHUuWW2zv4CfHhwAFmty9pDM.png 1000w\"}},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:279,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+0+43),pixelHeight:558,pixelWidth:1e3,sizes:\"201.6px\",src:\"https://framerusercontent.com/images/kQHUuWW2zv4CfHhwAFmty9pDM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kQHUuWW2zv4CfHhwAFmty9pDM.png?scale-down-to=512 512w,https://framerusercontent.com/images/kQHUuWW2zv4CfHhwAFmty9pDM.png 1000w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+390-379),pixelHeight:758,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/wY1KThUvvqcutNHz1v89tqYjqg.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wY1KThUvvqcutNHz1v89tqYjqg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/wY1KThUvvqcutNHz1v89tqYjqg.gif 800w\"},className:\"framer-1v8qwm5\",\"data-framer-name\":\"Man secteur_02\",layoutDependency:layoutDependency,layoutId:\"rYFtrxrh2\",...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+-15),pixelHeight:758,pixelWidth:800,sizes:\"353.562px\",src:\"https://framerusercontent.com/images/wY1KThUvvqcutNHz1v89tqYjqg.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wY1KThUvvqcutNHz1v89tqYjqg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/wY1KThUvvqcutNHz1v89tqYjqg.gif 800w\"}},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+0+0),pixelHeight:758,pixelWidth:800,sizes:\"215.7949px\",src:\"https://framerusercontent.com/images/wY1KThUvvqcutNHz1v89tqYjqg.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wY1KThUvvqcutNHz1v89tqYjqg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/wY1KThUvvqcutNHz1v89tqYjqg.gif 800w\"},transformTemplate:transformTemplate2}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255)))\"},children:\"TROUVEZ\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255)))\"},children:\"L'INSPIRATION\"})]}),className:\"framer-1snp8bq\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],layoutDependency:layoutDependency,layoutId:\"nPr5D377Q\",style:{\"--extracted-2gxw0f\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({so0rQj45_:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255)))\"},children:\"TROUVEZ\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255)))\"},children:\"L'INSPIRATION\"})]})},xDMrB2vfZ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255)))\"},children:\"TROUVEZ\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255)))\"},children:\"L'INSPIRATION\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255)))\"},children:\"selon votre secteur d'activit\\xe9\"})}),className:\"framer-mvy5q6\",fonts:[\"GF;Chivo-regular\"],layoutDependency:layoutDependency,layoutId:\"ZKAVCCEWd\",style:{\"--extracted-r6o4lv\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({so0rQj45_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255)))\"},children:\"selon votre secteur d'activit\\xe9\"})}),transformTemplate:transformTemplate2},xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255)))\"},children:\"selon votre secteur d'activit\\xe9\"})}),transformTemplate:transformTemplate2}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u4n5dj\",layoutDependency:layoutDependency,layoutId:\"ilig1dLzv\",children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+0),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"center\",sizes:\"450px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"},className:\"framer-7alvxd\",\"data-framer-name\":\"Secteur_01\",layoutDependency:layoutDependency,layoutId:\"mqwU0yQcR\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+0),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"center\",sizes:\"405px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}},xDMrB2vfZ:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+0),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+0+0),pixelHeight:800,pixelWidth:900,sizes:\"450px\",src:\"https://framerusercontent.com/images/uQunaoyy7zP8sH4vmNolY3RvunQ.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uQunaoyy7zP8sH4vmNolY3RvunQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uQunaoyy7zP8sH4vmNolY3RvunQ.jpg 900w\"},className:\"framer-1gwu221\",\"data-framer-name\":\"SECTEUR 01\",layoutDependency:layoutDependency,layoutId:\"dHepQ2jYI\",...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+0+1.5),pixelHeight:800,pixelWidth:900,sizes:\"405px\",src:\"https://framerusercontent.com/images/uQunaoyy7zP8sH4vmNolY3RvunQ.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uQunaoyy7zP8sH4vmNolY3RvunQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uQunaoyy7zP8sH4vmNolY3RvunQ.jpg 900w\"},transformTemplate:transformTemplate3},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+0+0),pixelHeight:800,pixelWidth:900,sizes:\"310px\",src:\"https://framerusercontent.com/images/uQunaoyy7zP8sH4vmNolY3RvunQ.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uQunaoyy7zP8sH4vmNolY3RvunQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uQunaoyy7zP8sH4vmNolY3RvunQ.jpg 900w\"},transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rwPNB6j1n\"},implicitPathVariables:undefined},{href:{webPageId:\"rwPNB6j1n\"},implicitPathVariables:undefined},{href:{webPageId:\"rwPNB6j1n\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+0+0+400-77,...addPropertyOverrides({so0rQj45_:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+0+1.5+397-77},xDMrB2vfZ:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+0+0+266.5-54}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16dx1xr-container\",layoutDependency:layoutDependency,layoutId:\"MGU5qQMrN-container\",nodeId:\"MGU5qQMrN\",rendersWithMotion:true,scopeId:\"xECSFa0KT\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(DButton,{AwLVtbPDc:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",BSOUUvg2I:\"rgb(25, 24, 28)\",cFsCcg93e:resolvedLinks[0],height:\"100%\",id:\"MGU5qQMrN\",kc3TEh2D5:\"Voir les projets Innovation\",layoutId:\"MGU5qQMrN\",OZOAUcesg:\"rgb(255, 255, 255)\",Q8bxkK_Tn:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",rxlQQT7eB:18,style:{height:\"100%\"},variant:\"hZhOY1XR5\",vzCC4h5Mr:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",width:\"100%\",wuah86xnK:\"rgb(255, 255, 255)\",zMa3Tvq0J:16,ZT_RE8uZX:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>',...addPropertyOverrides({so0rQj45_:{cFsCcg93e:resolvedLinks[1]},xDMrB2vfZ:{cFsCcg93e:resolvedLinks[2],variant:\"wDf6atSJG\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13aamde\",layoutDependency:layoutDependency,layoutId:\"bbCWPpxOO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"INNOVATION\"})}),className:\"framer-yzkafk\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],layoutDependency:layoutDependency,layoutId:\"XRMtSXcN4\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"INNOVATION\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Vid\\xe9os explicatives SAAS & Technologies\"})}),className:\"framer-1p7ejjq\",fonts:[\"GF;Chivo-regular\"],layoutDependency:layoutDependency,layoutId:\"MfZlvI2Hx\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({so0rQj45_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Vid\\xe9os explicatives SAAS & Technologies\"})})},xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Vid\\xe9os explicatives SAAS & Technologies\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+450),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"center\",sizes:\"450px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"},className:\"framer-ym5udq\",\"data-framer-name\":\"Secteur_02\",layoutDependency:layoutDependency,layoutId:\"Mz2CaTQ2_\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+450),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"center\",sizes:\"405px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+450),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+450+0),pixelHeight:800,pixelWidth:900,sizes:\"450px\",src:\"https://framerusercontent.com/images/YrboGqgAmXJIhTFyq8vycYvg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YrboGqgAmXJIhTFyq8vycYvg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YrboGqgAmXJIhTFyq8vycYvg.jpg 900w\"},className:\"framer-osgck2\",\"data-framer-name\":\"SECTEUR 01\",layoutDependency:layoutDependency,layoutId:\"Z0jWUGxmy\",...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+450+1.5),pixelHeight:800,pixelWidth:900,sizes:\"405px\",src:\"https://framerusercontent.com/images/YrboGqgAmXJIhTFyq8vycYvg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YrboGqgAmXJIhTFyq8vycYvg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YrboGqgAmXJIhTFyq8vycYvg.jpg 900w\"},transformTemplate:transformTemplate3},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+450+0),pixelHeight:800,pixelWidth:900,sizes:\"310px\",src:\"https://framerusercontent.com/images/YrboGqgAmXJIhTFyq8vycYvg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YrboGqgAmXJIhTFyq8vycYvg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YrboGqgAmXJIhTFyq8vycYvg.jpg 900w\"},transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X6_y7Mwvt\"},implicitPathVariables:undefined},{href:{webPageId:\"X6_y7Mwvt\"},implicitPathVariables:undefined},{href:{webPageId:\"X6_y7Mwvt\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+450+0+400-81,...addPropertyOverrides({so0rQj45_:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+450+1.5+397-81},xDMrB2vfZ:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+450+0+275.5-61}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sifndj-container\",layoutDependency:layoutDependency,layoutId:\"YLLTE4NLn-container\",nodeId:\"YLLTE4NLn\",rendersWithMotion:true,scopeId:\"xECSFa0KT\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(DButton,{AwLVtbPDc:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",BSOUUvg2I:\"rgb(25, 24, 28)\",cFsCcg93e:resolvedLinks1[0],height:\"100%\",id:\"YLLTE4NLn\",kc3TEh2D5:\"Voir les projets Sant\\xe9\",layoutId:\"YLLTE4NLn\",OZOAUcesg:\"rgb(255, 255, 255)\",Q8bxkK_Tn:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",rxlQQT7eB:18,style:{height:\"100%\"},variant:\"hZhOY1XR5\",vzCC4h5Mr:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",width:\"100%\",wuah86xnK:\"rgb(255, 255, 255)\",zMa3Tvq0J:16,ZT_RE8uZX:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>',...addPropertyOverrides({so0rQj45_:{cFsCcg93e:resolvedLinks1[1]},xDMrB2vfZ:{cFsCcg93e:resolvedLinks1[2],variant:\"wDf6atSJG\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mwqz93\",layoutDependency:layoutDependency,layoutId:\"n3lSqBcoz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"SANTE\"})}),className:\"framer-1q6pcb4\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],layoutDependency:layoutDependency,layoutId:\"c5aAvs0SW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"SANTE\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Vid\\xe9os p\\xe9dagogiques\"})}),className:\"framer-ltaosb\",fonts:[\"GF;Chivo-regular\"],layoutDependency:layoutDependency,layoutId:\"qPYwhBJ1x\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({so0rQj45_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Vid\\xe9os p\\xe9dagogiques\"})})},xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Vid\\xe9os p\\xe9dagogiques\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+900),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"bottom\",sizes:\"450px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"},className:\"framer-htbs11\",\"data-framer-name\":\"Secteur_03\",layoutDependency:layoutDependency,layoutId:\"s6VpSQw1f\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+900),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"bottom\",sizes:\"405px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+900),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"bottom\",sizes:\"320px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+900+0),pixelHeight:800,pixelWidth:900,sizes:\"450px\",src:\"https://framerusercontent.com/images/NblnFS8nbV8uaM9pNxxibOrB6gA.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NblnFS8nbV8uaM9pNxxibOrB6gA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NblnFS8nbV8uaM9pNxxibOrB6gA.jpg 900w\"},className:\"framer-ocjunb\",\"data-framer-name\":\"SECTEUR 01\",layoutDependency:layoutDependency,layoutId:\"XOvDNHAf8\",...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+900+1.5),pixelHeight:800,pixelWidth:900,sizes:\"405px\",src:\"https://framerusercontent.com/images/NblnFS8nbV8uaM9pNxxibOrB6gA.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NblnFS8nbV8uaM9pNxxibOrB6gA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NblnFS8nbV8uaM9pNxxibOrB6gA.jpg 900w\"},transformTemplate:transformTemplate3},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+900+0),pixelHeight:800,pixelWidth:900,sizes:\"310px\",src:\"https://framerusercontent.com/images/NblnFS8nbV8uaM9pNxxibOrB6gA.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NblnFS8nbV8uaM9pNxxibOrB6gA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NblnFS8nbV8uaM9pNxxibOrB6gA.jpg 900w\"},transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nTlUtZhYD\"},implicitPathVariables:undefined},{href:{webPageId:\"nTlUtZhYD\"},implicitPathVariables:undefined},{href:{webPageId:\"nTlUtZhYD\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+900+0+400-82,...addPropertyOverrides({so0rQj45_:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+900+1.5+397-82},xDMrB2vfZ:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+900+0+275.5-65}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jbohrp-container\",layoutDependency:layoutDependency,layoutId:\"kZmevrLKk-container\",nodeId:\"kZmevrLKk\",rendersWithMotion:true,scopeId:\"xECSFa0KT\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(DButton,{AwLVtbPDc:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",BSOUUvg2I:\"rgb(25, 24, 28)\",cFsCcg93e:resolvedLinks2[0],height:\"100%\",id:\"kZmevrLKk\",kc3TEh2D5:\"Voir les projets Culture\",layoutId:\"kZmevrLKk\",OZOAUcesg:\"rgb(255, 255, 255)\",Q8bxkK_Tn:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",rxlQQT7eB:18,style:{height:\"100%\"},variant:\"hZhOY1XR5\",vzCC4h5Mr:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",width:\"100%\",wuah86xnK:\"rgb(255, 255, 255)\",zMa3Tvq0J:16,ZT_RE8uZX:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>',...addPropertyOverrides({so0rQj45_:{cFsCcg93e:resolvedLinks2[1]},xDMrB2vfZ:{cFsCcg93e:resolvedLinks2[2],variant:\"wDf6atSJG\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f2cjk7\",layoutDependency:layoutDependency,layoutId:\"aC_SJdTu7\",style:{borderBottomLeftRadius:0},variants:{xDMrB2vfZ:{borderBottomLeftRadius:30}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"CULTURE\"})}),className:\"framer-1jrnxyp\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],layoutDependency:layoutDependency,layoutId:\"ZpSv2XgaO\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"CULTURE\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Vid\\xe9os p\\xe9dagogiques - Clips\"})}),className:\"framer-1ne3ok4\",fonts:[\"GF;Chivo-regular\"],layoutDependency:layoutDependency,layoutId:\"MXcJtvZ2F\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({so0rQj45_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Vid\\xe9os p\\xe9dagogiques - Clips\"})})},xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Vid\\xe9os p\\xe9dagogiques - Clips\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1350),pixelHeight:1875,pixelWidth:1500,positionX:\"center\",positionY:\"bottom\",sizes:\"450px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"},className:\"framer-up4zi0\",\"data-framer-name\":\"Secteur_04\",layoutDependency:layoutDependency,layoutId:\"JSjb7i3re\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1350),pixelHeight:1875,pixelWidth:1500,positionX:\"center\",positionY:\"bottom\",sizes:\"405px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}},xDMrB2vfZ:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+1350),pixelHeight:1875,pixelWidth:1500,positionX:\"center\",positionY:\"bottom\",sizes:\"320px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1350+0),pixelHeight:800,pixelWidth:900,sizes:\"450px\",src:\"https://framerusercontent.com/images/ag5CGIvlaAHNG46Nu4LvqRIBEpg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ag5CGIvlaAHNG46Nu4LvqRIBEpg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ag5CGIvlaAHNG46Nu4LvqRIBEpg.jpg 900w\"},className:\"framer-1fxpacl\",\"data-framer-name\":\"SECTEUR 01\",layoutDependency:layoutDependency,layoutId:\"aaPzo8mzm\",...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1350+1.5),pixelHeight:800,pixelWidth:900,sizes:\"405px\",src:\"https://framerusercontent.com/images/ag5CGIvlaAHNG46Nu4LvqRIBEpg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ag5CGIvlaAHNG46Nu4LvqRIBEpg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ag5CGIvlaAHNG46Nu4LvqRIBEpg.jpg 900w\"},transformTemplate:transformTemplate3},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+1350+0),pixelHeight:800,pixelWidth:900,sizes:\"310px\",src:\"https://framerusercontent.com/images/ag5CGIvlaAHNG46Nu4LvqRIBEpg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ag5CGIvlaAHNG46Nu4LvqRIBEpg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ag5CGIvlaAHNG46Nu4LvqRIBEpg.jpg 900w\"},transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Rbzt492gV\"},implicitPathVariables:undefined},{href:{webPageId:\"Rbzt492gV\"},implicitPathVariables:undefined},{href:{webPageId:\"Rbzt492gV\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1350+0+400-83,...addPropertyOverrides({so0rQj45_:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1350+1.5+397-77},xDMrB2vfZ:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+1350+0+275.5-64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jvrzit-container\",layoutDependency:layoutDependency,layoutId:\"mNBl2mKbq-container\",nodeId:\"mNBl2mKbq\",rendersWithMotion:true,scopeId:\"xECSFa0KT\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(DButton,{AwLVtbPDc:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",BSOUUvg2I:\"rgb(25, 24, 28)\",cFsCcg93e:resolvedLinks3[0],height:\"100%\",id:\"mNBl2mKbq\",kc3TEh2D5:\"Voir les projets Produit\",layoutId:\"mNBl2mKbq\",OZOAUcesg:\"rgb(255, 255, 255)\",Q8bxkK_Tn:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",rxlQQT7eB:18,style:{height:\"100%\"},variant:\"hZhOY1XR5\",vzCC4h5Mr:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",width:\"100%\",wuah86xnK:\"rgb(255, 255, 255)\",zMa3Tvq0J:16,ZT_RE8uZX:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>',...addPropertyOverrides({so0rQj45_:{cFsCcg93e:resolvedLinks3[1]},xDMrB2vfZ:{cFsCcg93e:resolvedLinks3[2],variant:\"wDf6atSJG\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1560ojx\",layoutDependency:layoutDependency,layoutId:\"oE4SCCVxc\",style:{borderBottomLeftRadius:0},variants:{xDMrB2vfZ:{borderBottomLeftRadius:30}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"PRODUIT\"})}),className:\"framer-1seg091\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],layoutDependency:layoutDependency,layoutId:\"Q785ttBhJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"PRODUIT\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Film promotionnel - Publicit\\xe9\"})}),className:\"framer-1ywnbjt\",fonts:[\"GF;Chivo-regular\"],layoutDependency:layoutDependency,layoutId:\"eoYbBSVrz\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({so0rQj45_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Film promotionnel - Publicit\\xe9\"})})},xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Film promotionnel - Publicit\\xe9\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1800),pixelHeight:1875,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"450px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"},className:\"framer-6sktpp\",\"data-framer-name\":\"Secteur_05\",layoutDependency:layoutDependency,layoutId:\"RSrvyA6pK\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1800),pixelHeight:1875,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"405px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+1800),pixelHeight:1875,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1800+0),pixelHeight:800,pixelWidth:900,sizes:\"450px\",src:\"https://framerusercontent.com/images/VqugeTSbb5wW2GCEX7WN8gQGE4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VqugeTSbb5wW2GCEX7WN8gQGE4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqugeTSbb5wW2GCEX7WN8gQGE4.jpg 900w\"},className:\"framer-qkaxxs\",\"data-framer-name\":\"SECTEUR 01\",layoutDependency:layoutDependency,layoutId:\"dLUh3314A\",...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1800+1.5),pixelHeight:800,pixelWidth:900,sizes:\"405px\",src:\"https://framerusercontent.com/images/VqugeTSbb5wW2GCEX7WN8gQGE4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VqugeTSbb5wW2GCEX7WN8gQGE4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqugeTSbb5wW2GCEX7WN8gQGE4.jpg 900w\"},transformTemplate:transformTemplate3},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+1800+0),pixelHeight:800,pixelWidth:900,sizes:\"310px\",src:\"https://framerusercontent.com/images/VqugeTSbb5wW2GCEX7WN8gQGE4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VqugeTSbb5wW2GCEX7WN8gQGE4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VqugeTSbb5wW2GCEX7WN8gQGE4.jpg 900w\"},transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JGbl0tTIf\"},implicitPathVariables:undefined},{href:{webPageId:\"JGbl0tTIf\"},implicitPathVariables:undefined},{href:{webPageId:\"JGbl0tTIf\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1800+0+400-76,...addPropertyOverrides({so0rQj45_:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+1800+1.5+397-72},xDMrB2vfZ:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+1800+0+275.5-64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e45f72-container\",layoutDependency:layoutDependency,layoutId:\"eIjijyqUQ-container\",nodeId:\"eIjijyqUQ\",rendersWithMotion:true,scopeId:\"xECSFa0KT\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(DButton,{AwLVtbPDc:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",BSOUUvg2I:\"rgb(25, 24, 28)\",cFsCcg93e:resolvedLinks4[0],height:\"100%\",id:\"eIjijyqUQ\",kc3TEh2D5:\"Voir les projets TV\",layoutId:\"eIjijyqUQ\",OZOAUcesg:\"rgb(255, 255, 255)\",Q8bxkK_Tn:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",rxlQQT7eB:18,style:{height:\"100%\"},variant:\"hZhOY1XR5\",vzCC4h5Mr:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",width:\"100%\",wuah86xnK:\"rgb(255, 255, 255)\",zMa3Tvq0J:16,ZT_RE8uZX:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>',...addPropertyOverrides({so0rQj45_:{cFsCcg93e:resolvedLinks4[1]},xDMrB2vfZ:{cFsCcg93e:resolvedLinks4[2],variant:\"wDf6atSJG\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7q9a0k\",layoutDependency:layoutDependency,layoutId:\"goij1Ed0n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BROADCAST TV\"})}),className:\"framer-1vygahd\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],layoutDependency:layoutDependency,layoutId:\"npDmjpX3J\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BROADCAST TV\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Habillage TV - Publicit\\xe9\"})}),className:\"framer-jfvioj\",fonts:[\"GF;Chivo-regular\"],layoutDependency:layoutDependency,layoutId:\"IbYCDvU7r\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({so0rQj45_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Habillage TV - Publicit\\xe9\"})})},xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Habillage TV - Publicit\\xe9\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+2250),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"bottom\",sizes:\"450px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"},className:\"framer-jysbl6\",\"data-framer-name\":\"Secteur_06\",layoutDependency:layoutDependency,layoutId:\"IFexHaEPz\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+2250),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"bottom\",sizes:\"405px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+2250),pixelHeight:1875,pixelWidth:1500,positionX:\"right\",positionY:\"bottom\",sizes:\"320px\",src:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg\",srcSet:\"https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/jxSeBstkD7yotO8y9uGOa8iOc.jpg 1500w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+2250+0),pixelHeight:800,pixelWidth:900,sizes:\"450px\",src:\"https://framerusercontent.com/images/UBl447WerVbS743WLzZylye10.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UBl447WerVbS743WLzZylye10.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UBl447WerVbS743WLzZylye10.jpg 900w\"},className:\"framer-13vfiq\",\"data-framer-name\":\"SECTEUR 01\",layoutDependency:layoutDependency,layoutId:\"Ru6DT9GM8\",...addPropertyOverrides({so0rQj45_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+2250+1.5),pixelHeight:800,pixelWidth:900,sizes:\"405px\",src:\"https://framerusercontent.com/images/UBl447WerVbS743WLzZylye10.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UBl447WerVbS743WLzZylye10.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UBl447WerVbS743WLzZylye10.jpg 900w\"},transformTemplate:transformTemplate3},xDMrB2vfZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+2250+0),pixelHeight:800,pixelWidth:900,sizes:\"310px\",src:\"https://framerusercontent.com/images/UBl447WerVbS743WLzZylye10.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UBl447WerVbS743WLzZylye10.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UBl447WerVbS743WLzZylye10.jpg 900w\"},transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nlVru6gG_\"},implicitPathVariables:undefined},{href:{webPageId:\"nlVru6gG_\"},implicitPathVariables:undefined},{href:{webPageId:\"nlVru6gG_\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+2250+0+400-75,...addPropertyOverrides({so0rQj45_:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||2750)-100-2650)/2+0+0)+0+0+2250+1.5+397-72},xDMrB2vfZ:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||2954.5)-30-2924.5)/2+0+0)+0+274.5+0+2250+0+275.5-68}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o4xipo-container\",layoutDependency:layoutDependency,layoutId:\"A9nEGqVpm-container\",nodeId:\"A9nEGqVpm\",rendersWithMotion:true,scopeId:\"xECSFa0KT\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(DButton,{AwLVtbPDc:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",BSOUUvg2I:\"rgb(25, 24, 28)\",cFsCcg93e:resolvedLinks5[0],height:\"100%\",id:\"A9nEGqVpm\",kc3TEh2D5:\"Voir les projets \\xc9v\\xe8nementiel\",layoutId:\"A9nEGqVpm\",OZOAUcesg:\"rgb(255, 255, 255)\",Q8bxkK_Tn:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",rxlQQT7eB:18,style:{height:\"100%\"},variant:\"hZhOY1XR5\",vzCC4h5Mr:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",width:\"100%\",wuah86xnK:\"rgb(255, 255, 255)\",zMa3Tvq0J:16,ZT_RE8uZX:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>',...addPropertyOverrides({so0rQj45_:{cFsCcg93e:resolvedLinks5[1]},xDMrB2vfZ:{cFsCcg93e:resolvedLinks5[2],variant:\"wDf6atSJG\"}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jbd5zo\",layoutDependency:layoutDependency,layoutId:\"O6hY8D9GM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\xc9V\\xc8NEMENTIEL\"})}),className:\"framer-1t9jm9b\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],layoutDependency:layoutDependency,layoutId:\"HFXG0bjXW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\xc9V\\xc8NEMENTIEL\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Multi-\\xe9crans anim\\xe9 -keynote\"})}),className:\"framer-jrwh9j\",fonts:[\"GF;Chivo-regular\"],layoutDependency:layoutDependency,layoutId:\"E75cQZVp9\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({so0rQj45_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Multi-\\xe9crans anim\\xe9 -keynote\"})})},xDMrB2vfZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Multi-\\xe9crans anim\\xe9 -keynote\"})})}},baseVariant,gestureVariant)})]})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IuGgS.framer-1wh1unt, .framer-IuGgS .framer-1wh1unt { display: block; }\",\".framer-IuGgS.framer-h9qukv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 1300px; }\",\".framer-IuGgS .framer-1qv2caj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; z-index: 4; }\",\".framer-IuGgS .framer-1hf9tqg { flex: none; height: 390px; overflow: hidden; position: sticky; top: 120px; width: 600px; z-index: 1; }\",\".framer-IuGgS .framer-17e8amu { aspect-ratio: 1.7921146953405018 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 213px); left: 51%; overflow: visible; position: absolute; top: 48%; width: 382px; }\",\".framer-IuGgS .framer-1v8qwm5 { aspect-ratio: 1.0554089709762533 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 379px); left: 70px; overflow: visible; position: absolute; width: 400px; }\",\".framer-IuGgS .framer-1snp8bq { bottom: 61px; flex: none; height: auto; left: 53%; position: absolute; white-space: pre; width: auto; }\",\".framer-IuGgS .framer-mvy5q6 { bottom: 42px; flex: none; height: auto; left: 105px; position: absolute; white-space: pre; width: auto; }\",\".framer-IuGgS .framer-1u4n5dj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IuGgS .framer-7alvxd { flex: none; height: 400px; overflow: hidden; position: sticky; top: 160px; width: 450px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-IuGgS .framer-1gwu221, .framer-IuGgS .framer-osgck2, .framer-IuGgS .framer-ocjunb, .framer-IuGgS .framer-1fxpacl, .framer-IuGgS .framer-qkaxxs, .framer-IuGgS .framer-13vfiq { aspect-ratio: 1.125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-IuGgS .framer-16dx1xr-container { bottom: 29px; flex: none; height: 48px; left: 50%; position: absolute; width: auto; }\",\".framer-IuGgS .framer-13aamde, .framer-IuGgS .framer-1mwqz93, .framer-IuGgS .framer-1f2cjk7, .framer-IuGgS .framer-1560ojx, .framer-IuGgS .framer-7q9a0k, .framer-IuGgS .framer-1jbd5zo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: center; left: calc(50.00000000000002% - 372px / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 372px; }\",\".framer-IuGgS .framer-yzkafk, .framer-IuGgS .framer-1p7ejjq, .framer-IuGgS .framer-1q6pcb4, .framer-IuGgS .framer-ltaosb, .framer-IuGgS .framer-1jrnxyp, .framer-IuGgS .framer-1ne3ok4, .framer-IuGgS .framer-1seg091, .framer-IuGgS .framer-1ywnbjt, .framer-IuGgS .framer-1vygahd, .framer-IuGgS .framer-jfvioj, .framer-IuGgS .framer-1t9jm9b, .framer-IuGgS .framer-jrwh9j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IuGgS .framer-ym5udq { flex: none; height: 400px; overflow: hidden; position: sticky; top: 200px; width: 450px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-IuGgS .framer-1sifndj-container { bottom: 33px; flex: none; height: 48px; left: 50%; position: absolute; width: auto; }\",\".framer-IuGgS .framer-htbs11 { flex: none; height: 400px; overflow: hidden; position: sticky; top: 240px; width: 450px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-IuGgS .framer-1jbohrp-container { bottom: 34px; flex: none; height: 48px; left: 50%; position: absolute; width: auto; }\",\".framer-IuGgS .framer-up4zi0 { flex: none; height: 400px; overflow: hidden; position: sticky; top: 280px; width: 450px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-IuGgS .framer-jvrzit-container { bottom: 35px; flex: none; height: 48px; left: 50%; position: absolute; width: auto; }\",\".framer-IuGgS .framer-6sktpp { flex: none; height: 400px; overflow: hidden; position: sticky; top: 320px; width: 450px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-IuGgS .framer-e45f72-container { bottom: 28px; flex: none; height: 48px; left: 50%; position: absolute; width: auto; }\",\".framer-IuGgS .framer-jysbl6 { flex: none; height: 400px; overflow: hidden; position: sticky; top: 360px; width: 450px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-IuGgS .framer-o4xipo-container { bottom: 27px; flex: none; height: 48px; left: 50%; position: absolute; width: auto; }\",\".framer-IuGgS.framer-v-1jepqd4.framer-h9qukv { padding: 100px 20px 0px 20px; width: 810px; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-1qv2caj { gap: 0px; width: 810px; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-1hf9tqg { flex: 1 0 0px; height: 350px; top: 150px; width: 1px; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-1v8qwm5 { bottom: 30px; height: unset; top: -15px; width: var(--framer-aspect-ratio-supported, 354px); }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-1snp8bq { bottom: 78px; left: 50%; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-mvy5q6 { bottom: 59px; left: 46%; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-7alvxd { width: 100%; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-1gwu221, .framer-IuGgS.framer-v-1jepqd4 .framer-osgck2, .framer-IuGgS.framer-v-1jepqd4 .framer-ocjunb, .framer-IuGgS.framer-v-1jepqd4 .framer-qkaxxs, .framer-IuGgS.framer-v-1jepqd4 .framer-13vfiq { aspect-ratio: 1.0201511335012594 / 1; height: var(--framer-aspect-ratio-supported, 397px); top: 50%; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-ym5udq { top: 210px; width: 100%; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-htbs11 { top: 260px; width: 100%; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-up4zi0 { top: 310px; width: 100%; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-1fxpacl { aspect-ratio: 1.0201511335012594 / 1; height: var(--framer-aspect-ratio-supported, 397px); left: unset; right: 0px; top: 50%; width: 405px; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-jvrzit-container { bottom: 29px; left: 50%; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-6sktpp { top: 360px; width: 100%; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-e45f72-container, .framer-IuGgS.framer-v-1jepqd4 .framer-o4xipo-container { bottom: 24px; left: 50%; }\",\".framer-IuGgS.framer-v-1jepqd4 .framer-jysbl6 { top: 410px; width: 100%; }\",\".framer-IuGgS.framer-v-tkyye9.framer-h9qukv { flex-wrap: wrap; padding: 30px 0px 0px 0px; width: 320px; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-1qv2caj { align-content: center; align-items: center; flex-direction: column; width: 320px; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-1hf9tqg { aspect-ratio: 1.2388535031847134 / 1; height: var(--framer-aspect-ratio-supported, 259px); position: relative; top: unset; width: 100%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-17e8amu { height: var(--framer-aspect-ratio-supported, 113px); left: 50%; top: 45%; width: 63%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-1v8qwm5 { bottom: unset; height: var(--framer-aspect-ratio-supported, 205px); left: 52%; top: 0px; width: 67%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-1snp8bq { bottom: 90px; left: 50%; white-space: pre-wrap; width: 77%; word-break: break-word; word-wrap: break-word; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-mvy5q6 { bottom: 72px; left: 48%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-1u4n5dj { flex: none; width: 100%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-7alvxd { top: 100px; width: 100%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-1gwu221 { aspect-ratio: 1.1612903225806452 / 1; height: var(--framer-aspect-ratio-supported, 267px); left: 50%; right: unset; width: 310px; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-16dx1xr-container { bottom: 6px; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-13aamde, .framer-IuGgS.framer-v-tkyye9 .framer-1mwqz93, .framer-IuGgS.framer-v-tkyye9 .framer-7q9a0k, .framer-IuGgS.framer-v-tkyye9 .framer-1jbd5zo { align-content: center; align-items: center; justify-content: flex-start; left: calc(50.00000000000002% - 320px / 2); width: 320px; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-ym5udq { top: 130px; width: 100%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-osgck2, .framer-IuGgS.framer-v-tkyye9 .framer-qkaxxs, .framer-IuGgS.framer-v-tkyye9 .framer-13vfiq { height: var(--framer-aspect-ratio-supported, 276px); left: 50%; right: unset; width: 310px; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-1sifndj-container { bottom: 13px; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-htbs11 { top: 160px; width: 100%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-ocjunb { height: var(--framer-aspect-ratio-supported, 276px); left: 49%; right: unset; width: 310px; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-1jbohrp-container { bottom: 17px; left: 50%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-1f2cjk7, .framer-IuGgS.framer-v-tkyye9 .framer-1560ojx { align-content: center; align-items: center; justify-content: flex-start; left: calc(50.00000000000002% - 320px / 2); width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IuGgS.framer-v-tkyye9 .framer-up4zi0 { top: 190px; width: 100%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-1fxpacl { height: var(--framer-aspect-ratio-supported, 276px); left: 52%; right: unset; width: 310px; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-jvrzit-container, .framer-IuGgS.framer-v-tkyye9 .framer-e45f72-container { bottom: 16px; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-6sktpp { top: 220px; width: 100%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-jysbl6 { top: 250px; width: 100%; }\",\".framer-IuGgS.framer-v-tkyye9 .framer-o4xipo-container { bottom: 20px; left: 50%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2750\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"so0rQj45_\":{\"layout\":[\"fixed\",\"auto\"]},\"xDMrB2vfZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerxECSFa0KT=withCSS(Component,css,\"framer-IuGgS\");export default FramerxECSFa0KT;FramerxECSFa0KT.displayName=\"Secteurs activite\";FramerxECSFa0KT.defaultProps={height:2750,width:1300};addPropertyControls(FramerxECSFa0KT,{variant:{options:[\"OyGKGo6z0\",\"so0rQj45_\",\"xDMrB2vfZ\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxECSFa0KT,[{explicitInter:true,fonts:[{family:\"PP Neue Machina Inktrap Ultrabold\",source:\"custom\",url:\"https://framerusercontent.com/assets/y7okTdbrJ8DsfKzta2dDKZ0zzY.woff2\"},{family:\"Chivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivo/v20/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ukmDSFXjQiQ.woff2\",weight:\"400\"},{family:\"PP Neue Machina Inktrap Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/TlOso8x38jGYalJQGdxrrn8xsnc.woff2\"}]},...DButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxECSFa0KT\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"so0rQj45_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xDMrB2vfZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"2750\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1300\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xECSFa0KT.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import StaggeredCycle from\"https://framerusercontent.com/modules/4lPJUInr9BbZwDYdxSgD/MtDBVuDoZ2YXDgn8MBbB/StaggeredTextCycle_Prod.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import TestimonialsDESKTOP from\"#framer/local/canvasComponent/dmpLNdv0N/dmpLNdv0N.js\";import PhraseContact from\"#framer/local/canvasComponent/Fta1byRiY/Fta1byRiY.js\";import TestimonialsTABLET from\"#framer/local/canvasComponent/g9_Uslit0/g9_Uslit0.js\";import CursorArnoDESKTOP from\"#framer/local/canvasComponent/jGSHyCrMY/jGSHyCrMY.js\";import IcoSeparateur from\"#framer/local/canvasComponent/LhuZFXCgK/LhuZFXCgK.js\";import FOOTERGENERAL from\"#framer/local/canvasComponent/MMntJsfo_/MMntJsfo_.js\";import TestimonialsPHONE from\"#framer/local/canvasComponent/oghZC7c8t/oghZC7c8t.js\";import LOGOSGENERAL from\"#framer/local/canvasComponent/RqV1X3zHO/RqV1X3zHO.js\";import DButton from\"#framer/local/canvasComponent/SO41lLC_A/SO41lLC_A.js\";import Portfolio_homepageVideo from\"#framer/local/canvasComponent/TB3c39HpB/TB3c39HpB.js\";import NavBar from\"#framer/local/canvasComponent/VBvD6Itf_/VBvD6Itf_.js\";import Portfolio_homepage from\"#framer/local/canvasComponent/Ws6lVrR75/Ws6lVrR75.js\";import SecteursActivite from\"#framer/local/canvasComponent/xECSFa0KT/xECSFa0KT.js\";import FormulaireContact from\"#framer/local/canvasComponent/xOkKdZCss/xOkKdZCss.js\";import*as sharedStyle from\"#framer/local/css/fi0ZKkaiq/fi0ZKkaiq.js\";import*as sharedStyle2 from\"#framer/local/css/JIpdP75RV/JIpdP75RV.js\";import*as sharedStyle1 from\"#framer/local/css/WVD5FA3SN/WVD5FA3SN.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavBarFonts=getFonts(NavBar);const NavBarWithVariantAppearEffect=withVariantAppearEffect(NavBar);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const IcoSeparateurFonts=getFonts(IcoSeparateur);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const StaggeredCycleFonts=getFonts(StaggeredCycle);const DButtonFonts=getFonts(DButton);const RichTextWithFX=withFX(RichText);const IconoirFonts=getFonts(Iconoir);const LOGOSGENERALFonts=getFonts(LOGOSGENERAL);const Portfolio_homepageVideoFonts=getFonts(Portfolio_homepageVideo);const Portfolio_homepageFonts=getFonts(Portfolio_homepage);const SecteursActiviteFonts=getFonts(SecteursActivite);const PhraseContactFonts=getFonts(PhraseContact);const TestimonialsDESKTOPFonts=getFonts(TestimonialsDESKTOP);const TestimonialsTABLETFonts=getFonts(TestimonialsTABLET);const TestimonialsPHONEFonts=getFonts(TestimonialsPHONE);const FormulaireContactFonts=getFonts(FormulaireContact);const FOOTERGENERALFonts=getFonts(FOOTERGENERAL);const CursorArnoDESKTOPFonts=getFonts(CursorArnoDESKTOP);const breakpoints={JRTaRl3Hr:\"(max-width: 809px)\",qP3B3rhIR:\"(min-width: 810px) and (max-width: 1299px)\",WQLkyLRf1:\"(min-width: 1300px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3hcWE\";const variantClassNames={JRTaRl3Hr:\"framer-v-g0mo5r\",qP3B3rhIR:\"framer-v-1f3a624\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation1={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.075,duration:.9,type:\"spring\"};const getTextEffect=ref=>({effect:animation1,target:{ref},tokenization:\"word\",transition:transition2,trigger:\"onScrollTarget\",type:\"appear\"});const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"JRTaRl3Hr\",Tablet:\"qP3B3rhIR\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition3={damping:47,delay:0,mass:1,stiffness:1e3,type:\"spring\"};const cursor={component:CursorArnoDESKTOP,transition:transition3,variant:\"xko2VdUJD\"};const cursor1={component:CursorArnoDESKTOP,variant:\"EEfZcfN6v\"};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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"sg2bZGXr9\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"JRTaRl3Hr\")return false;return true;};const elementId1=useRouteElementId(\"YyhnY_iET\");const ref3=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"qP3B3rhIR\",\"JRTaRl3Hr\"].includes(baseVariant))return false;return true;};const elementId2=useRouteElementId(\"vu3dHjnvQ\");const elementId3=useRouteElementId(\"US4RTeS7T\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"kDKp1o6Km\");const ref5=React.useRef(null);const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"JRTaRl3Hr\")return true;return false;};const elementId5=useRouteElementId(\"diykWtxNZ\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"P9Kpg5O3Z\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"vzJHTCVzE\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"L9zs9JrFI\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"UuPfMQHHO\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"EtHsJGiAe\");const ref11=React.useRef(null);const elementId11=useRouteElementId(\"gbPsObUW1\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"Od01yVLIK\");const ref13=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"qP3B3rhIR\")return true;return false;};useCustomCursors({\"107gi0v\":cursor,dfldja:{...cursor,variant:\"EEfZcfN6v\"},frlrp5:{...cursor,variant:\"KbpbJH7nw\"},g07emo:cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{\"data-framer-cursor\":undefined},qP3B3rhIR:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"107gi0v\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{height:138,y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:690,width:\"100vw\",y:-10,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-xdbote-container\",layoutScroll:true,nodeId:\"tN4MAsHqd\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{__framer__targets:[{ref:ref1,target:\"pirNptonn\"}],variant:\"KxXX1ZCwZ\"},qP3B3rhIR:{__framer__targets:[{ref:ref1,target:\"dbjUCwPcH\"}],style:{height:\"100%\",width:\"100%\"},variant:\"hdwD2IiSh\"}},children:/*#__PURE__*/_jsx(NavBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"ZdoD6w4jA\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"tN4MAsHqd\",layoutId:\"tN4MAsHqd\",style:{width:\"100%\"},variant:\"paVWKl1yW\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1xu5xv1\",\"data-framer-name\":\"video Header\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{\"data-framer-cursor\":undefined},qP3B3rhIR:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o6rufa-container\",\"data-framer-cursor\":\"dfldja\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tWezCMWST\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tWezCMWST\",isMixedBorderRadius:false,layoutId:\"tWezCMWST\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/dgsgsbAzOM97inAAVYcnDkfmA.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kdmibn hidden-g0mo5r\",\"data-framer-name\":\"Fleche\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12oc72d\",\"data-framer-name\":\"Fleche site_JEGU\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 61 51\"><g transform=\"translate(15.503 -1.52)\"><path d=\"M 54.526 17.75 C 46.816 19.3 41.075 24.548 40.079 30.955 L 29.938 30.955 L 39.195 18.851 L 0 18.851 L 0 12.104 L 39.195 12.104 L 29.938 0 L 40.079 0 C 41.074 6.407 46.816 11.655 54.526 13.203 C 54.255 14.711 54.255 16.242 54.526 17.75 Z\" transform=\"translate(-11.786 11.786) rotate(90 27.25 15.5)\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:11358044230,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t0cmyu\",\"data-framer-name\":\"Encart sur video header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ifuhj\",\"data-framer-name\":\"Textes\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:\"VID\\xc9OS\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:\"CR\\xc9ATIVES\"})]})})},qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"31px\"},children:\"VID\\xc9OS\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"31px\"},children:\"CR\\xc9ATIVES\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"VID\\xc9OS\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"CR\\xc9ATIVES\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-171dv93\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tNTAw\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"0.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pour les marques et les entreprises\"})})},qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tNTAw\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pour les marques et les entreprises\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tNTAw\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pour les marques et les entreprises\"})}),className:\"framer-df7unr\",fonts:[\"GF;Chivo-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-187xfg1\",\"data-framer-name\":\"Intro\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vbgsia\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yv6r63\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"arno jegu - Direction artistique - Motion Design - Design graphique - Freelance\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+240+449-448.501+0+0+551-302),pixelHeight:400,pixelWidth:450,src:\"https://framerusercontent.com/images/vz0u8xHSZFEV90sOJYbZFZmSFg.gif\"},transformTemplate:transformTemplate1},qP3B3rhIR:{background:{alt:\"arno jegu - Direction artistique - Motion Design - Design graphique - Freelance\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+0+50+0+75.6818),pixelHeight:400,pixelWidth:450,src:\"https://framerusercontent.com/images/vz0u8xHSZFEV90sOJYbZFZmSFg.gif\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"arno jegu - Direction artistique - Motion Design - Design graphique - Freelance\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+0+0+0+192.8322),pixelHeight:400,pixelWidth:450,src:\"https://framerusercontent.com/images/vz0u8xHSZFEV90sOJYbZFZmSFg.gif\"},className:\"framer-gcpx2n\",\"data-framer-name\":\"JEGU 01\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-86xzff\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-113ngvn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5og773\",\"data-framer-name\":\"Bloc textes\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-302}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15wd9ld\",\"data-framer-name\":\"Directeur artistique\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"DIRECTEUR ARTISTIQUE\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"& MOTION DESIGNER\"})]})},qP3B3rhIR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"DIRECTEUR ARTISTIQUE\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"& MOTION DESIGNER\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"DIRECTEUR ARTISTIQUE\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"& MOTION DESIGNER\"})]}),className:\"framer-144clot\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:47,intrinsicWidth:115.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+240+449-448.501+0+0+0+0+0+32.75+0+0+8.87),pixelHeight:94,pixelWidth:231,src:\"https://framerusercontent.com/images/vgOdux05rJog26rq4gzPBbfMFeQ.png\"}},qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:47,intrinsicWidth:115.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+0+50+0+0+0+0+-46.9+90+0+0),pixelHeight:94,pixelWidth:231,src:\"https://framerusercontent.com/images/vgOdux05rJog26rq4gzPBbfMFeQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:47,intrinsicWidth:115.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+0+0+0+0+200+0+0+0+0+0),pixelHeight:94,pixelWidth:231,src:\"https://framerusercontent.com/images/vgOdux05rJog26rq4gzPBbfMFeQ.png\"},className:\"framer-1osfiuj\",\"data-framer-name\":\"Freelance Texte\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mdinw4\",\"data-framer-name\":\"Bienvenu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Bienvenu, je suis Arno\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[\"Illustrateur & R\\xe9alisateur de \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"vid\\xe9os d'animation\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.02em\"},children:\".\"})]})]}),effect:undefined},qP3B3rhIR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.04em\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.03em\"},children:\"B\"}),\"ienvenu, je suis Arno\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[\" Illustrateur & R\\xe9alisateur de \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"vid\\xe9os d'animation\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.02em\"},children:\".\"})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.04em\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.03em\"},children:\"B\"}),\"ienvenu, je suis Arno\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[\" Illustrateur & R\\xe9alisateur de \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"vid\\xe9os d'animation\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.02em\"},children:\".\"})]})]}),className:\"framer-4waulo\",effect:getTextEffect(ref3),fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pni1s\",\"data-framer-name\":\"Bloc Mission\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m8q8jf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{style:{scale:.7}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ypg33w\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16q9k01-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ta37Af91W\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:11,height:\"100%\",hoverFactor:1,id:\"ta37Af91W\",layoutId:\"ta37Af91W\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vvatwg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MISSION\"})}),className:\"framer-1m9uwr7\",fonts:[\"BI;Mazius Display/Bold/v0\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:\"28px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4le5ib-container\",inComponentSlot:true,nodeId:\"RW1imu52o\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(IcoSeparateur,{height:\"100%\",id:\"RW1imu52o\",layoutId:\"RW1imu52o\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[\"Transformer vos id\\xe9es en\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\"},children:\" R\\xc9CITS VISUELS ANIM\\xc9S\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\"},children:\" \"}),\"adapt\\xe9s \\xe0 votre vision unique.\"]})})},qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[\"Transformer vos id\\xe9es en\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"R\\xc9CITS VISUELS ANIM\\xc9S\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.01em\"},children:\" \"}),\"adapt\\xe9s \\xe0 votre vision unique.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[\"Transformer vos id\\xe9es en\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"R\\xc9CITS VISUELS ANIM\\xc9S\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.01em\"},children:\" \"}),\"adapt\\xe9s \\xe0 votre vision unique.\"]})}),className:\"framer-n569wo\",fonts:[\"GF;Chivo-regular\",\"BI;Mazius Display/Bold/v0\",\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qs4uq1\",\"data-framer-name\":\"Ornementation\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+240+449-448.501+0+0+0+0+0+32.75+0+53.74+0+118+0+0+34+5),pixelHeight:48,pixelWidth:1303,sizes:\"235px\",src:\"https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png\",srcSet:\"https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png 1303w\"}},qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+0+50+0+0+0+0+-46.9+90+70+0+203+10+0+82.8+20),pixelHeight:48,pixelWidth:1303,sizes:\"350px\",src:\"https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png\",srcSet:\"https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png 1303w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+0+0+0+0+200+0+0+0+131+0+262+7.3+0+103.4+20),pixelHeight:48,pixelWidth:1303,sizes:\"450px\",src:\"https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png\",srcSet:\"https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUO69YS2BUNJZ9NFidVSw0I.png 1303w\"},className:\"framer-7busd1\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19nlnib hidden-1f3a624 hidden-g0mo5r\"})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6s3hw9 hidden-g0mo5r\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b7xx0r\",\"data-framer-name\":\"changer menu\",id:elementId2,ref:ref1}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aogqta\",\"data-framer-name\":\"Titre 1\",id:elementId3,ref:ref4})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-u9d1i2 hidden-g0mo5r\",\"data-framer-name\":\"Presentation \",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a03bcg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k64zpn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11bwos\",\"data-framer-name\":\"Elements\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10pbb4r\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:399.5,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1530+0+0+0+0+0+398),pixelHeight:799,pixelWidth:3e3,sizes:\"750px\",src:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png 3000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:111,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:399.5,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1750+0+0+0+0+0+730),pixelHeight:799,pixelWidth:3e3,sizes:\"1000px\",src:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png 3000w\"},className:\"framer-1ju8yy0\",\"data-framer-name\":\"Clouds-horizon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:434,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1530+0+0+0+0+0+278),pixelHeight:868,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"273px\",src:\"https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png?scale-down-to=512 512w,https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:113,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:434,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1750+0+0+0+0+0+496),pixelHeight:868,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"342px\",src:\"https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png?scale-down-to=512 512w,https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png 1000w\"},className:\"framer-7glboz\",\"data-framer-name\":\"Bg-Triangle\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1530+0+0+0+0+0+303),pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"301px\",src:\"https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:119,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1750+0+0+0+0+0+391),pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"491px\",src:\"https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png 1000w\"},className:\"framer-km1hkd\",\"data-framer-name\":\"Bg-Circle\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:347.5,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1530+0+0+0+0+0+455.5),pixelHeight:695,pixelWidth:1e3,sizes:\"335px\",src:\"https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:130,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:347.5,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1750+0+0+0+0+0+769.5),pixelHeight:695,pixelWidth:1e3,sizes:\"565px\",src:\"https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png 1000w\"},className:\"framer-q98vbz\",\"data-framer-name\":\"Clouds 2\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"Arno jegu motion designer\",fit:\"fill\",intrinsicHeight:294,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1530+0+0+0+0+0+618),pixelHeight:588,pixelWidth:800,sizes:\"401px\",src:\"https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif 800w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:146,__perspectiveFX:false,__targetOpacity:1,as:\"figure\",background:{alt:\"Arno jegu motion designer\",fit:\"fill\",intrinsicHeight:294,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1750+0+0+0+0+0+1984-1104.5),pixelHeight:588,pixelWidth:800,sizes:\"716px\",src:\"https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif 800w\"},className:\"framer-164262g\",\"data-framer-name\":\"JEGU 04\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-opql2i\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uks9h7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qb3ydu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"DONNEZ \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular Italic\", \"PP Neue Machina Inktrap Regular Italic Placeholder\", sans-serif'},children:\"VIE\"}),\" \\xc0 VOS\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MESSAGES POUR\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"DONNEZ \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular Italic\", \"PP Neue Machina Inktrap Regular Italic Placeholder\", sans-serif'},children:\"VIE\"}),\" \\xc0 VOS\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MESSAGES POUR\"})]}),className:\"framer-ssl898\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\",\"CUSTOM;PP Neue Machina Inktrap Regular Italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18oecer-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UcaanaMKv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{font:{fontFamily:'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',fontSize:\"35px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(StaggeredCycle,{alignment:\"left\",color:\"rgb(255, 255, 255)\",delay:0,font:{fontFamily:'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',fontSize:\"53px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"UcaanaMKv\",layoutId:\"UcaanaMKv\",loop:true,speed:13,stagger:.4,tag:\"p\",text:\"SEDUIRE, INFORMER, EXPLIQUER, CONVAINCRE, ENGAGER\",userSelect:false,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:[\"Je collabore \\xe9troitement avec les entreprises & les marques dans leur \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tNjAwaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"strat\\xe9gie marketing vid\\xe9o \"}),\"pour atteindre leurs objectifs de communication.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:[\"Je collabore \\xe9troitement avec les entreprises & les marques dans leur \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tNjAwaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"strat\\xe9gie marketing vid\\xe9o \"}),\"pour atteindre leurs objectifs de communication.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-db42or\",fonts:[\"GF;Chivo-regular\",\"GF;Chivo-600italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kzlude\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yj889h\",\"data-framer-name\":\"Textes_02\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"arno jegu - Direction artistique - Motion Design - Design graphique - Freelance\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1530+0+0+0+0+20+50+461+0+0+172.75),pixelHeight:640,pixelWidth:800,sizes:\"320px\",src:\"https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif 800w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"arno jegu - Direction artistique - Motion Design - Design graphique - Freelance\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1750+0+0+0+0+100+100+900+0+0+0+353.8),pixelHeight:640,pixelWidth:800,sizes:\"465px\",src:\"https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif 800w\"},className:\"framer-1i2hnfw\",\"data-framer-name\":\"JEGU 02\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ignbtm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vnf7c1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"STORYTELLING \"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"DESIGN & ANIMATION\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"STORYTELLING \"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"DESIGN & ANIMATION\"})]}),className:\"framer-z4wwlg\",fonts:[\"BI;Mazius Display/Bold/v0\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12orix6\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mtitf3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j5xe6x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[\"Je suis passionn\\xe9 par la cr\\xe9ation de concepts graphiques anim\\xe9s pour \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif'},children:\"raconter votre histoire\"}),\" et cr\\xe9er des exp\\xe9riences uniques pour vos clients.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[\"Je suis passionn\\xe9 par la cr\\xe9ation de concepts graphiques anim\\xe9s pour \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif'},children:\"raconter votre histoire\"}),\" et cr\\xe9er des exp\\xe9riences uniques pour vos clients.\"]})}),className:\"framer-9rchal\",fonts:[\"GF;Chivo-regular\",\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-146bxc3\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uctcd7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uazb09\",\"data-styles-preset\":\"WVD5FA3SN\",style:{\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Chaque vid\\xe9o est une cr\\xe9ation originale, du fait-maison adapt\\xe9e \\xe0 votre univers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uazb09\",\"data-styles-preset\":\"WVD5FA3SN\",style:{\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Gr\\xe2ce \\xe0 mon expertise dans les domaines du storytelling, de la conception graphique, de l'animation et de l'int\\xe9gration multim\\xe9dia, nous nous concentrons ensemble sur la mani\\xe8re dont vos vid\\xe9os de motion design peuvent r\\xe9pondre \\xe0 vos objectifs.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c5o22f\",\"data-styles-preset\":\"fi0ZKkaiq\",style:{\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Chaque vid\\xe9o est une cr\\xe9ation originale, du fait-maison adapt\\xe9e \\xe0 votre univers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c5o22f\",\"data-styles-preset\":\"fi0ZKkaiq\",style:{\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Gr\\xe2ce \\xe0 mon expertise dans les domaines du storytelling, de la conception graphique, de l'animation et de l'int\\xe9gration multim\\xe9dia, nous nous concentrons ensemble sur la mani\\xe8re dont vos vid\\xe9os de motion design peuvent r\\xe9pondre \\xe0 vos objectifs.\"})]}),className:\"framer-s5mnv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uazb09\",\"data-styles-preset\":\"WVD5FA3SN\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Outil marketing puissant, chaque vid\\xe9o con\\xe7ue capte l'attention, facilite la compr\\xe9hension de messages complexes et engendre de l'engagement et de la visibilit\\xe9.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uazb09\",\"data-styles-preset\":\"WVD5FA3SN\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Que ce soit pour des publicit\\xe9s, des pr\\xe9sentations produits ou des animations explicatives,\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uazb09\",\"data-styles-preset\":\"WVD5FA3SN\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Je suis l\\xe0 pour vous accompagner \\xe0 chaque \\xe9tape du processus de cr\\xe9ation.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c5o22f\",\"data-styles-preset\":\"fi0ZKkaiq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Outil marketing puissant, chaque vid\\xe9o con\\xe7ue capte l'attention, facilite la compr\\xe9hension de messages complexes et engendre de l'engagement et de la visibilit\\xe9.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c5o22f\",\"data-styles-preset\":\"fi0ZKkaiq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Que ce soit pour des publicit\\xe9s, des pr\\xe9sentations produits ou des animations explicatives,\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1c5o22f\",\"data-styles-preset\":\"fi0ZKkaiq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Je suis l\\xe0 pour vous accompagner \\xe0 chaque \\xe9tape du processus de cr\\xe9ation.\"})]}),className:\"framer-2yii5m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z69tvq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1530+0+0+0+0+20+50+461+0+602.5+-11),pixelHeight:450,pixelWidth:1201,sizes:\"810px\",src:\"https://framerusercontent.com/images/ytSVbsp1DoRNxft8aIR1z4LGek.gif\",srcSet:\"https://framerusercontent.com/images/ytSVbsp1DoRNxft8aIR1z4LGek.gif?scale-down-to=512 512w,https://framerusercontent.com/images/ytSVbsp1DoRNxft8aIR1z4LGek.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/ytSVbsp1DoRNxft8aIR1z4LGek.gif 1201w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1750+0+0+0+0+100+100+900+0+801.8+-11),pixelHeight:450,pixelWidth:1201,sizes:\"1200px\",src:\"https://framerusercontent.com/images/ytSVbsp1DoRNxft8aIR1z4LGek.gif\",srcSet:\"https://framerusercontent.com/images/ytSVbsp1DoRNxft8aIR1z4LGek.gif?scale-down-to=512 512w,https://framerusercontent.com/images/ytSVbsp1DoRNxft8aIR1z4LGek.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/ytSVbsp1DoRNxft8aIR1z4LGek.gif 1201w\"},className:\"framer-9hq4j9\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j6i1r8\",\"data-framer-name\":\"Baseline\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bojsem\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18vfwlb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"UNE ID\\xc9E ? \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"UNE ID\\xc9E ? \"})}),className:\"framer-1pxhkja\",fonts:[\"BI;Mazius Display/Bold/v0\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular Italic\", \"PP Neue Machina Inktrap Regular Italic Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif'},children:\"Rejoignez-moi pour une \"}),\"collaboration inspirante\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Donnez \\xe0 vos histoires, l'impact qu'elles m\\xe9ritent !\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular Italic\", \"PP Neue Machina Inktrap Regular Italic Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif'},children:\"Rejoignez-moi pour une \"}),\"collaboration inspirante\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Donnez \\xe0 vos histoires, l'impact qu'elles m\\xe9ritent !\"})]}),className:\"framer-lybwr8\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular Italic\",\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TpG9QCXua\"},implicitPathVariables:undefined},{href:{webPageId:\"TpG9QCXua\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{y:(componentViewport?.y||0)+0+1530+0+0+0+0+20+50+461+0+602.5+-31.0854+0+0+377}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+1750+0+0+0+0+100+100+900+0+801.8+0+30+0+520,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12u33lc-container\",nodeId:\"J030MwrB0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{cFsCcg93e:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(DButton,{AwLVtbPDc:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",BSOUUvg2I:\"rgb(43, 37, 27)\",cFsCcg93e:resolvedLinks[0],height:\"100%\",id:\"J030MwrB0\",kc3TEh2D5:\"J'ai une id\\xe9e\",layoutId:\"J030MwrB0\",OZOAUcesg:\"rgb(255, 255, 255)\",Q8bxkK_Tn:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",rxlQQT7eB:18,style:{height:\"100%\"},variant:\"PI0Xr4mT3\",vzCC4h5Mr:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",width:\"100%\",wuah86xnK:\"rgb(255, 255, 255)\",zMa3Tvq0J:16,ZT_RE8uZX:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>'})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1041zk9\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"arno jegu - Direction artistique - Motion Design - Design graphique - Freelance\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1530+0+0+0+0+20+50+461+0+602.5+-31.0854+47.5),pixelHeight:757,pixelWidth:800,sizes:\"350px\",src:\"https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif\",srcSet:\"https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif?scale-down-to=512 512w,https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif 800w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"arno jegu - Direction artistique - Motion Design - Design graphique - Freelance\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1750+0+0+0+0+100+100+900+0+801.8+0+111),pixelHeight:757,pixelWidth:800,sizes:\"431px\",src:\"https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif\",srcSet:\"https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif?scale-down-to=512 512w,https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif 800w\"},className:\"framer-1st3hs7\",\"data-framer-name\":\"JEGU 07\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i1lnnz\"})]})]})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-523}}]}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{bounce:0,damping:60,delay:0,duration:.7,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-653}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-11dpv4\",\"data-framer-name\":\"Volet\"})})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lm4fn8 hidden-72rtr7 hidden-1f3a624\",\"data-framer-name\":\"Presentation\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-163qx7r hidden-g0mo5r\",\"data-framer-name\":\"LOGOS\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e53zk1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YLzKZImMb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:19,height:\"100%\",hoverFactor:.7,id:\"YLzKZImMb\",layoutId:\"YLzKZImMb\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:98,pixelWidth:447,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ytHvEN3KAguugvqt2TZ4tCYc8.png\"},className:\"framer-gw9rdk\",\"data-framer-name\":\"LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:121,pixelWidth:413,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fsnrky2e67cJ4JLfDy5HMWzNPM.png\"},className:\"framer-15w58us\",\"data-framer-name\":\"LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:143,pixelWidth:288,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Iwj4O7zLq9D4YJEiGhz5VQoQbkQ.png\"},className:\"framer-rbpp67\",\"data-framer-name\":\"LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:174,pixelWidth:207,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ll7ymvPJUdEUokZtRw7nC64Xm4.png\"},className:\"framer-hl1n5k\",\"data-framer-name\":\"LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:151,pixelWidth:353,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kXUK0ENNjs9G8QAIqOdqR8t8CA.png\"},className:\"framer-1va2kki\",\"data-framer-name\":\"LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:153,pixelWidth:367,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OpbXk13rAs3FSABZmNiowem5U.png\"},className:\"framer-oa1a3m\",\"data-framer-name\":\"LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:140,pixelWidth:399,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iHKp8v3V1vhsT94PSbHOqMakS0.png\"},className:\"framer-12asdu0\",\"data-framer-name\":\"LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:166,pixelWidth:341,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Zal5XgdBA5FCBShMNHB5QI2IzS0.png\"},className:\"framer-6eov2t\",\"data-framer-name\":\"LOGO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:138,pixelWidth:413,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zD0kbuyQNnODeEigBSZQsbr4L0.png\"},className:\"framer-1c53xtn\",\"data-framer-name\":\"LOGO_1\"})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pd5xlh\",\"data-framer-name\":\"Elements\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16boj9z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:399.5,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+689+0+0+0+0+223),pixelHeight:799,pixelWidth:3e3,sizes:\"294px\",src:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png 3000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:108,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:399.5,intrinsicWidth:1500,pixelHeight:799,pixelWidth:3e3,sizes:\"294px\",src:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png 3000w\"},className:\"framer-1so8m5w\",\"data-framer-name\":\"Clouds-horizon\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:434,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+689+0+0+0+0+152.5),pixelHeight:868,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"132px\",src:\"https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png?scale-down-to=512 512w,https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:115,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:434,intrinsicWidth:500,pixelHeight:868,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"132px\",src:\"https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png?scale-down-to=512 512w,https://framerusercontent.com/images/VhjheTntMTcxHgFaQLUI0oqo2D4.png 1000w\"},className:\"framer-1i86fy2\",\"data-framer-name\":\"Bg-Triangle\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+689+0+0+0+0+111.5),pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"158px\",src:\"https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:119,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:1e3,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"158px\",src:\"https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCn7oOo0OaC3k8JPWGyEKIYko8w.png 1000w\"},className:\"framer-1havy3r\",\"data-framer-name\":\"Bg-Circle\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:347.5,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+689+0+0+0+0+195),pixelHeight:695,pixelWidth:1e3,sizes:\"132px\",src:\"https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:347.5,intrinsicWidth:500,pixelHeight:695,pixelWidth:1e3,sizes:\"132px\",src:\"https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png?scale-down-to=512 512w,https://framerusercontent.com/images/zmTGcBXIVxMtvzX2wc1INWv3pI.png 1000w\"},className:\"framer-1ycnigu\",\"data-framer-name\":\"Clouds 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:294,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+689+0+0+0+0+197),pixelHeight:588,pixelWidth:800,sizes:\"175px\",src:\"https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif 800w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:130,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:294,intrinsicWidth:400,pixelHeight:588,pixelWidth:800,sizes:\"175px\",src:\"https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/iKgAzjdz4JM08TsmdzarFdCVMUk.gif 800w\"},className:\"framer-1xsm07r\",\"data-framer-name\":\"JEGU 04\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qo8cbj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1defwf3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vc6lpn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"DONNEZ \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular Italic\", \"PP Neue Machina Inktrap Regular Italic Placeholder\", sans-serif'},children:\"VIE\"}),\" \\xc0 VOS\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MESSAGES POUR\"})]}),className:\"framer-1lg4vb5\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\",\"CUSTOM;PP Neue Machina Inktrap Regular Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hw3bd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kRZEn3TeK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(StaggeredCycle,{alignment:\"left\",color:\"rgb(255, 255, 255)\",delay:0,font:{fontFamily:'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',fontSize:\"17px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"kRZEn3TeK\",layoutId:\"kRZEn3TeK\",loop:true,speed:13,stagger:.4,tag:\"p\",text:\"SEDUIRE, INFORMER, EXPLIQUER, CONVAINCRE, ENGAGER\",userSelect:false,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:[\"Je collabore \\xe9troitement avec les entreprises & les marques dans leur \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tNjAwaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\"},children:\"strat\\xe9gie marketing vid\\xe9o \"}),\"pour atteindre leurs objectifs de communication.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-16ahg1x\",fonts:[\"GF;Chivo-regular\",\"GF;Chivo-600italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cpxzr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wmcuhz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10bu89w\",\"data-framer-name\":\"Textes_02\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+689+0+0+0+0+-274.7997+0+672+0+0+0+0+0+642),pixelHeight:640,pixelWidth:800,sizes:\"214.4px\",src:\"https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:320,intrinsicWidth:400,pixelHeight:640,pixelWidth:800,sizes:\"214.4px\",src:\"https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/vgKddSnHnEvBBaHf1nZvlDE8.gif 800w\"},className:\"framer-9vcsjn\",\"data-framer-name\":\"JEGU 02\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j670w6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lz56ni\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"STORYTELLING \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"DESIGN & ANIMATION\"})]}),className:\"framer-s2s3cw\",fonts:[\"BI;Mazius Display/Bold/v0\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uiecw1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ub3jlg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[\"Je suis passionn\\xe9 par la cr\\xe9ation de concepts graphiques anim\\xe9s pour \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif'},children:\"raconter votre histoire\"}),\" et cr\\xe9er des exp\\xe9riences uniques pour vos clients.\"]})}),className:\"framer-klh443\",fonts:[\"GF;Chivo-regular\",\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wsbe2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19neaio\",\"data-styles-preset\":\"JIpdP75RV\",style:{\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Chaque vid\\xe9o est une cr\\xe9ation originale, du fait-maison adapt\\xe9e \\xe0 votre univers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19neaio\",\"data-styles-preset\":\"JIpdP75RV\",style:{\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Gr\\xe2ce \\xe0 mon expertise dans les domaines du storytelling, de la conception graphique, de l'animation et de l'int\\xe9gration multim\\xe9dia, nous nous concentrons ensemble sur la mani\\xe8re dont vos vid\\xe9os de motion design peuvent r\\xe9pondre pr\\xe9cis\\xe9ment \\xe0 vos objectifs.\"})]}),className:\"framer-1b4045s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19neaio\",\"data-styles-preset\":\"JIpdP75RV\",style:{\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Outil marketing puissant, chaque vid\\xe9o con\\xe7ue capte l'attention, facilite la compr\\xe9hension de messages complexes et engendre de l'engagement et de la visibilit\\xe9.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19neaio\",\"data-styles-preset\":\"JIpdP75RV\",style:{\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Que ce soit pour des publicit\\xe9s, des pr\\xe9sentations produits ou des animations explicatives, je suis l\\xe0 pour vous accompagner \\xe0 chaque \\xe9tape du processus de cr\\xe9ation.\"})]}),className:\"framer-18x1y3e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8ghuui\",\"data-framer-name\":\"Baseline\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yvidfs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"UNE ID\\xc9E ? \"})}),className:\"framer-1i2u8fc\",fonts:[\"BI;Mazius Display/Bold/v0\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXIgSXRhbGlj\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular Italic\", \"PP Neue Machina Inktrap Regular Italic Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif'},children:\"Rejoignez-moi pour une \"}),\"collaboration inspirante\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Donnez \\xe0 vos histoires l'impact qu'elles m\\xe9ritent !\"})]}),className:\"framer-4fn6l\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular Italic\",\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TpG9QCXua\"},implicitPathVariables:undefined},{href:{webPageId:\"TpG9QCXua\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{y:(componentViewport?.y||0)+0+689+0+0+0+0+-274.7997+0+672+0+0+0+848+0+0+0+247.2485}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40.003,width:\"132px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ejya01-container\",nodeId:\"sl5uipPSW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{cFsCcg93e:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(DButton,{AwLVtbPDc:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",BSOUUvg2I:\"rgb(43, 37, 27)\",cFsCcg93e:resolvedLinks1[0],height:\"100%\",id:\"sl5uipPSW\",kc3TEh2D5:\"J'ai une id\\xe9e\",layoutId:\"sl5uipPSW\",OZOAUcesg:\"rgb(255, 255, 255)\",Q8bxkK_Tn:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",rxlQQT7eB:18,style:{height:\"100%\",width:\"100%\"},variant:\"PI0Xr4mT3\",vzCC4h5Mr:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",width:\"100%\",wuah86xnK:\"rgb(255, 255, 255)\",zMa3Tvq0J:16,ZT_RE8uZX:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.9367 3.64886L12.0003 1.15198L11.064 3.64886C9.66542 7.37843 7.3788 9.66506 3.64922 11.0636L1.15234 12L3.64922 12.9363C7.3788 14.3349 9.66542 16.6215 11.064 20.3511L12.0003 22.848L12.9367 20.3511C14.3353 16.6215 16.6219 14.3349 20.3515 12.9363L22.8483 12L20.3515 11.0636C16.6219 9.66506 14.3353 7.37843 12.9367 3.64886Z\" fill=\"black\"/> </svg>'})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+689+0+0+0+0+-274.7997+0+672+0+0+0+848+0+193.5),pixelHeight:757,pixelWidth:800,sizes:\"242px\",src:\"https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif\",srcSet:\"https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif?scale-down-to=512 512w,https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:400,pixelHeight:757,pixelWidth:800,sizes:\"242px\",src:\"https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif\",srcSet:\"https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif?scale-down-to=512 512w,https://framerusercontent.com/images/FuTJlaVqCz763gfd2zvCh9THBM.gif 800w\"},className:\"framer-d3mfbv\",\"data-framer-name\":\"JEGU 07\"})})]})]})})]})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xgvvqf hidden-g0mo5r\",\"data-framer-cursor\":\"dfldja\",\"data-framer-name\":\"Cr\\xe9ations sur-mesure\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-167a5pz\",\"data-framer-name\":\"section transition ref\",id:elementId6,ref:ref7}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cxjcm\",\"data-framer-name\":\"section 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.45,skewX:0,skewY:0,x:0,y:-96}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:200}}]}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:-99}},{ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:2.1,skewX:0,skewY:0,x:0,y:100}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ibvmqi\",\"data-framer-name\":\"MATTE\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t9oxtx\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jrcxow\",\"data-framer-name\":\"MATTE\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1z0laqv\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f2r79r\",\"data-framer-name\":\"MATTE FRAMER\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1300 1300\"><path d=\"M 0 0 L 0 1300 L 1300 1300 L 1300 0 Z M 650 1282.5 C 300.68 1282.5 17.5 999.32 17.5 650 C 17.5 300.68 300.68 17.5 650 17.5 C 999.32 17.5 1282.5 300.68 1282.5 650 C 1282.5 999.32 999.32 1282.5 650 1282.5 Z\" fill=\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127)) /* {&quot;name&quot;:&quot;Or menu&quot;} */\"></path></svg>',svgContentId:11829822651,withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lq54e5\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dj00s4\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k3x3i\",\"data-framer-name\":\"SCENE\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jw52r9\",\"data-framer-name\":\"Nuages horizon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:443.888900647929,intrinsicWidth:1666.6667108182567,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2860+0+0+0+300+0),pixelHeight:799,pixelWidth:3e3,sizes:\"743px\",src:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:443.888900647929,intrinsicWidth:1666.6667108182567,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3615+0+0+0+243+0),pixelHeight:799,pixelWidth:3e3,sizes:\"743px\",src:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/i8hJTUX0cNwa7Oj0uf2tTlDLQ.png 3000w\"},className:\"framer-1q9r5mg\",\"data-framer-name\":\"Clouds-horizon\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"SUR-MESURE\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:90}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"SUR-MESURE\"})}),className:\"framer-tjbcb9\",fonts:[\"BI;Mazius Display/Bold/v0\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvRXh0cmEgaXRhbGljL3Yw\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--token-ae79b0ac-cec0-4240-8914-dc5e99f202be, rgb(237, 97, 55))\"},children:\"solutions\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:197}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvRXh0cmEgaXRhbGljL3Yw\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--token-ae79b0ac-cec0-4240-8914-dc5e99f202be, rgb(237, 97, 55))\"},children:\"solutions\"})}),className:\"framer-1fiofe0\",fonts:[\"BI;Mazius Display/Extra italic/v0\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.85,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-eqq1zy\",\"data-framer-name\":\"Vintage cam\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:833.3333554091283,intrinsicWidth:666.6666843273026,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2860+0+0+0+324+0),pixelHeight:1280,pixelWidth:2040,sizes:\"400px\",src:\"https://framerusercontent.com/images/QqdVSJ62BDAeN18YJdryIeXDqA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/QqdVSJ62BDAeN18YJdryIeXDqA.png?scale-down-to=512 512w,https://framerusercontent.com/images/QqdVSJ62BDAeN18YJdryIeXDqA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QqdVSJ62BDAeN18YJdryIeXDqA.png 2040w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:833.3333554091283,intrinsicWidth:666.6666843273026,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3615+0+0+0+307+0),pixelHeight:1280,pixelWidth:2040,sizes:\"514px\",src:\"https://framerusercontent.com/images/QqdVSJ62BDAeN18YJdryIeXDqA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/QqdVSJ62BDAeN18YJdryIeXDqA.png?scale-down-to=512 512w,https://framerusercontent.com/images/QqdVSJ62BDAeN18YJdryIeXDqA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QqdVSJ62BDAeN18YJdryIeXDqA.png 2040w\"},className:\"framer-opev1w\",\"data-framer-name\":\"Vintage cam\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.15,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e8vkej\",\"data-framer-name\":\"Couple rencontre\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:833.3333554091283,intrinsicWidth:666.6666843273026,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2860+0+0+0+267+0),pixelHeight:1500,pixelWidth:1200,sizes:\"275px\",src:\"https://framerusercontent.com/images/9ew4vWVBVQF90eoJxV4UQkW0pI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9ew4vWVBVQF90eoJxV4UQkW0pI.png?scale-down-to=1024 819w,https://framerusercontent.com/images/9ew4vWVBVQF90eoJxV4UQkW0pI.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:833.3333554091283,intrinsicWidth:666.6666843273026,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3615+0+0+0+261+0),pixelHeight:1500,pixelWidth:1200,sizes:\"320px\",src:\"https://framerusercontent.com/images/9ew4vWVBVQF90eoJxV4UQkW0pI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9ew4vWVBVQF90eoJxV4UQkW0pI.png?scale-down-to=1024 819w,https://framerusercontent.com/images/9ew4vWVBVQF90eoJxV4UQkW0pI.png 1200w\"},className:\"framer-1a1n7rg\",\"data-framer-name\":\"Couple rencontre\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:0,damping:98,delay:0,duration:2,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:510,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-77,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.35,skewX:0,skewY:0,x:-44,y:24}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k9bwr4\",\"data-framer-name\":\"Machine ecrire\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vgb47j\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:509.44445794011375,intrinsicWidth:500.00001324547696,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2860+0+0+0+160+0+302),pixelHeight:1e3,pixelWidth:1500,sizes:\"315px\",src:\"https://framerusercontent.com/images/RNLDdZ0RNTg4hGdHv5c2MQWRX1Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RNLDdZ0RNTg4hGdHv5c2MQWRX1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/RNLDdZ0RNTg4hGdHv5c2MQWRX1Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RNLDdZ0RNTg4hGdHv5c2MQWRX1Y.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:509.44445794011375,intrinsicWidth:500.00001324547696,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3615+0+0+0+393+0+22),pixelHeight:1e3,pixelWidth:1500,sizes:\"442px\",src:\"https://framerusercontent.com/images/RNLDdZ0RNTg4hGdHv5c2MQWRX1Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RNLDdZ0RNTg4hGdHv5c2MQWRX1Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/RNLDdZ0RNTg4hGdHv5c2MQWRX1Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RNLDdZ0RNTg4hGdHv5c2MQWRX1Y.png 1500w\"},className:\"framer-1mdfzoe\",\"data-framer-name\":\"Olivier 09\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:0,damping:98,delay:0,duration:2,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:510,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:26,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:-44,y:24}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k7xabn\",\"data-framer-name\":\"Old Mac\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:509.44445794011375,intrinsicWidth:500.00001324547696,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2860+0+0+0+120+0+285),pixelHeight:896,pixelWidth:836,sizes:\"212px\",src:\"https://framerusercontent.com/images/6LdD0zkDihTExs7vR9lpz5FKA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6LdD0zkDihTExs7vR9lpz5FKA.png 836w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:509.44445794011375,intrinsicWidth:500.00001324547696,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3615+0+0+0+335+0+42),pixelHeight:896,pixelWidth:836,sizes:\"270px\",src:\"https://framerusercontent.com/images/6LdD0zkDihTExs7vR9lpz5FKA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6LdD0zkDihTExs7vR9lpz5FKA.png 836w\"},className:\"framer-befqb\",\"data-framer-name\":\"Old mac\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ypr4et\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:0,damping:98,delay:0,duration:2,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:510,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.45,skewX:0,skewY:0,x:-91,y:24}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1royey4\",\"data-framer-name\":\"Crayon\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:509.44445794011375,intrinsicWidth:500.00001324547696,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2860+0+0+0+170+0+480),pixelHeight:87,pixelWidth:766,sizes:\"282px\",src:\"https://framerusercontent.com/images/ZAYad6x9xXiw6GLlxDQsD1P7Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ZAYad6x9xXiw6GLlxDQsD1P7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZAYad6x9xXiw6GLlxDQsD1P7Y.png 766w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:509.44445794011375,intrinsicWidth:500.00001324547696,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3615+0+0+0+367+0+292),pixelHeight:87,pixelWidth:766,sizes:\"347px\",src:\"https://framerusercontent.com/images/ZAYad6x9xXiw6GLlxDQsD1P7Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ZAYad6x9xXiw6GLlxDQsD1P7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZAYad6x9xXiw6GLlxDQsD1P7Y.png 766w\"},className:\"framer-gpavw6\",\"data-framer-name\":\"Crayon\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7lhuwq\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:0,damping:98,delay:0,duration:2,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:510,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:-197,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-106,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jhqwe0\",\"data-framer-name\":\"Palmiers02\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ehdvgn\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1045.000027683047,intrinsicWidth:833.3333554091283,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2860+0+0+0+38+0+0),pixelHeight:1881,pixelWidth:1500,sizes:\"684px\",src:\"https://framerusercontent.com/images/zzvZXTKAn5oHTzYOA6HSXd5ZWgI.png\",srcSet:\"https://framerusercontent.com/images/zzvZXTKAn5oHTzYOA6HSXd5ZWgI.png?scale-down-to=1024 816w,https://framerusercontent.com/images/zzvZXTKAn5oHTzYOA6HSXd5ZWgI.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1045.000027683047,intrinsicWidth:833.3333554091283,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3615+0+0+0+45+0+0),pixelHeight:1881,pixelWidth:1500,sizes:\"673px\",src:\"https://framerusercontent.com/images/zzvZXTKAn5oHTzYOA6HSXd5ZWgI.png\",srcSet:\"https://framerusercontent.com/images/zzvZXTKAn5oHTzYOA6HSXd5ZWgI.png?scale-down-to=1024 816w,https://framerusercontent.com/images/zzvZXTKAn5oHTzYOA6HSXd5ZWgI.png 1500w\"},className:\"framer-bekf8\",\"data-framer-name\":\"Palmiers 02\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{bounce:0,damping:98,delay:0,duration:2,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:510,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:265,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-87oi9u\",\"data-framer-name\":\"Palmiers01\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1045.000027683047,intrinsicWidth:833.3333554091283,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2860+0+0+0+33+0+0),pixelHeight:1881,pixelWidth:1500,sizes:\"757px\",src:\"https://framerusercontent.com/images/TX0oNazwRNiAgRxdoCK12QlE4.png\",srcSet:\"https://framerusercontent.com/images/TX0oNazwRNiAgRxdoCK12QlE4.png?scale-down-to=1024 816w,https://framerusercontent.com/images/TX0oNazwRNiAgRxdoCK12QlE4.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1045.000027683047,intrinsicWidth:833.3333554091283,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3615+0+0+0+-94+0+0),pixelHeight:1881,pixelWidth:1500,sizes:\"937px\",src:\"https://framerusercontent.com/images/TX0oNazwRNiAgRxdoCK12QlE4.png\",srcSet:\"https://framerusercontent.com/images/TX0oNazwRNiAgRxdoCK12QlE4.png?scale-down-to=1024 816w,https://framerusercontent.com/images/TX0oNazwRNiAgRxdoCK12QlE4.png 1500w\"},className:\"framer-z6so73\",\"data-framer-name\":\"Palmiers 01\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18kwjzu\"})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ayxv5\",\"data-framer-name\":\"section 3\"})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16yhkh hidden-g0mo5r\",\"data-framer-name\":\"Produits\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j3x71p\",\"data-framer-name\":\"BG\",id:elementId9,ref:ref10}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:108,__perspectiveFX:false,__targetOpacity:1,className:\"framer-if4mfu\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"173px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(63, 205, 173)\"},children:\"LOVE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvQm9sZC92MA==\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"210px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(63, 205, 173)\"},children:\"LOVE\"})}),className:\"framer-p8g5wf\",fonts:[\"BI;Mazius Display/Bold/v0\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvRXh0cmEgaXRhbGljL3Yw\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"101px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Inspiration\"})}),transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvRXh0cmEgaXRhbGljL3Yw\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"126px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Inspiration\"})}),className:\"framer-1bvedbk\",fonts:[\"BI;Mazius Display/Extra italic/v0\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4123+-27.3277),pixelHeight:1870,pixelWidth:1500,positionX:\"center\",positionY:\"top\",sizes:\"810px\",src:\"https://framerusercontent.com/images/m81JTpwgVYb6GvNRrhyVAP4OVnY.jpg\",srcSet:\"https://framerusercontent.com/images/m81JTpwgVYb6GvNRrhyVAP4OVnY.jpg?scale-down-to=1024 821w,https://framerusercontent.com/images/m81JTpwgVYb6GvNRrhyVAP4OVnY.jpg 1500w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5590+-.5),pixelHeight:1870,pixelWidth:1500,positionX:\"center\",positionY:\"top\",sizes:\"1200px\",src:\"https://framerusercontent.com/images/m81JTpwgVYb6GvNRrhyVAP4OVnY.jpg\",srcSet:\"https://framerusercontent.com/images/m81JTpwgVYb6GvNRrhyVAP4OVnY.jpg?scale-down-to=1024 821w,https://framerusercontent.com/images/m81JTpwgVYb6GvNRrhyVAP4OVnY.jpg 1500w\"},className:\"framer-dw9ywq\",id:elementId10,ref:ref11,style:{scale:.9},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x4ngh4\",\"data-framer-name\":\"Perso\",id:elementId11,ref:ref12,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uk4cgc\",\"data-framer-name\":\"Ticker BIG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ea2z3r\",style:{rotate:-6},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gpdiw0-container\",\"data-framer-name\":\"Ticker BIG\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker BIG\",nodeId:\"TBima0aVN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"TBima0aVN\",layoutId:\"TBima0aVN\",name:\"Ticker BIG\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-62xflj\",\"data-framer-name\":\"3D\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"3D\"})}),className:\"framer-jrmlrp\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r6qo3n\",\"data-framer-name\":\"TV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Broadcast TV\"})}),className:\"framer-18oswmf\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d570k7\",\"data-framer-name\":\"produit\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Vid\\xe9o produit\"})}),className:\"framer-18iajy4\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1es6gfx\",\"data-framer-name\":\"Illustration\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Illustration\"})}),className:\"framer-zwznh5\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q5b4u5\",\"data-framer-name\":\"explicative\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Vid\\xe9o explicative\"})}),className:\"framer-rbokl9\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j6lka2\",\"data-framer-name\":\"Stories\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Stories\"})}),className:\"framer-1sqoh0h\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d0qflz\",\"data-framer-name\":\"Lotties\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Lotties\"})}),className:\"framer-1tczbrj\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15unxxe\",\"data-framer-name\":\"animation\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Animation\"})}),className:\"framer-1puj0t2\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ty38b\",\"data-framer-name\":\"GIF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"GIF\"})}),className:\"framer-9cz8kf\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vimcla\",\"data-framer-name\":\"explicative\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-39ce1d65-3aa3-47c2-ac1f-bf236c2aaf0a, rgb(56, 56, 56))\"},children:\"Publicit\\xe9 digitale\"})}),className:\"framer-1bqum1q\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uvbrkc\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p27nlc\",\"data-framer-name\":\"Perso\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ybec1q\",\"data-framer-name\":\"Perso foret\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:-26}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:403,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4123+-50+100+0+0+0),pixelHeight:2e3,pixelWidth:806,sizes:\"224.2642px\",src:\"https://framerusercontent.com/images/Eq2246LvE8GT2DXJg2V7QIVDTg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Eq2246LvE8GT2DXJg2V7QIVDTg.png 806w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{bounce:0,damping:60,delay:0,duration:2,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:0,y:-100}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:403,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5590+0+100+0+0+0),pixelHeight:2e3,pixelWidth:806,sizes:\"400px\",src:\"https://framerusercontent.com/images/Eq2246LvE8GT2DXJg2V7QIVDTg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Eq2246LvE8GT2DXJg2V7QIVDTg.png 806w\"},className:\"framer-x6k1y3\",\"data-framer-name\":\"Homme secteurs\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kvq88p\",\"data-framer-name\":\"Image_ref\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gxisji\",\"data-framer-name\":\"Ticker little\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zeo59g\",\"data-border\":true,style:{rotate:-3},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xcwna0-container\",\"data-framer-name\":\"Ticker little\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker little\",nodeId:\"C_qzO3Kff\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:5,overflow:false},gap:28,height:\"100%\",hoverFactor:.8,id:\"C_qzO3Kff\",layoutId:\"C_qzO3Kff\",name:\"Ticker little\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g7zpbg\",\"data-framer-name\":\"explicative\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:\"Vid\\xe9o explicative\"})}),className:\"framer-1ctbrcv\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1do28mu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZx8gPD5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eye\",iconSelection:\"Keyframes\",id:\"jZx8gPD5W\",layoutId:\"jZx8gPD5W\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ry5z6e\",\"data-framer-name\":\"animation\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:\"Animation\"})}),className:\"framer-1m56tqq\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1do28mu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZx8gPD5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eye\",iconSelection:\"Keyframes\",id:\"jZx8gPD5W\",layoutId:\"jZx8gPD5W\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gjitvg\",\"data-framer-name\":\"Illustration\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:\"Illustration\"})}),className:\"framer-r8inxu\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1do28mu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZx8gPD5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eye\",iconSelection:\"Keyframes\",id:\"jZx8gPD5W\",layoutId:\"jZx8gPD5W\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-afatby\",\"data-framer-name\":\"produit\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:\"Vid\\xe9o produit\"})}),className:\"framer-1iyhah4\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1do28mu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZx8gPD5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eye\",iconSelection:\"Keyframes\",id:\"jZx8gPD5W\",layoutId:\"jZx8gPD5W\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m3eq6n\",\"data-framer-name\":\"Lotties\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:\"Lotties\"})}),className:\"framer-71kh75\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1do28mu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZx8gPD5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eye\",iconSelection:\"Keyframes\",id:\"jZx8gPD5W\",layoutId:\"jZx8gPD5W\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ngosw2\",\"data-framer-name\":\"3D\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:\"3D\"})}),className:\"framer-1u45ylz\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1do28mu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZx8gPD5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eye\",iconSelection:\"Keyframes\",id:\"jZx8gPD5W\",layoutId:\"jZx8gPD5W\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jswtw6\",\"data-framer-name\":\"TV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:\"Broadcast TV\"})}),className:\"framer-1eomgr3\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1do28mu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZx8gPD5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eye\",iconSelection:\"Keyframes\",id:\"jZx8gPD5W\",layoutId:\"jZx8gPD5W\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fa1egg\",\"data-framer-name\":\"GIF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:\"Conception graphique\"})}),className:\"framer-1jggu3v\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1do28mu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZx8gPD5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eye\",iconSelection:\"Keyframes\",id:\"jZx8gPD5W\",layoutId:\"jZx8gPD5W\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nxiyem\",\"data-framer-name\":\"Stories\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:\"Stories\"})}),className:\"framer-18eoi7k\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1do28mu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZx8gPD5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eye\",iconSelection:\"Keyframes\",id:\"jZx8gPD5W\",layoutId:\"jZx8gPD5W\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lyyokf\",\"data-framer-name\":\"Publicite digitale\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFJlZ3VsYXI=\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Regular\", \"PP Neue Machina Inktrap Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\"},children:\"Publicit\\xe9 digitale\"})}),className:\"framer-dxs3qd\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1do28mu-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZx8gPD5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-8036e20e-f395-40e3-aa8a-e53708940206, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eye\",iconSelection:\"Keyframes\",id:\"jZx8gPD5W\",layoutId:\"jZx8gPD5W\",mirrored:true,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qbtpam\"})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqzlxr hidden-g0mo5r\",\"data-framer-name\":\"Portolio \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{y:(componentViewport?.y||0)+0+5133+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7083+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sd2wfo-container\",nodeId:\"pIBsFrd5J\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LOGOSGENERAL,{height:\"100%\",id:\"pIBsFrd5J\",layoutId:\"pIBsFrd5J\",style:{height:\"100%\",width:\"100%\"},variant:\"AogItIy8S\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fkl9n7\",\"data-framer-name\":\"Titre\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5133+60+0+164),pixelHeight:198,pixelWidth:509,src:\"https://framerusercontent.com/images/VXdlqEGX7VkRg7jfQyIMB0H4UM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7083+50+0+160),pixelHeight:198,pixelWidth:509,src:\"https://framerusercontent.com/images/VXdlqEGX7VkRg7jfQyIMB0H4UM.png\"},className:\"framer-14jfhro\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvRXh0cmEgaXRhbGljL3Yw\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"Quelques r\\xe9alisations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvRXh0cmEgaXRhbGljL3Yw\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"Quelques r\\xe9alisations\"})}),className:\"framer-1nx1i82\",fonts:[\"BI;Mazius Display/Extra italic/v0\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5133+60+0+162),pixelHeight:198,pixelWidth:509,src:\"https://framerusercontent.com/images/EAbfLMgSM8u2S8jik2w0s4ktCJ4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7083+50+0+160),pixelHeight:198,pixelWidth:509,src:\"https://framerusercontent.com/images/EAbfLMgSM8u2S8jik2w0s4ktCJ4.png\"},className:\"framer-yle7bk\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ib04g\",\"data-framer-name\":\"PROJETS\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-180rxpw\",\"data-framer-name\":\"Data 2B\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LUCW1nQM0\"},implicitPathVariables:undefined},{href:{webPageId:\"LUCW1nQM0\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{width:`max((${componentViewport?.width||\"100vw\"} - 86px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5133+60+255+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:`max((${componentViewport?.width||\"100vw\"} - 210px) / 2, 50px)`,y:(componentViewport?.y||0)+0+7083+50+262+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rxe6ot-container\",\"data-framer-cursor\":\"frlrp5\",nodeId:\"Bgy_cWZEr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{RZAymKByF:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Portfolio_homepageVideo,{height:\"100%\",HrYIqtiKD:addImageAlt({pixelHeight:720,pixelWidth:1280,src:\"https://framerusercontent.com/images/dCacIs29wSjMieD00YHj5y3hqc.jpg\",srcSet:\"https://framerusercontent.com/images/dCacIs29wSjMieD00YHj5y3hqc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dCacIs29wSjMieD00YHj5y3hqc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dCacIs29wSjMieD00YHj5y3hqc.jpg 1280w\"},\"\"),id:\"Bgy_cWZEr\",layoutId:\"Bgy_cWZEr\",NUnwUhFxF:\"https://framerusercontent.com/assets/SB5wS2BKDq2goRafbTqdBG2v4Y4.mp4\",OXjODjMQk:.6,RZAymKByF:resolvedLinks2[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",WL0HHgP1s:\"rgb(255, 255, 255)\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bsd4ut\",\"data-framer-name\":\"Textes\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"DATA 2B\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"DATA 2B\"})}),className:\"framer-1eo8a09\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1em\"},children:\"Vid\\xe9o teaser :  solutions innovantes du traitement de datas\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\"},children:\"Vid\\xe9o teaser :  solutions innovantes du traitement de datas\"})}),className:\"framer-gmgayl\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z06mgi\",\"data-framer-name\":\"Le Poool\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"C5jKa9BKZ\"},implicitPathVariables:undefined},{href:{webPageId:\"C5jKa9BKZ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{width:`max((${componentViewport?.width||\"100vw\"} - 86px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5133+60+255+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210.5,width:`max((${componentViewport?.width||\"100vw\"} - 210px) / 2, 50px)`,y:(componentViewport?.y||0)+0+7083+50+262+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iwwm0u-container\",\"data-framer-cursor\":\"frlrp5\",nodeId:\"IXJy2UZ7b\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{RZAymKByF:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Portfolio_homepageVideo,{height:\"100%\",HrYIqtiKD:addImageAlt({pixelHeight:720,pixelWidth:1280,src:\"https://framerusercontent.com/images/ieMmDm6ZUOuJKvwSrMTf6TD5BTs.jpg\",srcSet:\"https://framerusercontent.com/images/ieMmDm6ZUOuJKvwSrMTf6TD5BTs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ieMmDm6ZUOuJKvwSrMTf6TD5BTs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ieMmDm6ZUOuJKvwSrMTf6TD5BTs.jpg 1280w\"},\"\"),id:\"IXJy2UZ7b\",layoutId:\"IXJy2UZ7b\",NUnwUhFxF:\"https://framerusercontent.com/assets/HQeJe1LtWTSXgbiyLJqpgw75w.mp4\",OXjODjMQk:.6,RZAymKByF:resolvedLinks3[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",WL0HHgP1s:\"rgb(255, 255, 255)\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cuec32\",\"data-framer-name\":\"Textes\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"Le Poool French Tech\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"Le Poool French Tech\"})}),className:\"framer-1tmlq1j\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1em\"},children:\"Vid\\xe9o explicative : plateforme de tests RSMLab\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\"},children:\"Vid\\xe9o explicative : plateforme de tests RSMLab\"})}),className:\"framer-19x9iz\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f5nl14\",\"data-framer-name\":\"Yves Rocher\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VWQtpvLjT\"},implicitPathVariables:undefined},{href:{webPageId:\"VWQtpvLjT\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{width:`max((${componentViewport?.width||\"100vw\"} - 86px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5133+60+255+0+496+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:286,width:`max((${componentViewport?.width||\"100vw\"} - 210px) / 2, 50px)`,y:(componentViewport?.y||0)+0+7083+50+262+0+545+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-mqfuav-container\",\"data-framer-cursor\":\"frlrp5\",nodeId:\"MqjBcTyO2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{RZAymKByF:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Portfolio_homepageVideo,{height:\"100%\",HrYIqtiKD:addImageAlt({pixelHeight:720,pixelWidth:1280,src:\"https://framerusercontent.com/images/21RPEx7YD6JQZR1PKpyo9HeS2HQ.jpg\",srcSet:\"https://framerusercontent.com/images/21RPEx7YD6JQZR1PKpyo9HeS2HQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/21RPEx7YD6JQZR1PKpyo9HeS2HQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/21RPEx7YD6JQZR1PKpyo9HeS2HQ.jpg 1280w\"},\"\"),id:\"MqjBcTyO2\",layoutId:\"MqjBcTyO2\",NUnwUhFxF:\"https://framerusercontent.com/assets/u6t7dDHgjf9f8MmI8M3hJ6wux0.mp4\",OXjODjMQk:.6,RZAymKByF:resolvedLinks4[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",WL0HHgP1s:\"rgb(255, 255, 255)\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3kmbo9\",\"data-framer-name\":\"Textes\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"YVES ROCHER\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"YVES ROCHER\"})}),className:\"framer-1vwng4s\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1em\"},children:\"Films sur les campagnes publicitaires produit & \\xe9v\\xe8nementiels multi-canal\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\"},children:\"Films sur les campagnes publicitaires produit & \\xe9v\\xe8nementiels multi-canal\"})}),className:\"framer-65np1e\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10yv7ym\",\"data-framer-name\":\"PAI\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nlVru6gG_\"},implicitPathVariables:undefined},{href:{webPageId:\"nlVru6gG_\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{width:`max((${componentViewport?.width||\"100vw\"} - 86px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5133+60+255+0+496+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:229,width:`max((${componentViewport?.width||\"100vw\"} - 210px) / 2, 50px)`,y:(componentViewport?.y||0)+0+7083+50+262+0+545+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d5wiy9-container\",\"data-framer-cursor\":\"frlrp5\",nodeId:\"nEbWn3o1b\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{RZAymKByF:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Portfolio_homepageVideo,{height:\"100%\",id:\"nEbWn3o1b\",layoutId:\"nEbWn3o1b\",OXjODjMQk:.6,RZAymKByF:resolvedLinks5[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",WL0HHgP1s:\"rgb(255, 255, 255)\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16mjqwf\",\"data-framer-name\":\"Textes\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"PAI Partners\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"PAI Partners\"})}),className:\"framer-1e6m8ik\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1em\"},children:\"Habillage multi-\\xe9crans \\xe9v\\xe8nementiel\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1em\"},children:\"Habillage multi-\\xe9crans \\xe9v\\xe8nementiel\"})}),className:\"framer-mppr7y\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18tjoak\",\"data-framer-name\":\"URPS\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ggG305ihC\"},implicitPathVariables:undefined},{href:{webPageId:\"ggG305ihC\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{width:`max((${componentViewport?.width||\"100vw\"} - 86px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5133+60+255+0+992+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:`max((${componentViewport?.width||\"100vw\"} - 210px) / 2, 50px)`,y:(componentViewport?.y||0)+0+7083+50+262+0+1090+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w5clrj-container\",\"data-framer-cursor\":\"frlrp5\",nodeId:\"u6h6dNfKP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{RZAymKByF:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Portfolio_homepage,{bnAA6Tot4:addImageAlt({pixelHeight:720,pixelWidth:1280,src:\"https://framerusercontent.com/images/WCZvPyvRHWYfp0TjHQsEH0U9K0I.jpg\",srcSet:\"https://framerusercontent.com/images/WCZvPyvRHWYfp0TjHQsEH0U9K0I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WCZvPyvRHWYfp0TjHQsEH0U9K0I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WCZvPyvRHWYfp0TjHQsEH0U9K0I.jpg 1280w\"},\"\"),FiMQHXfiw:\"rgb(252, 213, 49)\",height:\"100%\",id:\"u6h6dNfKP\",layoutId:\"u6h6dNfKP\",nOj7Go0Dv:0,RZAymKByF:resolvedLinks6[0],style:{height:\"100%\",width:\"100%\"},voxfDIver:.3,width:\"100%\",wQCxOIyo2:\"rgb(252, 213, 49)\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6e7np0\",\"data-framer-name\":\"Textes\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"URPS CDLB\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"URPS CDLB\"})}),className:\"framer-i7b1oh\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1em\"},children:\"Vid\\xe9os p\\xe9dagogiques : les bons gestes \\xe9co-responsables dans les cabinets dentaires\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\"},children:\"Vid\\xe9os p\\xe9dagogiques : les bons gestes \\xe9co-responsables dans les cabinets dentaires\"})}),className:\"framer-1f4wyls\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y21yi5\",\"data-framer-name\":\"Apurna\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rjvbm5mc8\"},implicitPathVariables:undefined},{href:{webPageId:\"rjvbm5mc8\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{width:`max((${componentViewport?.width||\"100vw\"} - 86px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5133+60+255+0+992+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:243,width:`max((${componentViewport?.width||\"100vw\"} - 210px) / 2, 50px)`,y:(componentViewport?.y||0)+0+7083+50+262+0+1090+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yhqlgf-container\",\"data-framer-cursor\":\"frlrp5\",nodeId:\"xKizkQH5s\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{RZAymKByF:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(Portfolio_homepageVideo,{height:\"100%\",HrYIqtiKD:addImageAlt({pixelHeight:720,pixelWidth:1280,src:\"https://framerusercontent.com/images/9yjFYARHIkPA11UEAM29sRbFZSs.jpg\",srcSet:\"https://framerusercontent.com/images/9yjFYARHIkPA11UEAM29sRbFZSs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9yjFYARHIkPA11UEAM29sRbFZSs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9yjFYARHIkPA11UEAM29sRbFZSs.jpg 1280w\"},\"\"),id:\"xKizkQH5s\",layoutId:\"xKizkQH5s\",NUnwUhFxF:\"https://framerusercontent.com/assets/E7yLBzcBnlOTJ3JRX3htLrOsREs.mp4\",OXjODjMQk:.2,RZAymKByF:resolvedLinks7[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",WL0HHgP1s:\"rgb(255, 194, 242)\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-48c2mi\",\"data-framer-name\":\"Textes\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"APURNA\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTWFjaGluYSBJbmt0cmFwIFVsdHJhYm9sZA==\",\"--framer-font-family\":'\"PP Neue Machina Inktrap Ultrabold\", \"PP Neue Machina Inktrap Ultrabold Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, rgb(194, 185, 127))\"},children:\"APURNA\"})}),className:\"framer-e7ect5\",fonts:[\"CUSTOM;PP Neue Machina Inktrap Ultrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"1em\"},children:\"Vid\\xe9o produit : gels nutrition Lactalis pour sportifs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\"},children:\"Vid\\xe9o produit : gels nutrition Lactalis pour sportifs\"})}),className:\"framer-2mql40\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{y:(componentViewport?.y||0)+0+2049},qP3B3rhIR:{y:(componentViewport?.y||0)+0+6980}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2750,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xa46hm-container\",\"data-framer-cursor\":\"g07emo\",id:elementId12,nodeId:\"Od01yVLIK\",ref:ref13,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{variant:\"xDMrB2vfZ\"},qP3B3rhIR:{variant:\"so0rQj45_\"}},children:/*#__PURE__*/_jsx(SecteursActivite,{height:\"100%\",id:\"Od01yVLIK\",layoutId:\"Od01yVLIK\",style:{width:\"100%\"},variant:\"OyGKGo6z0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{y:(componentViewport?.y||0)+0+4799},qP3B3rhIR:{y:(componentViewport?.y||0)+0+9730}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1282,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+11870,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{\"data-framer-cursor\":undefined},qP3B3rhIR:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-d7mnlq-container\",\"data-framer-cursor\":\"dfldja\",nodeId:\"WN69Esgwr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{style:{width:\"100%\"},variant:\"exHdMzfPg\"},qP3B3rhIR:{style:{width:\"100%\"},variant:\"KJ_Pu14e_\"}},children:/*#__PURE__*/_jsx(PhraseContact,{height:\"100%\",id:\"WN69Esgwr\",layoutId:\"WN69Esgwr\",style:{height:\"100%\",width:\"100%\"},variant:\"bFey0oUUO\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u75upv\",\"data-framer-cursor\":\"g07emo\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c38ixn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8uxmzp\",\"data-framer-name\":\"Titre\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6081+0+30+0+1),pixelHeight:198,pixelWidth:509,src:\"https://framerusercontent.com/images/VXdlqEGX7VkRg7jfQyIMB0H4UM.png\"}},qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11012+169.5+0+0+0),pixelHeight:198,pixelWidth:509,src:\"https://framerusercontent.com/images/VXdlqEGX7VkRg7jfQyIMB0H4UM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13152+169+0+0+0),pixelHeight:198,pixelWidth:509,src:\"https://framerusercontent.com/images/VXdlqEGX7VkRg7jfQyIMB0H4UM.png\"},className:\"framer-1lgi6o5\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvRXh0cmEgaXRhbGljL3Yw\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Des clients heureux & satisfaits\"})})},qP3B3rhIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvRXh0cmEgaXRhbGljL3Yw\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Des clients heureux & satisfaits\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TWF6aXVzIERpc3BsYXkvRXh0cmEgaXRhbGljL3Yw\",\"--framer-font-family\":'\"Mazius Display\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Des clients heureux & satisfaits\"})}),className:\"framer-1jqd7wb\",fonts:[\"BI;Mazius Display/Extra italic/v0\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6081+0+30+0+0),pixelHeight:198,pixelWidth:509,src:\"https://framerusercontent.com/images/EAbfLMgSM8u2S8jik2w0s4ktCJ4.png\"}},qP3B3rhIR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11012+169.5+0+0+.5),pixelHeight:198,pixelWidth:509,src:\"https://framerusercontent.com/images/EAbfLMgSM8u2S8jik2w0s4ktCJ4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13152+169+0+0+.5),pixelHeight:198,pixelWidth:509,src:\"https://framerusercontent.com/images/EAbfLMgSM8u2S8jik2w0s4ktCJ4.png\"},className:\"framer-3zuunz\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wws1bn\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"600px\",y:(componentViewport?.y||0)+0+13152+169+0+61+33,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17k3jji-container hidden-1f3a624 hidden-g0mo5r\",nodeId:\"DE_Bx3SF7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsDESKTOP,{height:\"100%\",id:\"DE_Bx3SF7\",layoutId:\"DE_Bx3SF7\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qP3B3rhIR:{height:385,y:(componentViewport?.y||0)+0+11012+169.5+0+51+53.8699}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m1nt0y-container hidden-72rtr7 hidden-g0mo5r\",nodeId:\"GZTTH54_a\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsTABLET,{height:\"100%\",id:\"GZTTH54_a\",layoutId:\"GZTTH54_a\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{height:382,y:(componentViewport?.y||0)+0+6081+0+30+28+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uj40ie-container hidden-72rtr7 hidden-1f3a624\",nodeId:\"oDLkJ4yCP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialsPHONE,{height:\"100%\",id:\"oDLkJ4yCP\",layoutId:\"oDLkJ4yCP\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{height:846,y:(componentViewport?.y||0)+0+6515},qP3B3rhIR:{height:830,y:(componentViewport?.y||0)+0+11970}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1282,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+14246,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l5rlkg-container\",nodeId:\"vkYxWOkAf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{variant:\"aZ9hMJBQs\"},qP3B3rhIR:{variant:\"aAn2QG4hU\"}},children:/*#__PURE__*/_jsx(FormulaireContact,{height:\"100%\",id:\"vkYxWOkAf\",layoutId:\"vkYxWOkAf\",style:{height:\"100%\",width:\"100%\"},variant:\"v7xB4d0U2\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{height:500,y:(componentViewport?.y||0)+0+7361},qP3B3rhIR:{y:(componentViewport?.y||0)+0+12800}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+15528,children:/*#__PURE__*/_jsx(Container,{className:\"framer-un8xmx-container\",nodeId:\"l78ufK1EX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JRTaRl3Hr:{variant:\"xhQsclUJn\"},qP3B3rhIR:{variant:\"phJQ2HfmH\"}},children:/*#__PURE__*/_jsx(FOOTERGENERAL,{height:\"100%\",id:\"l78ufK1EX\",layoutId:\"l78ufK1EX\",style:{height:\"100%\",width:\"100%\"},variant:\"OGi9Fktnw\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3hcWE.framer-lux5qc, .framer-3hcWE .framer-lux5qc { display: block; }\",\".framer-3hcWE.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1300px; }\",\".framer-3hcWE .framer-xdbote-container { flex: none; height: auto; left: 50%; position: fixed; top: -10px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-3hcWE .framer-1xu5xv1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-3hcWE .framer-1o6rufa-container { flex: 1 0 0px; height: 100vh; position: relative; width: 1px; }\",\".framer-3hcWE .framer-kdmibn { flex: none; height: 70px; left: calc(50.00000000000002% - 50px / 2); overflow: hidden; position: absolute; top: calc(86.54485049833889% - 70px / 2); width: 50px; z-index: 1; }\",\".framer-3hcWE .framer-12oc72d { flex: none; height: 51px; left: calc(48.275862068965544% - 61px / 2); position: absolute; top: calc(51.06382978723406% - 51px / 2); width: 61px; }\",\".framer-3hcWE .framer-1t0cmyu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; max-width: 100%; overflow: hidden; padding: 120px 0px 0px 200px; position: absolute; top: 69%; transform: translate(-50%, -50%); width: 100%; z-index: 1; }\",\".framer-3hcWE .framer-9ifuhj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 171px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-171dv93 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; mix-blend-mode: overlay; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-3hcWE .framer-df7unr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-3hcWE .framer-187xfg1 { align-content: center; align-items: center; background-color: var(--token-42c329a5-5475-44cc-b02d-a70e2c1e3fe0, #eee7e0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 750px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-vbgsia { 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: 0px; position: relative; width: 1200px; z-index: 1; }\",\".framer-3hcWE .framer-yv6r63 { flex: none; height: 642px; overflow: hidden; position: relative; width: 100%; }\",\".framer-3hcWE .framer-gcpx2n { aspect-ratio: 1.1406593406593406 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 455px); left: 77%; overflow: visible; position: absolute; top: 65%; transform: translate(-50%, -50%); width: 519px; z-index: 0; }\",\".framer-3hcWE .framer-86xzff { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 200px 0px 0px 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; }\",\".framer-3hcWE .framer-113ngvn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3hcWE .framer-5og773 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-3hcWE .framer-15wd9ld { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3hcWE .framer-144clot, .framer-3hcWE .framer-1m9uwr7, .framer-3hcWE .framer-ssl898, .framer-3hcWE .framer-jrmlrp, .framer-3hcWE .framer-18oswmf, .framer-3hcWE .framer-18iajy4, .framer-3hcWE .framer-zwznh5, .framer-3hcWE .framer-rbokl9, .framer-3hcWE .framer-1sqoh0h, .framer-3hcWE .framer-1tczbrj, .framer-3hcWE .framer-1puj0t2, .framer-3hcWE .framer-9cz8kf, .framer-3hcWE .framer-1bqum1q, .framer-3hcWE .framer-1ctbrcv, .framer-3hcWE .framer-1m56tqq, .framer-3hcWE .framer-r8inxu, .framer-3hcWE .framer-1iyhah4, .framer-3hcWE .framer-71kh75, .framer-3hcWE .framer-1u45ylz, .framer-3hcWE .framer-1eomgr3, .framer-3hcWE .framer-1jggu3v, .framer-3hcWE .framer-18eoi7k, .framer-3hcWE .framer-dxs3qd, .framer-3hcWE .framer-1nx1i82, .framer-3hcWE .framer-1jqd7wb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3hcWE .framer-1osfiuj { flex: none; height: 92px; opacity: 0.76; overflow: visible; position: relative; width: 226px; z-index: 1; }\",\".framer-3hcWE .framer-mdinw4 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 53px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-3hcWE .framer-4waulo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-6pni1s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-1m8q8jf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3hcWE .framer-ypg33w { align-content: center; align-items: center; background-color: var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, #c2b97f); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 35px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 206px; }\",\".framer-3hcWE .framer-16q9k01-container { flex: none; height: 38px; position: relative; width: 400px; }\",\".framer-3hcWE .framer-1vvatwg, .framer-3hcWE .framer-g7zpbg, .framer-3hcWE .framer-1ry5z6e, .framer-3hcWE .framer-gjitvg, .framer-3hcWE .framer-afatby, .framer-3hcWE .framer-1m3eq6n, .framer-3hcWE .framer-1ngosw2, .framer-3hcWE .framer-1jswtw6, .framer-3hcWE .framer-fa1egg, .framer-3hcWE .framer-nxiyem, .framer-3hcWE .framer-lyyokf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3hcWE .framer-4le5ib-container { height: 28px; position: relative; width: 28px; }\",\".framer-3hcWE .framer-n569wo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 554px; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-qs4uq1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-7busd1 { aspect-ratio: 27.145833333333332 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); overflow: hidden; position: relative; width: 450px; z-index: 1; }\",\".framer-3hcWE .framer-19nlnib { flex: none; height: 157px; overflow: hidden; position: relative; width: 137px; z-index: 1; }\",\".framer-3hcWE .framer-6s3hw9 { flex: none; height: 399px; overflow: hidden; position: relative; width: 318px; }\",\".framer-3hcWE .framer-b7xx0r { flex: none; height: 50px; left: calc(50.00000000000002% - 1124px / 2); overflow: visible; position: absolute; top: calc(35.86206896551726% - 50px / 2); width: 1124px; }\",\".framer-3hcWE .framer-aogqta { flex: none; height: 50px; left: calc(50.00000000000002% - 1124px / 2); overflow: visible; position: absolute; top: calc(6.333072713057097% - 50px / 2); width: 1124px; }\",\".framer-3hcWE .framer-u9d1i2 { align-content: center; align-items: center; background: linear-gradient(180deg, #508c96 26%, rgb(255, 207, 94) 37%, rgb(255, 237, 120) 39%, rgb(255, 240, 173) 40%, rgb(255, 255, 255) 46%, rgb(255, 255, 255) 62%, rgb(255, 255, 255) 94.96619422156532%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-1a03bcg { flex: none; height: 1865px; overflow: hidden; position: relative; width: 100%; }\",\".framer-3hcWE .framer-k64zpn { flex: none; height: 2000px; left: calc(50.00000000000002% - 1200px / 2); overflow: hidden; position: absolute; top: 0px; width: 1200px; }\",\".framer-3hcWE .framer-11bwos { bottom: 0px; flex: none; left: 0px; max-width: 100%; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-3hcWE .framer-10pbb4r { flex: none; height: 1984px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-3hcWE .framer-1ju8yy0 { aspect-ratio: 3.4782608695652173 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 288px); left: 100px; overflow: visible; position: absolute; right: 100px; top: 730px; }\",\".framer-3hcWE .framer-7glboz { flex: none; height: 348px; left: 740px; overflow: visible; position: absolute; top: 496px; width: 342px; }\",\".framer-3hcWE .framer-km1hkd { flex: none; height: 500px; left: 465px; overflow: visible; position: absolute; top: 391px; width: 491px; z-index: 2; }\",\".framer-3hcWE .framer-q98vbz { aspect-ratio: 1.5081967213114753 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 375px); left: 583px; overflow: visible; position: absolute; top: 48%; transform: translateY(-50%); width: 565px; z-index: 2; }\",\".framer-3hcWE .framer-164262g { aspect-ratio: 1.3597285067873304 / 1; bottom: 578px; flex: none; height: var(--framer-aspect-ratio-supported, 527px); left: 435px; overflow: visible; position: absolute; width: 716px; z-index: 5; }\",\".framer-3hcWE .framer-opql2i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 162px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 100px 0px 0px 0px; position: absolute; top: 100px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-uks9h7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-1qb3ydu, .framer-3hcWE .framer-1vc6lpn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-18oecer-container, .framer-3hcWE .framer-1hw3bd-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3hcWE .framer-db42or { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 478px; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-1kzlude { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 76px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-1yj889h { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-1i2hnfw { flex: none; height: 372px; overflow: visible; position: relative; width: 465px; }\",\".framer-3hcWE .framer-1ignbtm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-3hcWE .framer-vnf7c1, .framer-3hcWE .framer-j5xe6x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-z4wwlg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 77%; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-12orix6 { flex: none; height: 20px; overflow: hidden; position: relative; width: 23%; }\",\".framer-3hcWE .framer-mtitf3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-9rchal { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 74%; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-146bxc3 { flex: none; height: 86px; overflow: hidden; position: relative; width: 25%; }\",\".framer-3hcWE .framer-uctcd7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 78px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-s5mnv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 328px; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-2yii5m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 308px; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-z69tvq { flex: none; height: 439px; overflow: hidden; position: relative; width: 100%; }\",\".framer-3hcWE .framer-9hq4j9 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: -11px; }\",\".framer-3hcWE .framer-j6i1r8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 30px 0px 0px 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-3hcWE .framer-bojsem { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 121px; }\",\".framer-3hcWE .framer-18vfwlb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3hcWE .framer-1pxhkja, .framer-3hcWE .framer-lybwr8, .framer-3hcWE .framer-s2s3cw, .framer-3hcWE .framer-klh443, .framer-3hcWE .framer-1i2u8fc { --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-3hcWE .framer-12u33lc-container { flex: none; height: 50px; position: sticky; top: 0px; width: auto; z-index: 1; }\",\".framer-3hcWE .framer-1041zk9 { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 25px; }\",\".framer-3hcWE .framer-1st3hs7 { flex: none; height: 408px; overflow: visible; position: relative; width: 431px; z-index: 3; }\",\".framer-3hcWE .framer-1i1lnnz { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 137px; }\",\".framer-3hcWE .framer-11dpv4 { background-color: var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, #c2b97f); flex: none; height: 654px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-lm4fn8 { align-content: center; align-items: center; background: linear-gradient(180deg, #508c96 15%, rgb(255, 207, 94) 22%, rgb(255, 237, 120) 23%, rgb(255, 240, 173) 24%, rgb(255, 255, 255) 35%, rgb(255, 255, 255) 72%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-163qx7r { background-color: #ffffff; flex: none; height: 60px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-3hcWE .framer-1e53zk1-container { bottom: 9px; flex: none; left: 0px; position: absolute; right: 0px; top: 9px; }\",\".framer-3hcWE .framer-gw9rdk { aspect-ratio: 1.94 / 1; height: var(--framer-aspect-ratio-supported, 47px); overflow: hidden; position: relative; width: 89px; }\",\".framer-3hcWE .framer-15w58us { aspect-ratio: 1.94 / 1; height: var(--framer-aspect-ratio-supported, 34px); overflow: hidden; position: relative; width: 64px; }\",\".framer-3hcWE .framer-rbpp67 { aspect-ratio: 1.94 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: hidden; position: relative; width: 49px; }\",\".framer-3hcWE .framer-hl1n5k { aspect-ratio: 1.94 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: hidden; position: relative; width: 55px; }\",\".framer-3hcWE .framer-1va2kki { aspect-ratio: 1.94 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: hidden; position: relative; width: 54px; }\",\".framer-3hcWE .framer-oa1a3m, .framer-3hcWE .framer-12asdu0 { aspect-ratio: 1.94 / 1; height: var(--framer-aspect-ratio-supported, 34px); overflow: hidden; position: relative; width: 65px; }\",\".framer-3hcWE .framer-6eov2t { aspect-ratio: 1.94 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: hidden; position: relative; width: 56px; }\",\".framer-3hcWE .framer-1c53xtn { aspect-ratio: 1.94 / 1; height: var(--framer-aspect-ratio-supported, 36px); overflow: hidden; position: relative; width: 69px; }\",\".framer-3hcWE .framer-1pd5xlh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 320px; z-index: 1; }\",\".framer-3hcWE .framer-16boj9z { flex: none; height: 1350px; overflow: hidden; position: relative; width: 320px; }\",\".framer-3hcWE .framer-1so8m5w { aspect-ratio: 3.5794392523364484 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); left: 50%; max-width: 100%; overflow: visible; position: absolute; top: 20%; transform: translate(-50%, -50%); width: 294px; }\",\".framer-3hcWE .framer-1i86fy2 { flex: none; height: 129px; left: calc(74.06250000000001% - 132px / 2); overflow: visible; position: absolute; top: calc(16.074074074074097% - 129px / 2); width: 132px; }\",\".framer-3hcWE .framer-1havy3r { flex: none; height: 161px; left: calc(65.31250000000001% - 158px / 2); overflow: visible; position: absolute; top: calc(14.222222222222245% - 161px / 2); width: 158px; z-index: 2; }\",\".framer-3hcWE .framer-1ycnigu { flex: none; height: 88px; left: calc(73.12500000000001% - 132px / 2); overflow: visible; position: absolute; top: calc(17.703703703703727% - 88px / 2); width: 132px; z-index: 2; }\",\".framer-3hcWE .framer-1xsm07r { flex: none; height: 142px; left: calc(69.68750000000003% - 175px / 2); overflow: visible; position: absolute; top: calc(19.851851851851873% - 142px / 2); width: 175px; z-index: 4; }\",\".framer-3hcWE .framer-1qo8cbj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 320px; z-index: 3; }\",\".framer-3hcWE .framer-1defwf3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 30px; position: relative; width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-1lg4vb5, .framer-3hcWE .framer-1eo8a09, .framer-3hcWE .framer-1vwng4s, .framer-3hcWE .framer-65np1e, .framer-3hcWE .framer-1e6m8ik, .framer-3hcWE .framer-mppr7y, .framer-3hcWE .framer-i7b1oh, .framer-3hcWE .framer-e7ect5 { --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-3hcWE .framer-16ahg1x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 51%; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-cpxzr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-1wmcuhz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-10bu89w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-9vcsjn { aspect-ratio: 1.2580645161290323 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 159px); overflow: visible; position: relative; width: 67%; }\",\".framer-3hcWE .framer-1j670w6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 20px 8px 40px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-1lz56ni { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-uiecw1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-ub3jlg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-wsbe2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-1b4045s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 44%; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-18x1y3e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 49%; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-8ghuui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-yvidfs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 194px; justify-content: center; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-4fn6l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-1ejya01-container { flex: none; height: 22%; position: relative; width: 55%; z-index: 1; }\",\".framer-3hcWE .framer-d3mfbv { aspect-ratio: 1.0568031704095113 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 229px); overflow: visible; position: relative; width: 242px; z-index: 3; }\",\".framer-3hcWE .framer-1xgvvqf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-167a5pz { flex: none; height: 1339px; left: calc(50.076923076923094% - 100% / 2); overflow: hidden; position: absolute; top: 226px; width: 100%; z-index: 1; }\",\".framer-3hcWE .framer-1cxjcm { align-content: center; align-items: center; background-color: var(--token-42c329a5-5475-44cc-b02d-a70e2c1e3fe0, #eee7e0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1127px; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-3hcWE .framer-1ibvmqi { 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: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-3hcWE .framer-t9oxtx { background-color: var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, #c2b97f); flex: none; height: 432px; overflow: hidden; position: relative; width: 200%; }\",\".framer-3hcWE .framer-1jrcxow { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3hcWE .framer-1z0laqv { background-color: var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, #c2b97f); flex: none; height: 1300px; overflow: visible; position: relative; width: 2000px; }\",\".framer-3hcWE .framer-1f2r79r { flex: none; height: 1300px; position: relative; width: 1300px; }\",\".framer-3hcWE .framer-1lq54e5 { background-color: var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, #c2b97f); flex: none; height: 1300px; overflow: hidden; position: relative; width: 2000px; }\",\".framer-3hcWE .framer-1dj00s4 { background-color: var(--token-316dafd2-04be-4a2e-b5c1-964a26088737, #c2b97f); flex: none; height: 203px; overflow: hidden; position: relative; width: 100%; }\",\".framer-3hcWE .framer-k3x3i { background-color: var(--token-42c329a5-5475-44cc-b02d-a70e2c1e3fe0, #eee7e0); flex: none; height: 200vh; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-3hcWE .framer-jw52r9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 243px; transform: translateX(-50%); width: min-content; }\",\".framer-3hcWE .framer-1q9r5mg { aspect-ratio: 3.7546933667083855 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 198px); overflow: visible; position: relative; width: 743px; }\",\".framer-3hcWE .framer-tjbcb9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 168px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-3hcWE .framer-1fiofe0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 38px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-3hcWE .framer-eqq1zy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 307px; transform: translateX(-50%); width: min-content; }\",\".framer-3hcWE .framer-opev1w { aspect-ratio: 1.59375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 323px); overflow: visible; position: relative; width: 514px; }\",\".framer-3hcWE .framer-e8vkej { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 261px; transform: translateX(-50%); width: min-content; }\",\".framer-3hcWE .framer-1a1n7rg { aspect-ratio: 0.7999999999999999 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 320px; }\",\".framer-3hcWE .framer-1k9bwr4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 393px; transform: translateX(-50%); width: min-content; }\",\".framer-3hcWE .framer-vgb47j { flex: none; height: 317px; overflow: hidden; position: relative; width: 612px; }\",\".framer-3hcWE .framer-1mdfzoe { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 295px); overflow: visible; position: relative; width: 442px; }\",\".framer-3hcWE .framer-k7xabn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 335px; transform: translateX(-50%); width: min-content; }\",\".framer-3hcWE .framer-befqb { aspect-ratio: 0.9330357142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 290px); overflow: visible; position: relative; width: 270px; }\",\".framer-3hcWE .framer-ypr4et { flex: none; height: 332px; overflow: hidden; position: relative; width: 612px; }\",\".framer-3hcWE .framer-1royey4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 367px; transform: translateX(-50%); width: min-content; }\",\".framer-3hcWE .framer-gpavw6 { aspect-ratio: 8.804597701149426 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 347px; }\",\".framer-3hcWE .framer-7lhuwq { flex: none; height: 332px; overflow: hidden; position: relative; width: 212px; }\",\".framer-3hcWE .framer-jhqwe0 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 45px; transform: translateX(-50%); width: min-content; }\",\".framer-3hcWE .framer-1ehdvgn { flex: none; height: 831px; overflow: hidden; position: relative; width: 1372px; }\",\".framer-3hcWE .framer-bekf8 { aspect-ratio: 0.7974481658692185 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 844px); overflow: visible; position: relative; width: 673px; }\",\".framer-3hcWE .framer-87oi9u { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: -94px; transform: translateX(-50%); width: min-content; }\",\".framer-3hcWE .framer-z6so73 { aspect-ratio: 0.7974468085106383 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1175px); overflow: visible; position: relative; width: 937px; }\",\".framer-3hcWE .framer-18kwjzu { flex: none; height: 831px; overflow: hidden; position: relative; width: 1850px; }\",\".framer-3hcWE .framer-8ayxv5 { align-content: center; align-items: center; background-color: var(--token-42c329a5-5475-44cc-b02d-a70e2c1e3fe0, #eee7e0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 848px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: -1; }\",\".framer-3hcWE .framer-16yhkh { flex: none; gap: 10px; height: 1493px; overflow: visible; position: relative; width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-1j3x71p { background-color: #f3f3f3; flex: none; height: 1501px; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.30140656396519% - 1501px / 2); width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-if4mfu { flex: none; height: 1131px; left: calc(50.00000000000002% - 800px / 2); overflow: hidden; position: absolute; top: calc(82.85331547220363% - 1131px / 2); width: 800px; z-index: 3; }\",\".framer-3hcWE .framer-p8g5wf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 63%; transform: translate(-50%, -50%); white-space: pre; width: auto; z-index: 3; }\",\".framer-3hcWE .framer-1bvedbk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 563px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; z-index: 3; }\",\".framer-3hcWE .framer-dw9ywq { aspect-ratio: 0.8191126279863481 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1465px); left: 50%; overflow: visible; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 1200px; z-index: 2; }\",\".framer-3hcWE .framer-1x4ngh4 { aspect-ratio: 0.48 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2709px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 4; }\",\".framer-3hcWE .framer-1uk4cgc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 71px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 480px; transform: translateX(-50%); width: 100%; z-index: 3; }\",\".framer-3hcWE .framer-1ea2z3r { align-content: center; align-items: center; background: linear-gradient(270deg, #2ec9b7 0%, rgb(185, 237, 95) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 70px; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 490px; width: 105%; z-index: 1; }\",\".framer-3hcWE .framer-gpdiw0-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 1; }\",\".framer-3hcWE .framer-62xflj, .framer-3hcWE .framer-r6qo3n, .framer-3hcWE .framer-1d570k7, .framer-3hcWE .framer-1es6gfx, .framer-3hcWE .framer-q5b4u5, .framer-3hcWE .framer-j6lka2, .framer-3hcWE .framer-1d0qflz, .framer-3hcWE .framer-15unxxe, .framer-3hcWE .framer-6ty38b, .framer-3hcWE .framer-vimcla { 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 20px 0px 20px; position: relative; width: min-content; }\",\".framer-3hcWE .framer-uvbrkc { flex: none; height: 568px; overflow: hidden; position: relative; width: 220px; }\",\".framer-3hcWE .framer-p27nlc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 100px; transform: translateX(-50%); width: 1200px; z-index: 4; }\",\".framer-3hcWE .framer-ybec1q { flex: none; height: 500px; overflow: hidden; position: sticky; top: 140px; width: 400px; z-index: 1; }\",\".framer-3hcWE .framer-x6k1y3 { bottom: -692px; flex: none; gap: 10px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-3hcWE .framer-1kvq88p { flex: none; height: 649px; overflow: hidden; position: relative; width: 566px; }\",\".framer-3hcWE .framer-1gxisji { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 570px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-3hcWE .framer-zeo59g { --border-bottom-width: 3px; --border-color: #fafafa; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; background-color: #333333; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 65px; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 590px; width: 105%; z-index: 1; }\",\".framer-3hcWE .framer-1xcwna0-container { flex: none; height: 86px; position: relative; width: 95%; }\",\".framer-3hcWE .framer-1do28mu-container { height: 34px; position: relative; width: 19px; }\",\".framer-3hcWE .framer-1qbtpam { flex: none; height: 622px; overflow: hidden; position: relative; width: 220px; }\",\".framer-3hcWE .framer-cqzlxr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 100px 100px 100px; position: relative; width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-sd2wfo-container { flex: none; height: 100px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-3hcWE .framer-fkl9n7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 0px 50px 0px; position: relative; width: 1200px; }\",\".framer-3hcWE .framer-14jfhro, .framer-3hcWE .framer-yle7bk { aspect-ratio: 2.5707070707070705 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); overflow: hidden; position: relative; width: 80px; }\",\".framer-3hcWE .framer-17ib04g { display: grid; flex: none; 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: 100%; z-index: 1; }\",\".framer-3hcWE .framer-180rxpw, .framer-3hcWE .framer-z06mgi, .framer-3hcWE .framer-10yv7ym, .framer-3hcWE .framer-18tjoak, .framer-3hcWE .framer-1y21yi5 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-1rxe6ot-container, .framer-3hcWE .framer-1d5wiy9-container, .framer-3hcWE .framer-1w5clrj-container, .framer-3hcWE .framer-1yhqlgf-container { aspect-ratio: 1.772189349112426 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 308px); position: relative; width: 100%; z-index: 1; }\",\".framer-3hcWE .framer-1bsd4ut, .framer-3hcWE .framer-cuec32, .framer-3hcWE .framer-16mjqwf, .framer-3hcWE .framer-6e7np0, .framer-3hcWE .framer-48c2mi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 15px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-gmgayl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 82%; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-1iwwm0u-container { aspect-ratio: 1.7703081232492996 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 308px); position: relative; width: 100%; z-index: 1; }\",\".framer-3hcWE .framer-1tmlq1j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 92%; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-19x9iz, .framer-3hcWE .framer-1f4wyls { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 93%; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-f5nl14 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3hcWE .framer-mqfuav-container { aspect-ratio: 1.7706013363028954 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 308px); position: relative; width: 100%; z-index: 1; }\",\".framer-3hcWE .framer-3kmbo9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 15px 0px 0px 0px; position: relative; width: 94%; }\",\".framer-3hcWE .framer-2mql40 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 36px; position: relative; white-space: pre-wrap; width: 96%; word-break: break-word; word-wrap: break-word; }\",\".framer-3hcWE .framer-xa46hm-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-3hcWE .framer-d7mnlq-container { flex: none; height: 1282px; position: sticky; top: 0px; width: 100%; z-index: 4; }\",\".framer-3hcWE .framer-1u75upv { background-color: #19181c; flex: none; gap: 0px; height: 1094px; overflow: hidden; position: sticky; top: 0px; width: 100%; z-index: 4; }\",\".framer-3hcWE .framer-c38ixn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 169px; width: 100%; }\",\".framer-3hcWE .framer-8uxmzp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-3hcWE .framer-1lgi6o5, .framer-3hcWE .framer-3zuunz { aspect-ratio: 2.5707070707070705 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); overflow: hidden; position: relative; width: 129px; }\",\".framer-3hcWE .framer-wws1bn { flex: none; height: 665px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-3hcWE .framer-17k3jji-container { flex: none; height: 600px; left: calc(50.00000000000002% - 600px / 2); position: absolute; top: calc(50.07518796992484% - 600px / 2); width: 600px; }\",\".framer-3hcWE .framer-1m1nt0y-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; }\",\".framer-3hcWE .framer-1uj40ie-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: auto; }\",\".framer-3hcWE .framer-l5rlkg-container { flex: none; height: 1282px; position: sticky; top: 30px; width: 100%; z-index: 4; }\",\".framer-3hcWE .framer-un8xmx-container { flex: none; height: 100vh; position: relative; width: 100%; z-index: 4; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-3hcWE[data-border=\"true\"]::after, .framer-3hcWE [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; }',\"@media (min-width: 810px) and (max-width: 1299px) { .framer-3hcWE.framer-72rtr7, .framer-3hcWE .framer-p27nlc, .framer-3hcWE .framer-8uxmzp { width: 810px; } .framer-3hcWE .framer-xdbote-container { height: 138px; left: calc(50.00000000000002% - 100% / 2); order: 0; top: 0px; transform: unset; } .framer-3hcWE .framer-1xu5xv1 { gap: 3px; order: 1; } .framer-3hcWE .framer-1t0cmyu { gap: 5px; height: 36%; left: calc(50.00000000000002% - min(100%, 100%) / 2); padding: 80px 0px 0px 100px; top: calc(78.92376681614351% - 36% / 2); transform: unset; } .framer-3hcWE .framer-9ifuhj { height: min-content; justify-content: flex-start; } .framer-3hcWE .framer-187xfg1 { height: 530px; order: 2; } .framer-3hcWE .framer-vbgsia { gap: 0px; padding: 50px 0px 0px 0px; width: 810px; } .framer-3hcWE .framer-yv6r63 { height: 530px; } .framer-3hcWE .framer-gcpx2n { height: var(--framer-aspect-ratio-supported, 261px); left: 77%; top: 41%; width: 297px; } .framer-3hcWE .framer-86xzff { padding: 0px; } .framer-3hcWE .framer-113ngvn { gap: 24px; height: 407px; width: 810px; } .framer-3hcWE .framer-5og773 { gap: 19px; justify-content: flex-start; order: 0; padding: 90px 0px 0px 50px; } .framer-3hcWE .framer-15wd9ld, .framer-3hcWE .framer-vnf7c1 { order: 0; } .framer-3hcWE .framer-1osfiuj { height: 51px; width: 129px; } .framer-3hcWE .framer-mdinw4 { align-self: unset; gap: 38px; order: 1; overflow: visible; padding: 0px 40px 0px 0px; width: 482px; } .framer-3hcWE .framer-4waulo { order: 0; width: 430px; } .framer-3hcWE .framer-6pni1s { order: 1; padding: 10px 0px 10px 0px; } .framer-3hcWE .framer-1m8q8jf { gap: 14px; } .framer-3hcWE .framer-ypg33w, .framer-3hcWE .framer-1kzlude { gap: 0px; } .framer-3hcWE .framer-n569wo { width: 399px; } .framer-3hcWE .framer-qs4uq1 { width: 380px; } .framer-3hcWE .framer-7busd1 { height: var(--framer-aspect-ratio-supported, 13px); width: 350px; } .framer-3hcWE .framer-6s3hw9 { order: 1; width: 23%; } .framer-3hcWE .framer-b7xx0r { left: calc(50.00000000000002% - 100% / 2); width: 100%; } .framer-3hcWE .framer-u9d1i2 { background: linear-gradient(180deg, #508c96 11%, rgb(105, 146, 146) 20%, rgb(255, 207, 94) 27%, rgb(255, 237, 120) 28.999999999999996%, rgb(255, 240, 173) 31%, rgb(255, 255, 255) 42%, rgb(255, 255, 255) 72%, rgb(255, 255, 255) 100%); justify-content: flex-start; order: 3; } .framer-3hcWE .framer-1a03bcg { height: 1330px; } .framer-3hcWE .framer-k64zpn { height: 1330px; left: calc(50.00000000000002% - 810px / 2); width: 810px; } .framer-3hcWE .framer-11bwos { bottom: 210px; } .framer-3hcWE .framer-10pbb4r { height: 1904px; } .framer-3hcWE .framer-1ju8yy0 { aspect-ratio: 3.789808917197452 / 1; height: var(--framer-aspect-ratio-supported, 198px); left: 30px; right: 30px; top: 398px; } .framer-3hcWE .framer-7glboz { aspect-ratio: 0.845679012345679 / 1; height: var(--framer-aspect-ratio-supported, 323px); left: 495px; right: 42px; top: 278px; width: unset; } .framer-3hcWE .framer-km1hkd { height: 322px; left: calc(65.92592592592594% - 301px / 2); top: calc(24.369747899159684% - 322px / 2); width: 301px; } .framer-3hcWE .framer-q98vbz { height: var(--framer-aspect-ratio-supported, 222px); left: 446px; top: 30%; width: 335px; } .framer-3hcWE .framer-164262g { aspect-ratio: 1.3594306049822065 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 295px); left: 382px; top: 618px; width: 401px; } .framer-3hcWE .framer-opql2i { gap: 88px; padding: 50px 0px 32px 0px; top: 20px; } .framer-3hcWE .framer-uks9h7 { gap: 24px; padding: 0px 0px 0px 50px; } .framer-3hcWE .framer-db42or { height: 79px; width: 332px; } .framer-3hcWE .framer-1yj889h { align-content: center; align-items: center; gap: 28px; padding: 0px 20px 0px 20px; width: 810px; } .framer-3hcWE .framer-1i2hnfw { aspect-ratio: 1.25 / 1; height: var(--framer-aspect-ratio-supported, 256px); width: 320px; } .framer-3hcWE .framer-1ignbtm { align-content: flex-start; align-items: flex-start; gap: 10px; padding: 40px 0px 100px 0px; } .framer-3hcWE .framer-z4wwlg, .framer-3hcWE .framer-9rchal { height: 99px; width: 386px; } .framer-3hcWE .framer-12orix6, .framer-3hcWE .framer-146bxc3 { align-self: stretch; flex: 1 0 0px; height: auto; width: 1px; } .framer-3hcWE .framer-mtitf3 { gap: 0px; order: 1; } .framer-3hcWE .framer-uctcd7 { gap: 50px; padding: 0px 10px 0px 0px; } .framer-3hcWE .framer-s5mnv, .framer-3hcWE .framer-2yii5m { flex: 1 0 0px; width: 1px; } .framer-3hcWE .framer-z69tvq { height: 364px; } .framer-3hcWE .framer-9hq4j9 { left: 21px; right: -21px; } .framer-3hcWE .framer-j6i1r8 { gap: 0px; padding: 0px; top: 50%; transform: translateY(-50%); } .framer-3hcWE .framer-bojsem { width: 71px; } .framer-3hcWE .framer-1041zk9 { width: 19px; } .framer-3hcWE .framer-1st3hs7 { height: 332px; width: 350px; } .framer-3hcWE .framer-1i1lnnz { width: 44px; } .framer-3hcWE .framer-11dpv4 { height: 515px; } .framer-3hcWE .framer-1xgvvqf { order: 5; } .framer-3hcWE .framer-167a5pz { height: 1213px; left: calc(50.00000000000002% - 100% / 2); order: 1; top: 148px; } .framer-3hcWE .framer-1cxjcm { height: 938px; order: 2; } .framer-3hcWE .framer-t9oxtx { height: 182px; width: 300%; } .framer-3hcWE .framer-1z0laqv, .framer-3hcWE .framer-1lq54e5 { width: 900px; } .framer-3hcWE .framer-1dj00s4 { height: 180px; width: 300%; } .framer-3hcWE .framer-jw52r9 { top: 300px; } .framer-3hcWE .framer-tjbcb9 { top: 167px; } .framer-3hcWE .framer-1fiofe0 { top: 40px; } .framer-3hcWE .framer-eqq1zy { top: 324px; } .framer-3hcWE .framer-opev1w { height: var(--framer-aspect-ratio-supported, 251px); width: 400px; } .framer-3hcWE .framer-e8vkej { top: 267px; } .framer-3hcWE .framer-1a1n7rg { height: var(--framer-aspect-ratio-supported, 344px); width: 275px; } .framer-3hcWE .framer-1k9bwr4 { top: 160px; } .framer-3hcWE .framer-vgb47j { height: 512px; width: 417px; } .framer-3hcWE .framer-1mdfzoe { height: var(--framer-aspect-ratio-supported, 210px); width: 315px; } .framer-3hcWE .framer-k7xabn { top: 120px; } .framer-3hcWE .framer-befqb { height: var(--framer-aspect-ratio-supported, 227px); width: 212px; } .framer-3hcWE .framer-ypr4et { height: 512px; width: 380px; } .framer-3hcWE .framer-1royey4 { top: 170px; } .framer-3hcWE .framer-gpavw6 { height: var(--framer-aspect-ratio-supported, 32px); width: 282px; } .framer-3hcWE .framer-7lhuwq { height: 512px; width: 247px; } .framer-3hcWE .framer-jhqwe0 { top: 38px; } .framer-3hcWE .framer-1ehdvgn { height: 424px; width: 1213px; } .framer-3hcWE .framer-bekf8 { height: var(--framer-aspect-ratio-supported, 858px); width: 684px; } .framer-3hcWE .framer-87oi9u { top: 33px; } .framer-3hcWE .framer-z6so73 { height: var(--framer-aspect-ratio-supported, 950px); width: 757px; } .framer-3hcWE .framer-18kwjzu { height: 292px; width: 1507px; } .framer-3hcWE .framer-8ayxv5 { height: 325px; order: 3; } .framer-3hcWE .framer-16yhkh { height: 1010px; order: 6; } .framer-3hcWE .framer-1j3x71p { height: 1068px; top: 0px; } .framer-3hcWE .framer-p8g5wf { top: 66%; } .framer-3hcWE .framer-1bvedbk { bottom: unset; left: 50%; top: 60%; transform: translate(-50%, -50%); } .framer-3hcWE .framer-dw9ywq { aspect-ratio: unset; height: 989px; left: calc(50.00000000000002% - 810px / 2); top: calc(46.254681647940096% - 989px / 2); transform: unset; width: 810px; } .framer-3hcWE .framer-1x4ngh4 { aspect-ratio: unset; bottom: 0px; height: unset; top: -50px; } .framer-3hcWE .framer-1uk4cgc { top: 320px; } .framer-3hcWE .framer-1ea2z3r { top: 360px; } .framer-3hcWE .framer-gpdiw0-container { aspect-ratio: 13.953488372093023 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); z-index: 2; } .framer-3hcWE .framer-uvbrkc { height: 369px; } .framer-3hcWE .framer-ybec1q { height: 322px; } .framer-3hcWE .framer-x6k1y3 { aspect-ratio: 0.33542976939203356 / 1; bottom: -347px; left: 50%; right: unset; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 225px); } .framer-3hcWE .framer-1kvq88p { height: 472px; } .framer-3hcWE .framer-1gxisji { top: 400px; } .framer-3hcWE .framer-zeo59g { top: 430px; width: 100%; } .framer-3hcWE .framer-1qbtpam { height: 445px; } .framer-3hcWE .framer-cqzlxr { gap: 0px; order: 7; padding: 60px 40px 50px 40px; } .framer-3hcWE .framer-fkl9n7 { padding: 160px 0px 60px 0px; width: 810px; } .framer-3hcWE .framer-14jfhro, .framer-3hcWE .framer-yle7bk { height: var(--framer-aspect-ratio-supported, 27px); width: 70px; } .framer-3hcWE .framer-17ib04g { gap: 6px; } .framer-3hcWE .framer-1rxe6ot-container, .framer-3hcWE .framer-1iwwm0u-container, .framer-3hcWE .framer-mqfuav-container { height: var(--framer-aspect-ratio-supported, 205px); } .framer-3hcWE .framer-1bsd4ut, .framer-3hcWE .framer-cuec32, .framer-3hcWE .framer-48c2mi { padding: 10px 0px 0px 0px; } .framer-3hcWE .framer-gmgayl { width: 93%; } .framer-3hcWE .framer-1tmlq1j { width: 66%; } .framer-3hcWE .framer-19x9iz { width: 78%; } .framer-3hcWE .framer-3kmbo9, .framer-3hcWE .framer-16mjqwf, .framer-3hcWE .framer-6e7np0 { padding: 10px 0px 0px 0px; width: 100%; } .framer-3hcWE .framer-65np1e { width: 94%; } .framer-3hcWE .framer-1d5wiy9-container, .framer-3hcWE .framer-1w5clrj-container, .framer-3hcWE .framer-1yhqlgf-container { height: var(--framer-aspect-ratio-supported, 204px); } .framer-3hcWE .framer-2mql40 { height: auto; } .framer-3hcWE .framer-xa46hm-container { order: 8; } .framer-3hcWE .framer-d7mnlq-container { height: auto; order: 10; position: relative; top: unset; } .framer-3hcWE .framer-1u75upv { height: 958px; order: 11; position: relative; top: unset; } .framer-3hcWE .framer-c38ixn { gap: 0px; left: 50%; padding: 0px 20px 0px 20px; top: 46%; transform: translate(-50%, -50%); } .framer-3hcWE .framer-1lgi6o5, .framer-3hcWE .framer-3zuunz { height: var(--framer-aspect-ratio-supported, 50px); } .framer-3hcWE .framer-wws1bn { height: 492px; width: 810px; } .framer-3hcWE .framer-l5rlkg-container { height: 830px; order: 12; position: relative; top: unset; } .framer-3hcWE .framer-un8xmx-container { order: 13; }}\",\"@media (max-width: 809px) { .framer-3hcWE.framer-72rtr7 { width: 320px; } .framer-3hcWE .framer-xdbote-container { order: 0; z-index: 6; } .framer-3hcWE .framer-1xu5xv1 { aspect-ratio: 1.3333333333333333 / 1; flex-direction: column; height: var(--framer-aspect-ratio-supported, 150px); order: 1; } .framer-3hcWE .framer-1o6rufa-container { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); width: 100%; } .framer-3hcWE .framer-1t0cmyu { align-content: center; align-items: center; height: 21%; justify-content: center; left: calc(50.00000000000002% - min(100%, 100%) / 2); padding: 0px 0px 0px 20px; top: calc(86.45833333333336% - 21% / 2); transform: unset; } .framer-3hcWE .framer-9ifuhj { align-content: center; align-items: center; gap: 3px; height: 100%; order: 0; } .framer-3hcWE .framer-187xfg1 { display: block; height: 449px; order: 2; padding: unset; } .framer-3hcWE .framer-vbgsia { bottom: -102px; left: 50%; position: absolute; transform: translateX(-50%); width: 100%; } .framer-3hcWE .framer-yv6r63 { gap: 10px; height: 551px; width: 320px; } .framer-3hcWE .framer-gcpx2n { bottom: 120px; height: var(--framer-aspect-ratio-supported, 182px); left: 50%; top: unset; transform: translateX(-50%); width: 231px; } .framer-3hcWE .framer-86xzff { align-content: center; align-items: center; height: 260px; justify-content: flex-start; left: calc(50.00000000000002% - 100% / 2); padding: 0px 10px 0px 20px; transform: unset; } .framer-3hcWE .framer-113ngvn { align-content: flex-start; align-items: flex-start; gap: 2px; height: 100%; width: 100%; } .framer-3hcWE .framer-5og773 { align-content: center; align-items: center; gap: 2px; height: 100%; justify-content: flex-start; left: calc(50.00000000000002% - 99.74424552429667% / 2); position: absolute; top: 33px; width: 100%; } .framer-3hcWE .framer-15wd9ld { gap: 2px; height: 20%; order: 0; width: 100%; } .framer-3hcWE .framer-1osfiuj { aspect-ratio: 2.4411764705882355 / 1; height: var(--framer-aspect-ratio-supported, 82px); width: 21%; } .framer-3hcWE .framer-mdinw4 { align-content: center; align-items: center; align-self: unset; gap: 8px; height: 75%; justify-content: flex-start; order: 1; overflow: visible; width: 100%; } .framer-3hcWE .framer-4waulo { order: 0; width: 100%; } .framer-3hcWE .framer-6pni1s, .framer-3hcWE .framer-9vcsjn { order: 1; } .framer-3hcWE .framer-1m8q8jf { align-content: center; align-items: center; flex: none; gap: 8px; height: 71%; padding: 0px 0px 8px 0px; width: 100%; } .framer-3hcWE .framer-n569wo { height: 38px; width: 100%; } .framer-3hcWE .framer-qs4uq1 { padding: 5px 0px 0px 0px; } .framer-3hcWE .framer-7busd1 { height: var(--framer-aspect-ratio-supported, 8px); width: 235px; } .framer-3hcWE .framer-b7xx0r { left: calc(50.00000000000002% - 320px / 2); top: 200px; width: 320px; } .framer-3hcWE .framer-aogqta { left: calc(50.00000000000002% - 320px / 2); top: 0px; width: 320px; } .framer-3hcWE .framer-lm4fn8 { order: 4; } .framer-3hcWE .framer-1j670w6 { order: 0; } .framer-3hcWE .framer-xa46hm-container { order: 7; } .framer-3hcWE .framer-d7mnlq-container { height: auto; order: 8; position: relative; top: unset; } .framer-3hcWE .framer-1u75upv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: center; order: 10; padding: 0px; position: relative; top: unset; } .framer-3hcWE .framer-c38ixn { left: unset; padding: 30px 0px 0px 0px; position: relative; top: unset; } .framer-3hcWE .framer-8uxmzp { width: min-content; } .framer-3hcWE .framer-1lgi6o5 { height: var(--framer-aspect-ratio-supported, 16px); width: 40px; } .framer-3hcWE .framer-3zuunz { height: var(--framer-aspect-ratio-supported, 18px); width: 40px; } .framer-3hcWE .framer-wws1bn { height: 376px; width: 320px; } .framer-3hcWE .framer-l5rlkg-container { height: 846px; order: 11; position: relative; top: unset; } .framer-3hcWE .framer-un8xmx-container { height: 500px; order: 12; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15271.5\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qP3B3rhIR\":{\"layout\":[\"fixed\",\"auto\"]},\"JRTaRl3Hr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"sg2bZGXr9\":{\"pattern\":\":sg2bZGXr9\",\"name\":\"video-header\"},\"YyhnY_iET\":{\"pattern\":\":YyhnY_iET\",\"name\":\"section-1\"},\"vu3dHjnvQ\":{\"pattern\":\":vu3dHjnvQ\",\"name\":\"changer-menu-2\"},\"US4RTeS7T\":{\"pattern\":\":US4RTeS7T\",\"name\":\"titre-1\"},\"kDKp1o6Km\":{\"pattern\":\":kDKp1o6Km\",\"name\":\"presentation\"},\"diykWtxNZ\":{\"pattern\":\":diykWtxNZ\",\"name\":\"projet-vue\"},\"P9Kpg5O3Z\":{\"pattern\":\":P9Kpg5O3Z\",\"name\":\"transition-cercle\"},\"vzJHTCVzE\":{\"pattern\":\":vzJHTCVzE\",\"name\":\"scene-solutions\"},\"L9zs9JrFI\":{\"pattern\":\":L9zs9JrFI\",\"name\":\"presentation-produits\"},\"UuPfMQHHO\":{\"pattern\":\":UuPfMQHHO\",\"name\":\"presentation-03\"},\"EtHsJGiAe\":{\"pattern\":\":EtHsJGiAe\",\"name\":\"presentation-03\"},\"gbPsObUW1\":{\"pattern\":\":gbPsObUW1\",\"name\":\"presentation-03\"},\"Od01yVLIK\":{\"pattern\":\":Od01yVLIK\",\"name\":\"secteurs-activite\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-3hcWE\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:15271.5,width:1300};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"PP Neue Machina Inktrap Ultrabold\",source:\"custom\",url:\"https://framerusercontent.com/assets/y7okTdbrJ8DsfKzta2dDKZ0zzY.woff2\"},{family:\"Chivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivo/v20/va9b4kzIxd1KFppkaRKvDRPJVDf_jh_ukmDSFXjQiQ.woff2\",weight:\"500\"},{family:\"Chivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivo/v20/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ukmDSFXjQiQ.woff2\",weight:\"400\"},{family:\"Mazius Display\",source:\"builtIn\",style:\"normal\",url:\"https://framerusercontent.com/assets/FPdvbu6FIzWzcl7yOkvCmQ6nzqs.woff2\",weight:\"700\"},{family:\"PP Neue Machina Inktrap Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/TlOso8x38jGYalJQGdxrrn8xsnc.woff2\"},{family:\"PP Neue Machina Inktrap Regular Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/fIeNE54FZibE88XZiMM5dx9x20.woff2\"},{family:\"Chivo\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/chivo/v20/va9Z4kzIxd1KFrBtW-13ZHhT-jDqdFzY02rTN33AiasJ.woff2\",weight:\"600\"},{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:\"Mazius Display\",source:\"builtIn\",style:\"italic\",url:\"https://framerusercontent.com/assets/pCQESYopWTvtUubBZ8VeV5IKYQ.woff2\",weight:\"900\"}]},...NavBarFonts,...VideoFonts,...IcoSeparateurFonts,...TickerFonts,...StaggeredCycleFonts,...DButtonFonts,...IconoirFonts,...LOGOSGENERALFonts,...Portfolio_homepageVideoFonts,...Portfolio_homepageFonts,...SecteursActiviteFonts,...PhraseContactFonts,...TestimonialsDESKTOPFonts,...TestimonialsTABLETFonts,...TestimonialsPHONEFonts,...FormulaireContactFonts,...FOOTERGENERALFonts,...CursorArnoDESKTOPFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1300\",\"framerScrollSections\":\"{\\\"sg2bZGXr9\\\":{\\\"pattern\\\":\\\":sg2bZGXr9\\\",\\\"name\\\":\\\"video-header\\\"},\\\"YyhnY_iET\\\":{\\\"pattern\\\":\\\":YyhnY_iET\\\",\\\"name\\\":\\\"section-1\\\"},\\\"vu3dHjnvQ\\\":{\\\"pattern\\\":\\\":vu3dHjnvQ\\\",\\\"name\\\":\\\"changer-menu-2\\\"},\\\"US4RTeS7T\\\":{\\\"pattern\\\":\\\":US4RTeS7T\\\",\\\"name\\\":\\\"titre-1\\\"},\\\"kDKp1o6Km\\\":{\\\"pattern\\\":\\\":kDKp1o6Km\\\",\\\"name\\\":\\\"presentation\\\"},\\\"diykWtxNZ\\\":{\\\"pattern\\\":\\\":diykWtxNZ\\\",\\\"name\\\":\\\"projet-vue\\\"},\\\"P9Kpg5O3Z\\\":{\\\"pattern\\\":\\\":P9Kpg5O3Z\\\",\\\"name\\\":\\\"transition-cercle\\\"},\\\"vzJHTCVzE\\\":{\\\"pattern\\\":\\\":vzJHTCVzE\\\",\\\"name\\\":\\\"scene-solutions\\\"},\\\"L9zs9JrFI\\\":{\\\"pattern\\\":\\\":L9zs9JrFI\\\",\\\"name\\\":\\\"presentation-produits\\\"},\\\"UuPfMQHHO\\\":{\\\"pattern\\\":\\\":UuPfMQHHO\\\",\\\"name\\\":\\\"presentation-03\\\"},\\\"EtHsJGiAe\\\":{\\\"pattern\\\":\\\":EtHsJGiAe\\\",\\\"name\\\":\\\"presentation-03\\\"},\\\"gbPsObUW1\\\":{\\\"pattern\\\":\\\":gbPsObUW1\\\",\\\"name\\\":\\\"presentation-03\\\"},\\\"Od01yVLIK\\\":{\\\"pattern\\\":\\\":Od01yVLIK\\\",\\\"name\\\":\\\"secteurs-activite\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qP3B3rhIR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JRTaRl3Hr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"15271.5\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_SPEED", "defaultTransition", "StaggeredTextCycleV2", "text", "speed", "delay", "font", "userSelect", "color", "alignment", "tag", "loop", "stagger", "Tag", "content", "phrase", "iteration", "setIteration", "ye", "speedFormatted", "delayFormattedMs", "speedFormattedMs", "isCanvas", "RenderTarget", "isFirstRender", "setIsFirstRender", "ue", "timeout", "interval", "prev", "u", "p", "longest", "current", "l", "sentence", "sentenceIndex", "charIndex", "segments", "segment", "char", "AnimatePresence", "segmentIndex", "originalIndex", "baseDelay", "delayInitial", "delayAnimate", "delayExit", "itemTransition", "motion", "addPropertyControls", "ControlType", "e", "f", "r", "o", "t", "n", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "f", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "colorBar", "colorFonction", "colorNom", "colorTexte", "fonction", "height", "id", "imageBG", "nom", "t_moignage", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "FvjsGrefH", "Fc3hjb5L5", "wVGFQWdlb", "GL8Hlt5c8", "G6kx7hLqH", "tO4TKp6kS", "DKrw2C4Sz", "OiORPcAB_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerCBFtf9aEr", "withCSS", "CBFtf9aEr_default", "addPropertyControls", "ControlType", "addFonts", "TestimonialFonts", "getFonts", "CBFtf9aEr_default", "SlideshowFonts", "Slideshow", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Slideshow", "CBFtf9aEr_default", "css", "FramerdmpLNdv0N", "withCSS", "dmpLNdv0N_default", "addFonts", "TestimonialFonts", "SlideshowFonts", "TestimonialFonts", "getFonts", "CBFtf9aEr_default", "SlideshowFonts", "Slideshow", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Slideshow", "CBFtf9aEr_default", "css", "Framerg9_Uslit0", "withCSS", "g9_Uslit0_default", "addFonts", "TestimonialFonts", "SlideshowFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "SVG", "css", "FramerLhuZFXCgK", "withCSS", "LhuZFXCgK_default", "addFonts", "TestimonialFonts", "getFonts", "CBFtf9aEr_default", "SlideshowFonts", "Slideshow", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Slideshow", "CBFtf9aEr_default", "css", "FrameroghZC7c8t", "withCSS", "oghZC7c8t_default", "addFonts", "TestimonialFonts", "SlideshowFonts", "DButtonFonts", "getFonts", "SO41lLC_A_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerxECSFa0KT", "withCSS", "xECSFa0KT_default", "addPropertyControls", "ControlType", "addFonts", "NavBarFonts", "getFonts", "VBvD6Itf_default", "NavBarWithVariantAppearEffect", "withVariantAppearEffect", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "motion", "IcoSeparateurFonts", "LhuZFXCgK_default", "TickerFonts", "Ticker", "ImageWithFX", "Image2", "StaggeredCycleFonts", "StaggeredTextCycleV2", "DButtonFonts", "SO41lLC_A_default", "RichTextWithFX", "RichText2", "IconoirFonts", "Icon", "LOGOSGENERALFonts", "RqV1X3zHO_default", "Portfolio_homepageVideoFonts", "TB3c39HpB_default", "Portfolio_homepageFonts", "Ws6lVrR75_default", "SecteursActiviteFonts", "xECSFa0KT_default", "PhraseContactFonts", "Fta1byRiY_default", "TestimonialsDESKTOPFonts", "dmpLNdv0N_default", "TestimonialsTABLETFonts", "g9_Uslit0_default", "TestimonialsPHONEFonts", "oghZC7c8t_default", "FormulaireContactFonts", "xOkKdZCss_default", "FOOTERGENERALFonts", "MMntJsfo_default", "CursorArnoDESKTOPFonts", "jGSHyCrMY_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "transformTemplate2", "animation1", "transition2", "getTextEffect", "ref", "transformTemplate3", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition3", "cursor", "cursor1", "Component", "Y", "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", "ref1", "elementId", "useRouteElementId", "ref2", "isDisplayed", "elementId1", "ref3", "isDisplayed1", "elementId2", "elementId3", "ref4", "elementId4", "ref5", "router", "useRouter", "isDisplayed2", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "elementId11", "ref12", "elementId12", "ref13", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "SVG", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
