{"version":3,"file":"i_4ReLM9e4mFvawiKw2dGPZxTROuNb5f2g-dn9DqqZI.m7qcoeT5.mjs","names":["useRef","useState","useState","useRef","TransitionLogo","Twice_navigation","Image","OraProjectGridCard","Twice_footer","useRef","React.useId","OraProjects","metadata","React.useMemo","metadataProvider","React.useRef","PropertyOverrides","React.Fragment","_Fragment","dHg3trIHkDn0hzfEWi","FnwgSIUrADn0hzfEWi","iC9pVt3ffDn0hzfEWi","idDn0hzfEWi","nmra7HyPcDn0hzfEWi","sehCNecQNDn0hzfEWi","TXmd62wMmDn0hzfEWi"],"sources":["https:/framerusercontent.com/modules/befaUB8iCbK5NhMhph0i/qxMeiTzw6FUlDgedGBPD/Twice_credits.js","https:/framerusercontent.com/modules/81DICbxjRK4FcMjCrKSP/EL3HRzaaGHF4hHPUTzaA/CmsTitle.js","https:/framerusercontent.com/modules/Igch4g8R2jfLfiMmM0h9/BZyv8drUYcSzYRyqdD6F/NumberCounter.js","https:/framerusercontent.com/modules/rX4xRykKC5RBUcCUtcab/syR3Fw59oW1yBDqkrzvl/vKctiIGyU.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useRef,useState,useEffect}from\"react\";/**\n * Credits Component - Position & Name Display\n *\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 80\n */export default function CreditsComponent(props){const{position,name,positionFont,nameFont,positionColor,nameColor,spacing,alignment,verticalAlignment,enableMobileBreakpoint,mobileBreakpoint,mobilePositionSize,mobileNameSize,style}=props;const containerRef=useRef(null);const[containerWidth,setContainerWidth]=useState(null);// Measure container width with ResizeObserver\nuseEffect(()=>{const element=containerRef.current;if(!element)return;const resizeObserver=new ResizeObserver(entries=>{for(let entry of entries){setContainerWidth(entry.contentRect.width);}});resizeObserver.observe(element);// Initial measurement\nsetContainerWidth(element.offsetWidth);return()=>{resizeObserver.disconnect();};},[]);// Check if we're in mobile mode\nconst isMobile=enableMobileBreakpoint&&containerWidth&&containerWidth<=mobileBreakpoint;// Get font sizes based on mobile/desktop mode\nconst currentPositionFont=isMobile?{...positionFont,fontSize:mobilePositionSize}:positionFont;const currentNameFont=isMobile?{...nameFont,fontSize:mobileNameSize}:nameFont;// Alignment styles\nconst alignmentStyle={left:\"flex-start\",center:\"center\",right:\"flex-end\"};const verticalAlignmentStyle={top:\"flex-start\",center:\"center\",bottom:\"flex-end\"};return /*#__PURE__*/_jsxs(\"div\",{ref:containerRef,style:{...style,display:\"flex\",flexDirection:\"row\",alignItems:verticalAlignmentStyle[verticalAlignment],justifyContent:alignmentStyle[alignment],width:\"100%\",gap:`${spacing}px`},children:[/*#__PURE__*/_jsx(\"div\",{style:{...currentPositionFont,color:positionColor,margin:0,padding:0,whiteSpace:\"nowrap\"},children:position}),/*#__PURE__*/_jsx(\"div\",{style:{...currentNameFont,color:nameColor,margin:0,padding:0,whiteSpace:\"nowrap\"},children:name})]});}// Default Props\nCreditsComponent.defaultProps={position:\"DIRECTOR\",name:\"MAURICIO GARRIDO\",positionFont:{fontFamily:\"Inter\",fontSize:14,fontWeight:400,lineHeight:\"1.2em\",letterSpacing:\"0.05em\",textAlign:\"left\"},nameFont:{fontFamily:\"Inter\",fontSize:32,fontWeight:700,lineHeight:\"1.2em\",letterSpacing:\"0em\",textAlign:\"left\"},positionColor:\"#999999\",nameColor:\"#000000\",spacing:16,alignment:\"left\",verticalAlignment:\"center\",enableMobileBreakpoint:true,mobileBreakpoint:768,mobilePositionSize:10,mobileNameSize:20};// Property Controls\naddPropertyControls(CreditsComponent,{// Content\nposition:{type:ControlType.String,title:\"Position\",placeholder:\"DIRECTOR\",defaultValue:\"DIRECTOR\"},name:{type:ControlType.String,title:\"Name\",placeholder:\"MAURICIO GARRIDO\",defaultValue:\"MAURICIO GARRIDO\"},// Layout\nalignment:{type:ControlType.Enum,title:\"Alignment\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"left\",displaySegmentedControl:true},verticalAlignment:{type:ControlType.Enum,title:\"Vertical Alignment\",description:\"Vertical position of text elements\",options:[\"top\",\"center\",\"bottom\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],defaultValue:\"center\",displaySegmentedControl:true},spacing:{type:ControlType.Number,title:\"Spacing\",description:\"Space between position and name\",min:0,max:100,step:1,unit:\"px\",defaultValue:16,displayStepper:true},// Position Typography\npositionFont:{type:ControlType.Font,title:\"Position Font\",controls:\"extended\",defaultValue:CreditsComponent.defaultProps.positionFont},positionColor:{type:ControlType.Color,title:\"Position Color\",defaultValue:\"#999999\"},// Name Typography\nnameFont:{type:ControlType.Font,title:\"Name Font\",controls:\"extended\",defaultValue:CreditsComponent.defaultProps.nameFont},nameColor:{type:ControlType.Color,title:\"Name Color\",defaultValue:\"#000000\"},// Responsive Settings\nenableMobileBreakpoint:{type:ControlType.Boolean,title:\"Mobile Mode\",description:\"Enable fixed font sizes on mobile\",defaultValue:true,enabledTitle:\"On\",disabledTitle:\"Off\"},mobileBreakpoint:{type:ControlType.Number,title:\"Mobile Breakpoint\",description:\"Width below which mobile sizes apply\",min:320,max:1024,step:1,unit:\"px\",defaultValue:768,displayStepper:true,hidden:props=>!props.enableMobileBreakpoint},mobilePositionSize:{type:ControlType.Number,title:\"Mobile Position Size\",description:\"Fixed font size for position on mobile\",min:8,max:32,step:1,unit:\"px\",defaultValue:10,displayStepper:true,hidden:props=>!props.enableMobileBreakpoint},mobileNameSize:{type:ControlType.Number,title:\"Mobile Name Size\",description:\"Fixed font size for name on mobile\",min:12,max:48,step:1,unit:\"px\",defaultValue:20,displayStepper:true,hidden:props=>!props.enableMobileBreakpoint}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CreditsComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth any\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"80\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Twice_credits.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight auto\n */export default function CmsTitle(props){const{cmsTitle,titleFont,titleColor,uppercase,viewportScale,minFontSize,maxFontSize,fixedOnMobile,mobileFontSize,lineSpacing,style}=props;// Verwende CSS clamp() für perfekte responsive Skalierung\n// clamp(min, preferred, max)\nconst responsiveFontSize=`clamp(${minFontSize}px, ${viewportScale}vw, ${maxFontSize}px)`;// Wenn fixedOnMobile aktiviert ist, verwende Media Query für fixe Größe auf Tablet/Mobil\nconst fontSize=fixedOnMobile?`${mobileFontSize}px`:responsiveFontSize;return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",height:\"auto\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{margin:0,padding:0,color:titleColor,width:\"100%\",textTransform:uppercase?\"uppercase\":\"none\",...titleFont,fontSize:fixedOnMobile?undefined:responsiveFontSize,lineHeight:`${lineSpacing}em`,wordWrap:\"break-word\",overflowWrap:\"break-word\",whiteSpace:\"normal\"},className:fixedOnMobile?\"cms-title-fixed-mobile\":\"\",children:cmsTitle||\"CMS Titel\"}),fixedOnMobile&&/*#__PURE__*/_jsx(\"style\",{children:`\n                    .cms-title-fixed-mobile {\n                        font-size: ${responsiveFontSize};\n                    }\n                    @media (max-width: 1024px) {\n                        .cms-title-fixed-mobile {\n                            font-size: ${mobileFontSize}px !important;\n                        }\n                    }\n                `})]});}addPropertyControls(CmsTitle,{cmsTitle:{type:ControlType.String,title:\"CMS Titel\",defaultValue:\"Beispiel Titel\"},titleFont:{type:ControlType.Font,title:\"Schriftart\",defaultValue:{variant:\"Bold\",letterSpacing:\"-0.04em\",lineHeight:\"1em\",textAlign:\"left\"},controls:\"extended\",defaultFontType:\"sans-serif\",displayTextAlignment:true},viewportScale:{type:ControlType.Number,title:\"Viewport Skalierung\",defaultValue:5,min:1,max:20,step:.5,displayStepper:true,unit:\"vw\"},minFontSize:{type:ControlType.Number,title:\"Min. Schriftgr\\xf6\\xdfe\",defaultValue:24,min:12,max:100,step:2,unit:\"px\"},maxFontSize:{type:ControlType.Number,title:\"Max. Schriftgr\\xf6\\xdfe\",defaultValue:120,min:24,max:500,step:4,unit:\"px\"},fixedOnMobile:{type:ControlType.Boolean,title:\"Fix auf Tablet/Mobil\",defaultValue:false,enabledTitle:\"An\",disabledTitle:\"Aus\"},mobileFontSize:{type:ControlType.Number,title:\"Tablet/Mobil Gr\\xf6\\xdfe\",defaultValue:32,min:12,max:100,step:2,unit:\"px\",hidden:({fixedOnMobile})=>!fixedOnMobile},titleColor:{type:ControlType.Color,title:\"Textfarbe\",defaultValue:\"#000000\"},uppercase:{type:ControlType.Boolean,title:\"Gro\\xdfbuchstaben\",defaultValue:false,enabledTitle:\"An\",disabledTitle:\"Aus\"},lineSpacing:{type:ControlType.Number,title:\"Zeilenabstand\",defaultValue:1.2,min:.8,max:3,step:.1,displayStepper:false,unit:\"em\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CmsTitle\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CmsTitle.map","// Automatischer Zahlenzähler mit Präfix, Suffix und konfigurierbarer Animation\n// Startet bei einer festgelegten Zahl und zählt bis zur Endzahl hoch\n// Unterstützt Kommazahlen und anpassbare Schrittweite\n// Animation mit Ease-In-Out für langsamen Start und beschleunigtes Ende\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState,useRef,startTransition}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion,useInView}from\"framer-motion\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function NumberCounter(props){const{startValue=0,endValue=100,duration=2,decimalPlaces=0,prefix=\"\",suffix=\"\",textColor=\"#000000\",font,delay=0,style}=props;const[displayValue,setDisplayValue]=useState(startValue);const containerRef=useRef(null);const isInView=useInView(containerRef,{once:true});const animationRef=useRef(null);useEffect(()=>{if(!isInView)return;// Delay vor dem Start der Animation\nconst delayTimeout=setTimeout(()=>{const startTime=performance.now();const range=endValue-startValue;const animate=currentTime=>{const elapsed=currentTime-startTime;const progress=Math.min(elapsed/(duration*1e3),1);// Ease-in-out Funktion für langsamen Start und beschleunigtes Ende\nconst easeInOut=progress<.5?2*progress*progress:1-Math.pow(-2*progress+2,2)/2;const currentValue=startValue+range*easeInOut;startTransition(()=>{setDisplayValue(currentValue);});if(progress<1){animationRef.current=requestAnimationFrame(animate);}else{startTransition(()=>{setDisplayValue(endValue);});}};animationRef.current=requestAnimationFrame(animate);},delay*1e3);return()=>{clearTimeout(delayTimeout);if(animationRef.current!==null){cancelAnimationFrame(animationRef.current);}};},[isInView,startValue,endValue,duration,delay]);const formattedValue=displayValue.toFixed(decimalPlaces);return /*#__PURE__*/_jsx(\"div\",{ref:containerRef,style:{...style,position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},children:/*#__PURE__*/_jsxs(motion.span,{style:{color:textColor,...font,whiteSpace:\"nowrap\",fontSize:`clamp(1rem, ${font.fontSize||\"40px\"}, 10vw)`},children:[prefix,formattedValue,suffix]})});}addPropertyControls(NumberCounter,{startValue:{type:ControlType.Number,title:\"Startzahl\",defaultValue:0,step:.1,displayStepper:true},endValue:{type:ControlType.Number,title:\"Endzahl\",defaultValue:100,step:.1,displayStepper:true},duration:{type:ControlType.Number,title:\"Dauer\",defaultValue:2,min:.1,max:10,step:.1,unit:\"s\"},delay:{type:ControlType.Number,title:\"Verz\\xf6gerung\",defaultValue:0,min:0,max:5,step:.1,unit:\"s\"},decimalPlaces:{type:ControlType.Number,title:\"Dezimalstellen\",defaultValue:0,min:0,max:5,step:1,displayStepper:true},prefix:{type:ControlType.String,title:\"Pr\\xe4fix\",defaultValue:\"\",placeholder:\"z.B. €\"},suffix:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\",placeholder:\"z.B. %\"},textColor:{type:ControlType.Color,title:\"Textfarbe\",defaultValue:\"#000000\"},font:{type:ControlType.Font,title:\"Schrift\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:\"40px\",variant:\"Bold\",letterSpacing:\"-0.04em\",lineHeight:\"1em\"}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"NumberCounter\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NumberCounter.map","// Generated by Framer (571faa6)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import Twice_footer from\"#framer/local/canvasComponent/eIeIx2l_W/eIeIx2l_W.js\";import Twice_navigation from\"#framer/local/canvasComponent/NwsqX2rgT/NwsqX2rgT.js\";import OraProjectGridCard from\"#framer/local/canvasComponent/UvK38BNRr/UvK38BNRr.js\";import TransitionLogo from\"#framer/local/canvasComponent/xKWwjK4lq/xKWwjK4lq.js\";import ScrollbarHider from\"#framer/local/codeFile/zToozC4/HideScrollbar.js\";import PagePreloaderPro,{withPageTransition}from\"#framer/local/codeFile/bAZ6ZO4/PageTransition.js\";import ContactButton from\"#framer/local/codeFile/K3EtZtb/Twice_button.js\";import CreditsComponent from\"#framer/local/codeFile/VMHlX9K/Twice_credits.js\";import CmsTitle from\"#framer/local/codeFile/E2oYmin/CmsTitle.js\";import NumberCounter from\"#framer/local/codeFile/flO2Tcv/NumberCounter.js\";import TextTicker from\"#framer/local/codeFile/PxCauVE/twice_textticker.js\";import OraProjects from\"#framer/local/collection/PhixcoSCu/PhixcoSCu.js\";import metadataProvider from\"#framer/local/webPageMetadata/vKctiIGyU/vKctiIGyU.js\";const TransitionLogoFonts=getFonts(TransitionLogo);const PagePreloaderProFonts=getFonts(PagePreloaderPro);const ScrollbarHiderFonts=getFonts(ScrollbarHider);const Twice_navigationFonts=getFonts(Twice_navigation);const Twice_navigationWithVariantAppearEffect=withVariantAppearEffect(Twice_navigation);const CmsTitleFonts=getFonts(CmsTitle);const TextTickerFonts=getFonts(TextTicker);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const NumberCounterFonts=getFonts(NumberCounter);const CreditsComponentFonts=getFonts(CreditsComponent);const SlideshowFonts=getFonts(Slideshow);const ContactButtonFonts=getFonts(ContactButton);const MotionAWithPageTransition1xy2rtz=withCodeBoundaryForOverrides(motion.a,{nodeId:\"EH32Gfu2k\",override:withPageTransition,scopeId:\"vKctiIGyU\"});const OraProjectGridCardFonts=getFonts(OraProjectGridCard);const MotionMainWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.main);const Twice_footerFonts=getFonts(Twice_footer);const MotionDivWithPageTransitionmbku8w=withCodeBoundaryForOverrides(motion.div,{nodeId:\"ug9c9a3vt\",override:withPageTransition,scopeId:\"vKctiIGyU\"});const breakpoints={tQPmnZstc:\"(min-width: 810px) and (max-width: 1199.98px)\",ug9c9a3vt:\"(min-width: 1200px) and (max-width: 1599.98px)\",WVo94nIJ5:\"(min-width: 1600px)\",zBrXEgxPn:\"(max-width: 809.98px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-phUHj\";const variantClassNames={tQPmnZstc:\"framer-v-1oxno9u\",ug9c9a3vt:\"framer-v-mbku8w\",WVo94nIJ5:\"framer-v-18hb3vk\",zBrXEgxPn:\"framer-v-1qivyxi\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:2.4,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:31,delay:0,mass:1,stiffness:145,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:50};const transition3={damping:31,delay:.1,mass:1,stiffness:145,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:31,delay:.2,mass:1,stiffness:145,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:31,delay:.3,mass:1,stiffness:145,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:31,delay:.4,mass:1,stiffness:145,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={damping:31,delay:.5,mass:1,stiffness:145,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop-Wide\":\"WVo94nIJ5\",Desktop:\"ug9c9a3vt\",Phone:\"zBrXEgxPn\",Tablet:\"tQPmnZstc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ug9c9a3vt\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"vKctiIGyU\",data:OraProjects,type:\"Collection\"},select:[{collection:\"vKctiIGyU\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"Fz9l0NnYQ\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"OKHcAq9Ff\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"dHg3trIHk\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"wbxT_J77Z\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"sehCNecQN\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"vO0Cvxftv\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"uNKxhajOC\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"UUJ0Y28HX\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"NPZz5yatu\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"ORffhsntQ\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"nQqO0se6B\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"UjsO85djj\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"mBpzi3bx4\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"vKctiIGyU\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,FnwgSIUrA=getFromCurrentRouteData(\"FnwgSIUrA\")??\"\",vO0Cvxftv=getFromCurrentRouteData(\"vO0Cvxftv\")??\"\",sehCNecQN=getFromCurrentRouteData(\"sehCNecQN\"),TXmd62wMm=getFromCurrentRouteData(\"TXmd62wMm\")??\"\",wbxT_J77Z=getFromCurrentRouteData(\"wbxT_J77Z\")??\"\",dHg3trIHk=getFromCurrentRouteData(\"dHg3trIHk\"),mBpzi3bx4=getFromCurrentRouteData(\"mBpzi3bx4\")??\"\",uNKxhajOC=getFromCurrentRouteData(\"uNKxhajOC\")??\"\",UUJ0Y28HX=getFromCurrentRouteData(\"UUJ0Y28HX\"),NPZz5yatu=getFromCurrentRouteData(\"NPZz5yatu\"),ORffhsntQ=getFromCurrentRouteData(\"ORffhsntQ\"),nQqO0se6B=getFromCurrentRouteData(\"nQqO0se6B\"),UjsO85djj=getFromCurrentRouteData(\"UjsO85djj\"),nmra7HyPcDn0hzfEWi,iC9pVt3ffDn0hzfEWi,sehCNecQNDn0hzfEWi,FnwgSIUrADn0hzfEWi,TXmd62wMmDn0hzfEWi,dHg3trIHkDn0hzfEWi,idDn0hzfEWi,Fz9l0NnYQ=getFromCurrentRouteData(\"Fz9l0NnYQ\")??0,OKHcAq9Ff=getFromCurrentRouteData(\"OKHcAq9Ff\")??0,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider({FnwgSIUrA},activeLocale),[FnwgSIUrA,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"tQPmnZstc\",\"zBrXEgxPn\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"tQPmnZstc\",\"zBrXEgxPn\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"zBrXEgxPn\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"zBrXEgxPn\")return false;return true;};const visible=isSet(UUJ0Y28HX);const visible1=isSet(NPZz5yatu);const visible2=isSet(ORffhsntQ);const visible3=isSet(nQqO0se6B);const visible4=isSet(UjsO85djj);const elementId=useRouteElementId(\"UQEYIaNIh\");const elementId1=useRouteElementId(\"OWXt1H9Jy\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ug9c9a3vt\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(241, 241, 241); } @media (max-width: 809.98px) { html body { background: none; } }\"}),/*#__PURE__*/_jsxs(MotionDivWithPageTransitionmbku8w,{...restProps,className:cx(scopingClassNames,\"framer-mbku8w\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fb93ep-container\",isAuthoredByUser:true,nodeId:\"j8q_gtcKU\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PagePreloaderPro,{height:\"100%\",id:\"j8q_gtcKU\",layoutId:\"j8q_gtcKU\",logo:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:87,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mi739b-container\",inComponentSlot:true,nodeId:\"k57EjjZFU\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(TransitionLogo,{height:\"100%\",id:\"k57EjjZFU\",layoutId:\"CRJpLEKiT-k57EjjZFU-0\",variant:\"NViv5oEoX\",width:\"100%\"})})})],width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dalcwz-container\",isAuthoredByUser:true,nodeId:\"Y85WF5Omb\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(ScrollbarHider,{height:\"100%\",id:\"Y85WF5Omb\",layoutId:\"Y85WF5Omb\",style:{height:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r1bev\",\"data-framer-name\":\"Navigation\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XoUyQsVJi\"},implicitPathVariables:undefined},{href:{webPageId:\"ALf7_LAm5\"},implicitPathVariables:undefined},{href:{webPageId:\"Yknn1XAII\"},implicitPathVariables:undefined},{href:{webPageId:\"YqXN0qAeK\"},implicitPathVariables:undefined},{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined},{href:{webPageId:\"XoUyQsVJi\"},implicitPathVariables:undefined},{href:{webPageId:\"ALf7_LAm5\"},implicitPathVariables:undefined},{href:{webPageId:\"Yknn1XAII\"},implicitPathVariables:undefined},{href:{webPageId:\"YqXN0qAeK\"},implicitPathVariables:undefined},{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined},{href:{webPageId:\"XoUyQsVJi\"},implicitPathVariables:undefined},{href:{webPageId:\"ALf7_LAm5\"},implicitPathVariables:undefined},{href:{webPageId:\"Yknn1XAII\"},implicitPathVariables:undefined},{href:{webPageId:\"YqXN0qAeK\"},implicitPathVariables:undefined},{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined},{href:{webPageId:\"XoUyQsVJi\"},implicitPathVariables:undefined},{href:{webPageId:\"ALf7_LAm5\"},implicitPathVariables:undefined},{href:{webPageId:\"Yknn1XAII\"},implicitPathVariables:undefined},{href:{webPageId:\"YqXN0qAeK\"},implicitPathVariables:undefined},{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1585itj-container\",nodeId:\"OLHOjlVXZ\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{__framer__targets:[{ref:ref1,target:\"A1kiS4Mi3\"}],bs6Meq43p:resolvedLinks[11],dAdwoZToF:resolvedLinks[14],E_L5pmaKG:resolvedLinks[10],nyhqmPqql:resolvedLinks[12],oH6v_Inql:20,variant:\"MDE2I5SdC\",x8ZkjcwBa:resolvedLinks[13]},WVo94nIJ5:{bs6Meq43p:resolvedLinks[6],dAdwoZToF:resolvedLinks[9],E_L5pmaKG:resolvedLinks[5],nyhqmPqql:resolvedLinks[7],x8ZkjcwBa:resolvedLinks[8]},zBrXEgxPn:{__framer__targets:[{ref:ref1,target:\"kjeFjCkSo\"}],bs6Meq43p:resolvedLinks[16],dAdwoZToF:resolvedLinks[19],E_L5pmaKG:resolvedLinks[15],nyhqmPqql:resolvedLinks[17],oH6v_Inql:20,variant:\"lPLWuWXEL\",x8ZkjcwBa:resolvedLinks[18]}},children:/*#__PURE__*/_jsx(Twice_navigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"r1qgyy9M4\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,bs6Meq43p:resolvedLinks[1],dAdwoZToF:resolvedLinks[4],E_L5pmaKG:resolvedLinks[0],FJaQ4e8yR:true,gO_zIPVDw:false,height:\"100%\",id:\"OLHOjlVXZ\",j2exvZzAf:false,JVonzCfMK:false,layoutId:\"OLHOjlVXZ\",nyhqmPqql:resolvedLinks[2],oH6v_Inql:24,style:{width:\"100%\"},variant:\"L1BF4aHyJ\",width:\"100%\",x8ZkjcwBa:resolvedLinks[3]})})})})})}),/*#__PURE__*/_jsxs(MotionMainWithOptimizedAppearEffect,{animate:animation,className:\"framer-wsqo7\",\"data-framer-appear-id\":\"wsqo7\",\"data-framer-name\":\"Main\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ey3j9k\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-u1xavu\",\"data-framer-name\":\"Titel\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wyqqyi-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,nodeId:\"Xv3RHX78m\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{maxFontSize:112,minFontSize:12,viewportScale:20},zBrXEgxPn:{lineSpacing:.85,maxFontSize:72,minFontSize:12,mobileFontSize:100,style:{width:\"100%\"},titleFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"center\"},viewportScale:20}},children:/*#__PURE__*/_jsx(CmsTitle,{cmsTitle:FnwgSIUrA,fixedOnMobile:false,height:\"100%\",id:\"Xv3RHX78m\",layoutId:\"Xv3RHX78m\",lineSpacing:1.2,maxFontSize:250,minFontSize:38,mobileFontSize:32,titleColor:\"rgb(0, 0, 0)\",titleFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.5)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"center\"},uppercase:true,viewportScale:10.5,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hlfnts\",\"data-framer-name\":\"Details\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17s2d4l hidden-1oxno9u hidden-1qivyxi\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kdl3b7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ugdp5s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"CLIENT TYPE\"})}),className:\"framer-dg1974\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i9gw61\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.7)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Branded Space\"})}),className:\"framer-5rhul6\",fonts:[\"CUSTOM;Formula Condensed Bold\"],text:vO0Cvxftv,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18zsl1g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2vkkyv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"TALENT\"})}),className:\"framer-1i1zphg\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pptynf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.7)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(0, 20, 20)\"},children:\"OYSHO PLAYERS\"})}),className:\"framer-g0j1rv\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k077a4\",\"data-border\":true,\"data-framer-name\":\"Mitte\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9vbkck\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:128,pixelWidth:362,sizes:\"57.5px\",...toResponsiveImage(sehCNecQN),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-pcwf4t\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ctmok\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dbpjcr\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\"},children:\"PRODUCTION \\xa9 2024\"})}),className:\"framer-mzbpy1\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fjenvm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wgt8b4-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,nodeId:\"mjANk7Eti\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(TextTicker,{backgroundColor:\"rgba(0, 0, 0, 0)\",cmsText:TXmd62wMm,direction:\"left\",directionMode:\"fixed\",enableStroke:false,enableSvg:true,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.83)\",letterSpacing:\"0.02em\",lineHeight:\"1em\"},gap:10,height:\"100%\",id:\"mjANk7Eti\",layoutId:\"mjANk7Eti\",speed:20,strokeColor:\"rgb(255, 255, 255)\",strokeWidth:2,style:{height:\"100%\",width:\"100%\"},svgCode:'<svg id=\"Standard\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 306.88 130.48\">   <circle      cx=\"55.57\"      cy=\"74.91\"      r=\"51.57\"      fill=\"var(--fill-color, none)\"      stroke=\"var(--stroke-color, #010101)\"      stroke-width=\"var(--stroke-width, 8)\"      stroke-miterlimit=\"10\"      stroke-linecap=\"round\"   />   <path      d=\"M55.57 126.48h136.15m-79.52-.35L147.88 7.16\"      fill=\"none\"      stroke=\"var(--stroke-color, #010101)\"      stroke-width=\"var(--stroke-width, 8)\"      stroke-miterlimit=\"10\"      stroke-linecap=\"round\"   />   <path      d=\"m106.38 67.01 41.5-59.85 43.49 66.53\"      fill=\"none\"      stroke=\"var(--stroke-color, #010101)\"      stroke-width=\"var(--stroke-width, 8)\"      stroke-miterlimit=\"1.81\"   />   <path      d=\"M191.36 36.31h111.52v90.17H191.36z\"      fill=\"var(--fill-color, none)\"      stroke=\"var(--stroke-color, #010101)\"      stroke-width=\"var(--stroke-width, 8)\"      stroke-miterlimit=\"10\"   />   <path      d=\"M223.59 36.31v89.82\"      fill=\"none\"      stroke=\"var(--stroke-color, #010101)\"      stroke-width=\"var(--stroke-width, 8)\"      stroke-miterlimit=\"10\"   /> </svg>',svgColor:\"rgb(0, 0, 0)\",svgPositionX:0,svgPositionY:-2,svgSize:1,svgStrokeWidth:4,textColor:\"rgb(0, 0, 0)\",texts:[\"Sample Text\"],textSource:\"cms\",uppercase:true,width:\"100%\"})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bpaeo4 hidden-1oxno9u hidden-1qivyxi\",\"data-framer-name\":\"Rechts\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1swfsls\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eluqcn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"LOCATION\"})}),className:\"framer-6ocl1g\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-un4oo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.7)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Paris\"})}),className:\"framer-4b6s0z\",fonts:[\"CUSTOM;Formula Condensed Bold\"],text:wbxT_J77Z,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ah8rfy\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fiwv9f\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"DIRECTOR\"})}),className:\"framer-l3dku4\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-82aabd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.7)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(0, 20, 20)\"},children:\"MAURICIO GARRIDO\"})}),className:\"framer-9b11xm\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u20277 hidden-mbku8w hidden-18hb3vk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13rvuxe\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n0m63w\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1glyno6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.03)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"CLIENT TYPE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"CLIENT TYPE\"})}),className:\"framer-153gy8d\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4u1ru8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.7)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Branded Space\"})}),text:vO0Cvxftv},zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.5)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Brand Store\"})}),text:vO0Cvxftv}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.7)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\"},children:\"BRAND\"})}),className:\"framer-1w6q7t4\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qbgunu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o6h4cm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.03)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"TALENT\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"TALENT\"})}),className:\"framer-5e987w\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-189w2bs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.5)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\"},children:\"OYSHO PLAYERS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.7)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\"},children:\"OYSHO PLAYERS\"})}),className:\"framer-ekkq4p\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ckl1et\",\"data-framer-name\":\"Rechts\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zwttxe\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8btwhk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.03)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"LOCATION\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"LOCATION\"})}),className:\"framer-1np5dex\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-efri8t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.7)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Paris\"})}),text:wbxT_J77Z},zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.5)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Germany\"})}),text:wbxT_J77Z}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.7)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\"},children:\"LA CORUNA, SPAIN\"})}),className:\"framer-1ieshwc\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t49m7y\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17j4w39\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.03)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"DIRECTOR\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(160, 167, 166)\"},children:\"DIRECTOR\"})}),className:\"framer-1tsooh1\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iurcg9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.5)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\"},children:\"MAURICIO GARRIDO\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.7)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\"},children:\"MAURICIO GARRIDO\"})}),className:\"framer-rruza\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-ttfu9p\",\"data-framer-appear-id\":\"ttfu9p\",\"data-framer-name\":\"Hero\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{background:{alt:\"\",fit:\"fill\",pixelHeight:4595,pixelWidth:6893,sizes:`calc((${componentViewport?.width||\"100vw\"} - 40px) * 1.0003)`,...toResponsiveImage(dHg3trIHk)}},zBrXEgxPn:{background:{alt:\"\",fit:\"fill\",pixelHeight:4595,pixelWidth:6893,sizes:`calc((${componentViewport?.width||\"100vw\"} - 20px) * 1.0003)`,...toResponsiveImage(dHg3trIHk)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4595,pixelWidth:6893,sizes:`calc((${componentViewport?.width||\"100vw\"} - 50px) * 1.0003)`,...toResponsiveImage(dHg3trIHk)},className:\"framer-bql834\",transformTemplate:transformTemplate2})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a9iz45\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jpb594\",\"data-framer-name\":\"Block 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c9jfnt\",\"data-framer-appear-id\":\"1c9jfnt\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o25iq2\",\"data-framer-name\":\"Titel\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.25)\",\"--framer-text-color\":\"rgb(162, 168, 168)\"},children:\"WE PROVIDE\"})}),className:\"framer-196zcqt\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gp2iwn\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.8)\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(23, 44, 42)\"},children:\"CREATIVITY\"})}),className:\"framer-1j8m3d3\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.8)\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(23, 44, 42)\"},children:\"PREPRODUCTION\"})}),className:\"framer-1fcn4z\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.8)\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(23, 44, 42)\"},children:\"PRODUCTION\"})}),className:\"framer-19p4re0\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.8)\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(23, 44, 42)\"},children:\"POSTPRODUCTION\"})}),className:\"framer-rr0j54\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1swdgnf\",\"data-framer-appear-id\":\"1swdgnf\",\"data-framer-name\":\"Rechts\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WVo94nIJ5:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2)\"},children:\"The sports and leisurewear brand of the Inditex group has been announced as the new technical sponsor of the Santander Golf Tour, the main women's golf circuit in Spain.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"Thanks to our work, the brand was able to access real-time tailored content and provide its players with professional material for use on their social media.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.33)\"},children:\"The sports and leisurewear brand of the Inditex group has been announced as the new technical sponsor of the Santander Golf Tour, the main women's golf circuit in Spain.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.33)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.33)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"Thanks to our work, the brand was able to access real-time tailored content and provide its players with professional material for use on their social media.\"})]}),className:\"framer-17fw88k\",fonts:[\"CUSTOM;Haas Grot Disp Trial 45 Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s8ane3\",\"data-framer-name\":\"Block 2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bemj7f\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{className:\"framer-mr45ii\",\"data-framer-appear-id\":\"mr45ii\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gxat7l-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RCwiFs4Oi\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:3,bottomLeftRadius:3,bottomRightRadius:3,controls:false,height:\"100%\",id:\"RCwiFs4Oi\",isMixedBorderRadius:false,layoutId:\"RCwiFs4Oi\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/B7NVua26UPRkiZu96LhAfjUhvss.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:3,topRightRadius:3,volume:25,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fw8yj8-container hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZqkzUQvAj\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:3,bottomLeftRadius:3,bottomRightRadius:3,controls:false,height:\"100%\",id:\"ZqkzUQvAj\",isMixedBorderRadius:false,layoutId:\"ZqkzUQvAj\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/hrzDfv4xKhBUNsWLyKy3fbLyfJ4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:3,topRightRadius:3,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ilk1os\",\"data-framer-appear-id\":\"ilk1os\",\"data-framer-name\":\"Text\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-xbataa hidden-1qivyxi\",\"data-framer-name\":\"Titel\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dshfvh-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,nodeId:\"fGHiXv8_8\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{maxFontSize:60,minFontSize:12,viewportScale:10}},children:/*#__PURE__*/_jsx(CmsTitle,{cmsTitle:mBpzi3bx4,fixedOnMobile:false,height:\"100%\",id:\"fGHiXv8_8\",layoutId:\"fGHiXv8_8\",lineSpacing:.9,maxFontSize:100,minFontSize:34,mobileFontSize:32,titleColor:\"rgb(0, 0, 0)\",titleFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.5)\",letterSpacing:\"0.01em\",lineHeight:\"1em\",textAlign:\"left\"},uppercase:true,viewportScale:5,width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12x2u28 hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\",\"data-framer-name\":\"Titel Mobil\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o1brn2\",\"data-framer-name\":\"Zeile 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.5)\",\"--framer-line-height\":\"0.88em\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Santander Golf Tour 2024\"})}),className:\"framer-1nnkd80\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fvem5g\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.03)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:[\"We filmed the Santander Golf Tour professional tournament over, in which the three players sponsored by OYSHO participated. The project covered the ProAm event and the competition days.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Our team included two videographers, a photographer, a live editor, and a drone pilot. Additionally, we had a remote editor to create VFX effects using footage captured during the tournament.\"]})})},zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:[\"We filmed the Santander Golf Tour professional tournament over, in which the three players sponsored by OYSHO participated. The project covered the ProAm event and the competition days.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Our team included two videographers, a photographer, a live editor, and a drone pilot. Additionally, we had a remote editor to create VFX effects using footage captured during the tournament.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:[\"We filmed the Santander Golf Tour professional tournament over, in which the three players sponsored by OYSHO participated. The project covered the ProAm event and the competition days.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Our team included two videographers, a photographer, a live editor, and a drone pilot. Additionally, we had a remote editor to create VFX effects using footage captured during the tournament.\"]})}),className:\"framer-1p4xyi2\",fonts:[\"CUSTOM;Haas Grot Disp Trial 45 Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kfbqtp hidden-1qivyxi\",\"data-framer-name\":\"Rechts\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16pciij-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jT0gKKsDN\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:3,bottomLeftRadius:3,bottomRightRadius:3,controls:false,height:\"100%\",id:\"jT0gKKsDN\",isMixedBorderRadius:false,layoutId:\"jT0gKKsDN\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/hrzDfv4xKhBUNsWLyKy3fbLyfJ4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:3,topRightRadius:3,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1euaxm5\",\"data-framer-name\":\"Block 3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-itwhkz\",\"data-framer-appear-id\":\"itwhkz\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-felq7p\",\"data-framer-name\":\"Titel\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fhobfz\",\"data-framer-name\":\"Zeile 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.5)\",\"--framer-line-height\":\"0.88em\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"From Court To Feed\"})}),viewBox:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62.178217821782184px\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"From Court To Feed\"})}),className:\"framer-17qbid6\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 378 75\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n9pg9x\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.03)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"Our goal is to maximize his social media presence by creating unique, authentic, and high-quality content that truly connects with his audience.\"})})},zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"Our goal is to maximize his social media presence by creating unique, authentic, and high-quality content that truly connects with his audience.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"Our goal is to maximize his social media presence by creating unique, authentic, and high-quality content that truly connects with his audience.\"})}),className:\"framer-16sr95\",fonts:[\"CUSTOM;Haas Grot Disp Trial 45 Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v3bc0a\",\"data-framer-name\":\"Block 4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1280,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/nuz6iNcOHFIKrOdsrsET1pnww5I.webp?width=1920&height=1280\",srcSet:\"https://framerusercontent.com/images/nuz6iNcOHFIKrOdsrsET1pnww5I.webp?scale-down-to=512&width=1920&height=1280 512w,https://framerusercontent.com/images/nuz6iNcOHFIKrOdsrsET1pnww5I.webp?scale-down-to=1024&width=1920&height=1280 1024w,https://framerusercontent.com/images/nuz6iNcOHFIKrOdsrsET1pnww5I.webp?width=1920&height=1280 1920w\"},className:\"framer-68n73i\",\"data-framer-name\":\"Bild 1\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{background:{alt:\"\",fit:\"fill\",pixelHeight:1920,pixelWidth:1440,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.2503)`,src:\"https://framerusercontent.com/images/oBoi1SYzuHRcM8SrxBAkVKTubo.webp?width=1440&height=1920\",srcSet:\"https://framerusercontent.com/images/oBoi1SYzuHRcM8SrxBAkVKTubo.webp?scale-down-to=1024&width=1440&height=1920 768w,https://framerusercontent.com/images/oBoi1SYzuHRcM8SrxBAkVKTubo.webp?width=1440&height=1920 1440w\"}},zBrXEgxPn:{__framer__parallaxTransformEnabled:undefined,__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:-60}}],__framer__transformTrigger:\"onInView\",background:{alt:\"\",fit:\"fill\",pixelHeight:1920,pixelWidth:1440,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2.699)`,src:\"https://framerusercontent.com/images/oBoi1SYzuHRcM8SrxBAkVKTubo.webp?width=1440&height=1920\",srcSet:\"https://framerusercontent.com/images/oBoi1SYzuHRcM8SrxBAkVKTubo.webp?scale-down-to=1024&width=1440&height=1920 768w,https://framerusercontent.com/images/oBoi1SYzuHRcM8SrxBAkVKTubo.webp?width=1440&height=1920 1440w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1920,pixelWidth:1440,sizes:`calc(${componentViewport?.width||\"100vw\"} / 4)`,src:\"https://framerusercontent.com/images/oBoi1SYzuHRcM8SrxBAkVKTubo.webp?width=1440&height=1920\",srcSet:\"https://framerusercontent.com/images/oBoi1SYzuHRcM8SrxBAkVKTubo.webp?scale-down-to=1024&width=1440&height=1920 768w,https://framerusercontent.com/images/oBoi1SYzuHRcM8SrxBAkVKTubo.webp?width=1440&height=1920 1440w\"},className:\"framer-9lwflr\",\"data-framer-name\":\"Bild 2\",transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wwk8tg\",\"data-framer-name\":\"Block 5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1icp6kr\",\"data-framer-appear-id\":\"1icp6kr\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1meff2d\",\"data-framer-name\":\"Titel\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-111fkuz\",\"data-framer-name\":\"Zeile 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8gx6i2-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,nodeId:\"gEG9B7bBC\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"}}},children:/*#__PURE__*/_jsx(NumberCounter,{decimalPlaces:1,delay:.3,duration:2,endValue:7.5,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 12)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},height:\"100%\",id:\"gEG9B7bBC\",layoutId:\"gEG9B7bBC\",prefix:\"+\",startValue:0,suffix:\"M\",textColor:\"rgb(23, 44, 42)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kcyy0k\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(121, 130, 130)\"},children:\"VIEWS\"})}),viewBox:\"0 0 33.68 19\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(121, 130, 130)\"},children:\"VIEWS\"})}),className:\"framer-1omuw6w\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 32 19\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ybxz5m\",\"data-framer-name\":\"Zeile 2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q86yko-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,nodeId:\"LMZJVsjTH\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"}}},children:/*#__PURE__*/_jsx(NumberCounter,{decimalPlaces:0,delay:.3,duration:2,endValue:250,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 12)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\"},height:\"100%\",id:\"LMZJVsjTH\",layoutId:\"LMZJVsjTH\",prefix:\"+\",startValue:0,suffix:\"K\",textColor:\"rgb(23, 44, 42)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-65w65j\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(121, 130, 130)\"},children:\"LIKES\"})}),viewBox:\"0 0 26.68 19\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(121, 130, 130)\"},children:\"LIKES\"})}),className:\"framer-cdn232\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 25 19\",withExternalLayout:true})})})]})]})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s913p8\",\"data-framer-name\":\"Block 6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hcqucq\",\"data-framer-appear-id\":\"1hcqucq\",\"data-framer-name\":\"Text\",children:[isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10dyls6 hidden-1qivyxi\",\"data-framer-name\":\"Titel\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6m5y01\",\"data-framer-name\":\"Zeile 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62.178217821782184px\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Embracing Golf with\"})}),className:\"framer-1dii3k2\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 423 75\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nugib8\",\"data-framer-name\":\"Zeile 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"95.54310861616825px\",\"--framer-line-height\":\"0.6em\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Authenticity and Style\"})}),className:\"framer-1jitg2n\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 729 57\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ye37pk hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\",\"data-framer-name\":\"Titel Mobil\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h6uzp1\",\"data-framer-name\":\"Zeile 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.5)\",\"--framer-line-height\":\"0.88em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Embracing Golf with Authenticity and Style\"})}),className:\"framer-1ls7nh5\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19luys5\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.03)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"The challenge is to position OYSHO authentically in the world of golf, connecting the brand not only with sports fashion but with the spirit of the sport itself. This means strengthening its association with golf, sparking interest in the event, and creating visually impactful, inspiring content.\"})})},zBrXEgxPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"The challenge is to position OYSHO authentically in the world of golf, connecting the brand not only with sports fashion but with the spirit of the sport itself. This means strengthening its association with golf, sparking interest in the event, and creating visually impactful, inspiring content.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"The challenge is to position OYSHO authentically in the world of golf, connecting the brand not only with sports fashion but with the spirit of the sport itself. This means strengthening its association with golf, sparking interest in the event, and creating visually impactful, inspiring content.\"})}),className:\"framer-1nay51w\",fonts:[\"CUSTOM;Haas Grot Disp Trial 45 Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kod3ys\",\"data-framer-name\":\"Block 7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10mkv3q\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{className:\"framer-1bwgczd\",\"data-framer-appear-id\":\"1bwgczd\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2bh5et-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GPWwk7SlA\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:3,bottomLeftRadius:3,bottomRightRadius:3,controls:false,height:\"100%\",id:\"GPWwk7SlA\",isMixedBorderRadius:false,layoutId:\"GPWwk7SlA\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/rAh4tOUH6leO92R4udorLgFzfPE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:3,topRightRadius:3,volume:25,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{background:{alt:\"\",fit:\"fill\",pixelHeight:2560,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?width=1920&height=2560\",srcSet:\"https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?scale-down-to=1024&width=1920&height=2560 768w,https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?scale-down-to=2048&width=1920&height=2560 1536w,https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?width=1920&height=2560 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2560,pixelWidth:1920,src:\"https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?width=1920&height=2560\",srcSet:\"https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?scale-down-to=1024&width=1920&height=2560 768w,https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?scale-down-to=2048&width=1920&height=2560 1536w,https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?width=1920&height=2560 1920w\"},className:\"framer-9h1gb1 hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\",\"data-framer-name\":\"Bild 2\",fitImageDimension:\"height\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19t53kr\",\"data-framer-appear-id\":\"19t53kr\",\"data-framer-name\":\"Text\",children:[isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qxms8c hidden-1qivyxi\",\"data-framer-name\":\"Titel\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s9u0ft\",\"data-framer-name\":\"Zeile 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62.178217821782184px\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"A Coru\\xf1a\"})}),className:\"framer-1pabauh\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 187 75\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-21ln93\",\"data-framer-name\":\"Zeile 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"95.54310861616825px\",\"--framer-line-height\":\"0.6em\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"Challenge\"})}),className:\"framer-iq36tj\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 313 57\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-scgg7r hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\",\"data-framer-name\":\"Titel Mobil\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u6swaj\",\"data-framer-name\":\"Zeile 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.5)\",\"--framer-text-color\":\"rgb(0, 20, 20)\",\"--framer-text-transform\":\"uppercase\"},children:\"A Coru\\xf1a Challenge\"})}),className:\"framer-1rjdmhj\",fonts:[\"CUSTOM;Formula Condensed Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13rozes\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"One of the most special projects of the Santander Golf Tour 2024 was the tournament in A Coru\\xf1a. Covering this key event was a true challenge, as Oysho had demanding communication needs that required speed and precision. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"To meet this challenge, we deployed a large production team, including a campaign director, two videographers, a photographer, a drone pilot, and, crucially, a live editor. Thanks to this setup, we delivered a high-quality edit in just 24 hours, ensuring immediate impact and engagement. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"A Coru\\xf1a was not just another stop—it was a test of efficiency, teamwork, and creativity. And we delivered.\"})]}),className:\"framer-u4ttay\",fonts:[\"CUSTOM;Haas Grot Disp Trial 45 Light\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lp2dnr hidden-1qivyxi\",\"data-framer-name\":\"Rechts\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WVo94nIJ5:{background:{alt:\"\",fit:\"fill\",pixelHeight:2560,pixelWidth:1920,positionX:\"left\",positionY:\"bottom\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 220px) / 2)`,src:\"https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?width=1920&height=2560\",srcSet:\"https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?scale-down-to=1024&width=1920&height=2560 768w,https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?scale-down-to=2048&width=1920&height=2560 1536w,https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?width=1920&height=2560 1920w\"},fitImageDimension:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2560,pixelWidth:1920,sizes:`calc((${componentViewport?.width||\"100vw\"} - 220px) / 2)`,src:\"https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?width=1920&height=2560\",srcSet:\"https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?scale-down-to=1024&width=1920&height=2560 768w,https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?scale-down-to=2048&width=1920&height=2560 1536w,https://framerusercontent.com/images/6LCLi78NXcHUD5FwH2CV3Ul6uZ4.webp?width=1920&height=2560 1920w\"},className:\"framer-sd59u9\",fitImageDimension:\"height\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bazlo0\",\"data-framer-name\":\"Block 8\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15lyopk\",\"data-framer-name\":\"Credits\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1yvzvrr\",\"data-framer-appear-id\":\"1yvzvrr\",\"data-framer-name\":\"Zeile 1\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14yitxb-container\",isAuthoredByUser:true,nodeId:\"pAKhZEd2R\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"}},zBrXEgxPn:{nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.83)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"}}},children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"pAKhZEd2R\",layoutId:\"pAKhZEd2R\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"MAURICIO GARRIDO\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"DIRECTOR\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.53)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hxe4qd-container\",isAuthoredByUser:true,nodeId:\"uczUPtC_f\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"}},zBrXEgxPn:{nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.83)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"}}},children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"uczUPtC_f\",layoutId:\"uczUPtC_f\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"ALBERTO BENITO\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"COLORIST\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.53)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u0gw6z-container hidden-1qivyxi\",isAuthoredByUser:true,nodeId:\"YcuAo0Kss\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"}}},children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"YcuAo0Kss\",layoutId:\"YcuAo0Kss\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"HECTOR KONTOKOLIAS\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"EDIT\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.53)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-114tgll\",\"data-framer-appear-id\":\"114tgll\",\"data-framer-name\":\"Zeile 2\",initial:animation3,optimized:true,children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14xs67n-container hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\",isAuthoredByUser:true,nodeId:\"l0VU6o4OV\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"l0VU6o4OV\",layoutId:\"l0VU6o4OV\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"HECTOR KONTOKOLIAS\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"EDIT\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.83)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p59hsu-container hidden-1qivyxi\",isAuthoredByUser:true,nodeId:\"GfIiq1srd\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"}}},children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"GfIiq1srd\",layoutId:\"GfIiq1srd\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"DANIEL PARRA\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"CAMERA OPERATOR 1\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.53)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qfmuo0-container hidden-1qivyxi\",isAuthoredByUser:true,nodeId:\"jOEuKlbov\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"}}},children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"jOEuKlbov\",layoutId:\"jOEuKlbov\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"EDUARDO GONZ\\xc1LEZ\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"CAMERA OPERATOR 2\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.53)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c1gtlc-container hidden-1qivyxi\",isAuthoredByUser:true,nodeId:\"euH2FxLaS\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.23)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"}}},children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"euH2FxLaS\",layoutId:\"euH2FxLaS\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"JAOCO GASSET\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"EDIT\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.53)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-13ul9f5\",\"data-framer-appear-id\":\"13ul9f5\",\"data-framer-name\":\"Zeile 3\",initial:animation3,optimized:true,children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4fvvan-container hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\",isAuthoredByUser:true,nodeId:\"vi9238wTs\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"vi9238wTs\",layoutId:\"vi9238wTs\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"DANIEL PARRA\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"CAMERA OPERATOR 1\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.83)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pj9ym1-container hidden-1qivyxi\",isAuthoredByUser:true,nodeId:\"G0TmKbVam\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"G0TmKbVam\",layoutId:\"G0TmKbVam\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"ALBERTO BENITO\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"DOP\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.53)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tcfrgv-container hidden-1qivyxi\",isAuthoredByUser:true,nodeId:\"ywsSR0R_i\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"ywsSR0R_i\",layoutId:\"ywsSR0R_i\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"TWICE TEAM\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"VFX\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.53)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uqwmbz-container hidden-1qivyxi\",isAuthoredByUser:true,nodeId:\"Uzlg2Yc4N\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"Uzlg2Yc4N\",layoutId:\"Uzlg2Yc4N\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"DANIEL PARRA\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"DRONE PILOT\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.53)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-2jw5zb hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\",\"data-framer-appear-id\":\"2jw5zb\",\"data-framer-name\":\"Zeile 4\",initial:animation3,optimized:true,children:isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-psivii-container hidden-mbku8w\",isAuthoredByUser:true,nodeId:\"lPGULCDMx\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"lPGULCDMx\",layoutId:\"lPGULCDMx\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"EDUARDO GONZ\\xc1LEZ\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"CAMERA OPERATOR 2\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.83)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-toj7u6 hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\",\"data-framer-appear-id\":\"toj7u6\",\"data-framer-name\":\"Zeile 5\",initial:animation3,optimized:true,children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cz2k9u-container hidden-mbku8w\",isAuthoredByUser:true,nodeId:\"CePnVzluF\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"CePnVzluF\",layoutId:\"CePnVzluF\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"JAOCO GASSET\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"EDIT\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.83)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17jzd3p-container hidden-mbku8w\",isAuthoredByUser:true,nodeId:\"Mw_Hv1vLp\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"Mw_Hv1vLp\",layoutId:\"Mw_Hv1vLp\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"ALBERTO BENITO\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"DOP\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.83)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-q8ygp2 hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\",\"data-framer-appear-id\":\"q8ygp2\",\"data-framer-name\":\"Zeile 6\",initial:animation3,optimized:true,children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jna2jo-container hidden-mbku8w\",isAuthoredByUser:true,nodeId:\"Ew1mvhUoT\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"Ew1mvhUoT\",layoutId:\"Ew1mvhUoT\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"TWICE TEAM\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"VFX\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.83)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-137z3lm-container hidden-mbku8w\",isAuthoredByUser:true,nodeId:\"pTJm9viYW\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(CreditsComponent,{alignment:\"left\",enableMobileBreakpoint:false,height:\"100%\",id:\"pTJm9viYW\",layoutId:\"pTJm9viYW\",mobileBreakpoint:768,mobileNameSize:20,mobilePositionSize:10,name:\"DANIEL PARRA\",nameColor:\"rgb(23, 44, 42)\",nameFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.4)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},position:\"DRONE PILOT\",positionColor:\"rgb(162, 168, 168)\",positionFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.83)\",letterSpacing:\"0.02em\",lineHeight:\"1.2em\",textAlign:\"left\"},spacing:4,verticalAlignment:\"top\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12eoc52\",\"data-framer-name\":\"Block 9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-le142v\",\"data-framer-name\":\"Links\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{className:\"framer-61zh8t\",\"data-framer-appear-id\":\"61zh8t\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{background:{alt:\"\",fit:\"fill\",pixelHeight:1920,pixelWidth:1440,sizes:`calc((${componentViewport?.width||\"100vw\"} - 60px) / 5)`,src:\"https://framerusercontent.com/images/XABjXZ581SFahCgmBWpRp0ZxOVc.webp?width=1440&height=1920\",srcSet:\"https://framerusercontent.com/images/XABjXZ581SFahCgmBWpRp0ZxOVc.webp?scale-down-to=1024&width=1440&height=1920 768w,https://framerusercontent.com/images/XABjXZ581SFahCgmBWpRp0ZxOVc.webp?width=1440&height=1920 1440w\"}},zBrXEgxPn:{background:{alt:\"\",fit:\"fill\",pixelHeight:1920,pixelWidth:1440,sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/XABjXZ581SFahCgmBWpRp0ZxOVc.webp?width=1440&height=1920\",srcSet:\"https://framerusercontent.com/images/XABjXZ581SFahCgmBWpRp0ZxOVc.webp?scale-down-to=1024&width=1440&height=1920 768w,https://framerusercontent.com/images/XABjXZ581SFahCgmBWpRp0ZxOVc.webp?width=1440&height=1920 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1920,pixelWidth:1440,sizes:`calc((${componentViewport?.width||\"100vw\"} - 220px) * 0.185)`,src:\"https://framerusercontent.com/images/XABjXZ581SFahCgmBWpRp0ZxOVc.webp?width=1440&height=1920\",srcSet:\"https://framerusercontent.com/images/XABjXZ581SFahCgmBWpRp0ZxOVc.webp?scale-down-to=1024&width=1440&height=1920 768w,https://framerusercontent.com/images/XABjXZ581SFahCgmBWpRp0ZxOVc.webp?width=1440&height=1920 1440w\"},className:\"framer-15e5j5z\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{background:{alt:\"\",fit:\"fill\",pixelHeight:2560,pixelWidth:1920,sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?width=1920&height=2560\",srcSet:\"https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?scale-down-to=1024&width=1920&height=2560 768w,https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?scale-down-to=2048&width=1920&height=2560 1536w,https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?width=1920&height=2560 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2560,pixelWidth:1920,src:\"https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?width=1920&height=2560\",srcSet:\"https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?scale-down-to=1024&width=1920&height=2560 768w,https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?scale-down-to=2048&width=1920&height=2560 1536w,https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?width=1920&height=2560 1920w\"},className:\"framer-1fd8xo9 hidden-mbku8w hidden-18hb3vk hidden-1oxno9u\"})})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-3lrrqn\",\"data-framer-appear-id\":\"3lrrqn\",\"data-framer-name\":\"Text\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vbmtsf\",\"data-framer-name\":\"Titel\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m9zb8n-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,nodeId:\"lgB9iXiAH\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{lineSpacing:.85,maxFontSize:40,minFontSize:40,mobileFontSize:100,style:{width:\"100%\"},titleFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.5)\",letterSpacing:\"0.02em\",lineHeight:\"0.88em\",textAlign:\"left\"},viewportScale:2.5}},children:/*#__PURE__*/_jsx(CmsTitle,{cmsTitle:uNKxhajOC,fixedOnMobile:false,height:\"100%\",id:\"lgB9iXiAH\",layoutId:\"lgB9iXiAH\",lineSpacing:.9,maxFontSize:150,minFontSize:34,mobileFontSize:32,titleColor:\"rgb(0, 20, 20)\",titleFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.5)\",letterSpacing:\"0.01em\",lineHeight:\"1em\",textAlign:\"left\"},uppercase:true,viewportScale:5,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y6knwn\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hhYXMgR3JvdCBEaXNwIFRyaWFsIDQ1IExpZ2h0\",\"--framer-font-family\":'\"Haas Grot Disp Trial 45 Light\", \"Haas Grot Disp Trial 45 Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.13)\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"At Twice, we use cutting-edge equipment from Hollyland to guarantee seamless internal communication. With this advanced technology, our team stays effortlessly connected, enhancing clarity and efficiency on every project.\"})}),className:\"framer-4s49k0\",fonts:[\"CUSTOM;Haas Grot Disp Trial 45 Light\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-r40ll6 hidden-1qivyxi\",\"data-framer-name\":\"Rechts\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{background:{alt:\"\",fit:\"fill\",pixelHeight:2560,pixelWidth:1920,sizes:`calc((${componentViewport?.width||\"100vw\"} - 60px) * 0.52)`,src:\"https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?width=1920&height=2560\",srcSet:\"https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?scale-down-to=1024&width=1920&height=2560 768w,https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?scale-down-to=2048&width=1920&height=2560 1536w,https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?width=1920&height=2560 1920w\"}},WVo94nIJ5:{background:{alt:\"\",fit:\"fill\",pixelHeight:2560,pixelWidth:1920,positionX:\"left\",positionY:\"bottom\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 220px) * 0.52)`,src:\"https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?width=1920&height=2560\",srcSet:\"https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?scale-down-to=1024&width=1920&height=2560 768w,https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?scale-down-to=2048&width=1920&height=2560 1536w,https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?width=1920&height=2560 1920w\"},fitImageDimension:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2560,pixelWidth:1920,sizes:`calc((${componentViewport?.width||\"100vw\"} - 220px) * 0.52)`,src:\"https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?width=1920&height=2560\",srcSet:\"https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?scale-down-to=1024&width=1920&height=2560 768w,https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?scale-down-to=2048&width=1920&height=2560 1536w,https://framerusercontent.com/images/7SEzPCKE4R0oOSWlSBw6oFi8is.webp?width=1920&height=2560 1920w\"},className:\"framer-1qf8pf5\",fitImageDimension:\"height\"})})})]}),visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-j97y5x\",\"data-framer-name\":\"Block 10\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{className:\"framer-8rxbrd\",\"data-framer-appear-id\":\"8rxbrd\",\"data-framer-name\":\"Carousel\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rmx7q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FFjtxA9Ou\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{gap:10,itemAmount:1.25,padding:10,paddingBottom:10,paddingLeft:10,paddingRight:10,paddingTop:10}},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:false},autoPlayControl:false,borderRadius:3,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:17,height:\"100%\",id:\"FFjtxA9Ou\",intervalControl:1.5,itemAmount:2.5,layoutId:\"FFjtxA9Ou\",padding:17,paddingBottom:17,paddingLeft:17,paddingPerSide:false,paddingRight:17,paddingTop:17,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:false},slots:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"403px\",...toResponsiveImage(UUJ0Y28HX)},className:\"framer-6i8761\",\"data-framer-name\":\"Image 1\"}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"403px\",...toResponsiveImage(NPZz5yatu)},className:\"framer-5mrwbj\",\"data-framer-name\":\"Image 2\"}),visible2&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"403px\",...toResponsiveImage(ORffhsntQ)},className:\"framer-xk5q3r\",\"data-framer-name\":\"Image 3\"}),visible3&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"403px\",...toResponsiveImage(nQqO0se6B)},className:\"framer-cnx00p\",\"data-framer-name\":\"Image 4\"}),visible4&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"403px\",...toResponsiveImage(UjsO85djj)},className:\"framer-1fva9dx\",\"data-framer-name\":\"Image 5\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sbo71m\",\"data-framer-name\":\"Block 10\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18769p6\",\"data-framer-name\":\"Discover More\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4lfuw8\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-inuee7\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vvl379-container\",\"data-code-component-plugin-id\":\"84d4c1\",isAuthoredByUser:true,nodeId:\"R1KsfARzO\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{fixedOnMobile:true,maxFontSize:64,mobileFontSize:40},zBrXEgxPn:{fixedOnMobile:true,lineSpacing:.85,maxFontSize:40,minFontSize:40,mobileFontSize:40,style:{width:\"100%\"},titleFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2)\",letterSpacing:\"0.02em\",lineHeight:\"1.1em\",textAlign:\"left\"},viewportScale:2.5}},children:/*#__PURE__*/_jsx(CmsTitle,{cmsTitle:\"DISCOVER MORE\",fixedOnMobile:false,height:\"100%\",id:\"R1KsfARzO\",layoutId:\"R1KsfARzO\",lineSpacing:1.02,maxFontSize:150,minFontSize:34,mobileFontSize:32,titleColor:\"rgb(0, 20, 20)\",titleFont:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 2.5)\",letterSpacing:\"0.01em\",lineHeight:\"1em\",textAlign:\"left\"},uppercase:true,viewportScale:5,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ALf7_LAm5\"},motionChild:true,nodeId:\"EH32Gfu2k\",openInNewTab:false,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(MotionAWithPageTransition1xy2rtz,{className:\"framer-1xy2rtz framer-6gj07i\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p5cuey-container\",isAuthoredByUser:true,nodeId:\"axo1r_3ju\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1)\",letterSpacing:\"0.03em\",lineHeight:\"1.8em\"},layout:{borderRadius:1,borderWidth:1,buttonPadding:8,containerHeight:34,shapeSize:10,symbolPositionX:0,symbolPositionY:0}},zBrXEgxPn:{font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.1)\",letterSpacing:\"0.03em\",lineHeight:\"1.6em\"},layout:{borderRadius:1,borderWidth:1,buttonPadding:6,containerHeight:40,shapeSize:10,symbolPositionX:0,symbolPositionY:0}}},children:/*#__PURE__*/_jsx(ContactButton,{animationSpeed:.2,animationType:\"spring\",colors:{borderColor:\"rgb(255, 255, 255)\",shapeBackgroundColor:\"rgb(0, 0, 0)\",shapeColor:\"rgb(255, 255, 255)\",textBackgroundColor:\"rgb(255, 255, 255)\",textColor:\"rgb(0, 0, 0)\"},disableHoverOnMobile:false,font:{fontFamily:'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.2)\",letterSpacing:\"0.03em\",lineHeight:\"1.5em\"},height:\"100%\",id:\"axo1r_3ju\",layout:{borderRadius:1,borderWidth:1,buttonPadding:5,containerHeight:42,shapeSize:10,symbolPositionX:0,symbolPositionY:0},layoutId:\"axo1r_3ju\",text:\"ALL PROJECTS\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oy7qm4\",\"data-framer-name\":\"Case\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xn28xx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Dn0hzfEWi\",data:OraProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"Dn0hzfEWi\",name:\"nmra7HyPc\",type:\"Identifier\"},{collection:\"Dn0hzfEWi\",name:\"iC9pVt3ff\",type:\"Identifier\"},{collection:\"Dn0hzfEWi\",name:\"sehCNecQN\",type:\"Identifier\"},{collection:\"Dn0hzfEWi\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"Dn0hzfEWi\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"Dn0hzfEWi\",name:\"dHg3trIHk\",type:\"Identifier\"},{collection:\"Dn0hzfEWi\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"Dn0hzfEWi\",name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Fz9l0NnYQ},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"Dn0hzfEWi\",name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:OKHcAq9Ff},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({dHg3trIHk:dHg3trIHkDn0hzfEWi,FnwgSIUrA:FnwgSIUrADn0hzfEWi,iC9pVt3ff:iC9pVt3ffDn0hzfEWi,id:idDn0hzfEWi,nmra7HyPc:nmra7HyPcDn0hzfEWi,sehCNecQN:sehCNecQNDn0hzfEWi,TXmd62wMm:TXmd62wMmDn0hzfEWi},index)=>{nmra7HyPcDn0hzfEWi??=\"\";iC9pVt3ffDn0hzfEWi??=\"\";FnwgSIUrADn0hzfEWi??=\"\";TXmd62wMmDn0hzfEWi??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Dn0hzfEWi-${idDn0hzfEWi}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{iC9pVt3ff:iC9pVt3ffDn0hzfEWi},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffDn0hzfEWi},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffDn0hzfEWi},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffDn0hzfEWi},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffDn0hzfEWi},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{height:388},zBrXEgxPn:{height:388,width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:268,width:`max(${componentViewport?.width||\"100vw\"} - 34px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fv70l5-container\",nodeId:\"m3JpenkwQ\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{EvxtEg3yT:resolvedLinks1[2],style:{width:\"100%\"},variant:\"Zp1T3Wrvh\"},WVo94nIJ5:{EvxtEg3yT:resolvedLinks1[1]},zBrXEgxPn:{EvxtEg3yT:resolvedLinks1[3],style:{width:\"100%\"},variant:\"TyjDXcMhx\"}},children:/*#__PURE__*/_jsx(OraProjectGridCard,{CNENJTi2T:toResponsiveImage(dHg3trIHkDn0hzfEWi),EvxtEg3yT:resolvedLinks1[0],height:\"100%\",i_vXD59cM:TXmd62wMmDn0hzfEWi,I8BqU0Guv:FnwgSIUrADn0hzfEWi,id:\"m3JpenkwQ\",layoutId:\"m3JpenkwQ\",ngb8Pk5GL:0,style:{height:\"100%\",width:\"100%\"},tJL_S_tj_:nmra7HyPcDn0hzfEWi,variant:\"xKktyDed1\",vqKDEHV2t:toResponsiveImage(sehCNecQNDn0hzfEWi),wHuE7fgyO:toResponsiveImage(dHg3trIHkDn0hzfEWi),width:\"100%\"})})})})})})})},idDn0hzfEWi);})})})})})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12aefgc\",\"data-framer-name\":\"nav_trigger\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"MASTERING THE COURT\"})}),className:\"framer-bblw8u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined},{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined},{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined},{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{y:(componentViewport?.y||0)+0+1114.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:639,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vc4zhr-container\",id:elementId1,nodeId:\"OWXt1H9Jy\",ref:ref2,rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{BEfnYsrXd:resolvedLinks2[2],variant:\"v6buDZWn1\"},WVo94nIJ5:{BEfnYsrXd:resolvedLinks2[1]},zBrXEgxPn:{BEfnYsrXd:resolvedLinks2[3],variant:\"pwVtACACX\"}},children:/*#__PURE__*/_jsx(Twice_footer,{BEfnYsrXd:resolvedLinks2[0],f7wqGWOnh:\"CONTACT US\",FQlp3f0sf:false,height:\"100%\",id:\"OWXt1H9Jy\",layoutId:\"OWXt1H9Jy\",p5YjZonzT:true,style:{width:\"100%\"},tYstZgxMP:\"Established in 2005, we've dedicated ourselves to crafting impactful and outstanding retail solutions defined by creativity, innovation, speed and anunwavering commitment to excellence in production.\",variant:\"zh2dNkaSf\",w6YfzNa1e:{borderBottomWidth:1,borderColor:\"rgb(38, 58, 56)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},whMQct4Rx:false,width:\"100%\",Z_QKIGMAn:false})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-phUHj.framer-6gj07i, .framer-phUHj .framer-6gj07i { display: block; }\",\".framer-phUHj.framer-mbku8w { align-content: center; align-items: center; background-color: #f1f1f1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-phUHj .framer-fb93ep-container, .framer-phUHj .framer-1wyqqyi-container, .framer-phUHj .framer-dshfvh-container, .framer-phUHj .framer-8gx6i2-container, .framer-phUHj .framer-q86yko-container, .framer-phUHj .framer-14yitxb-container, .framer-phUHj .framer-hxe4qd-container, .framer-phUHj .framer-u0gw6z-container, .framer-phUHj .framer-14xs67n-container, .framer-phUHj .framer-1p59hsu-container, .framer-phUHj .framer-1qfmuo0-container, .framer-phUHj .framer-c1gtlc-container, .framer-phUHj .framer-4fvvan-container, .framer-phUHj .framer-pj9ym1-container, .framer-phUHj .framer-1tcfrgv-container, .framer-phUHj .framer-uqwmbz-container, .framer-phUHj .framer-psivii-container, .framer-phUHj .framer-1cz2k9u-container, .framer-phUHj .framer-17jzd3p-container, .framer-phUHj .framer-jna2jo-container, .framer-phUHj .framer-137z3lm-container, .framer-phUHj .framer-1m9zb8n-container, .framer-phUHj .framer-vvl379-container, .framer-phUHj .framer-1p5cuey-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-phUHj .framer-mi739b-container { height: auto; position: relative; width: auto; }\",\".framer-phUHj .framer-dalcwz-container { flex: none; height: 1px; position: relative; width: auto; }\",\".framer-phUHj .framer-1r1bev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-phUHj .framer-1585itj-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-phUHj .framer-wsqo7 { 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; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-phUHj .framer-ey3j9k { align-content: center; align-items: center; aspect-ratio: 1.0738255033557047 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 1174px); justify-content: flex-end; overflow: var(--overflow-clip-fallback, clip); padding: 0px 25px 50px 25px; position: relative; width: 100%; }\",\".framer-phUHj .framer-u1xavu { align-content: flex-end; align-items: flex-end; aspect-ratio: 3.59375 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 320px); justify-content: center; overflow: visible; padding: 0px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1hlfnts { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-17s2d4l, .framer-phUHj .framer-bpaeo4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 55px; justify-content: space-between; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; }\",\".framer-phUHj .framer-kdl3b7, .framer-phUHj .framer-18zsl1g, .framer-phUHj .framer-1swfsls, .framer-phUHj .framer-1ah8rfy { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-phUHj .framer-1ugdp5s, .framer-phUHj .framer-i9gw61, .framer-phUHj .framer-pptynf, .framer-phUHj .framer-un4oo, .framer-phUHj .framer-82aabd { 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-phUHj .framer-dg1974, .framer-phUHj .framer-5rhul6, .framer-phUHj .framer-1i1zphg, .framer-phUHj .framer-g0j1rv, .framer-phUHj .framer-mzbpy1, .framer-phUHj .framer-6ocl1g, .framer-phUHj .framer-4b6s0z, .framer-phUHj .framer-l3dku4, .framer-phUHj .framer-9b11xm, .framer-phUHj .framer-153gy8d, .framer-phUHj .framer-1w6q7t4, .framer-phUHj .framer-5e987w, .framer-phUHj .framer-ekkq4p, .framer-phUHj .framer-1np5dex, .framer-phUHj .framer-1ieshwc, .framer-phUHj .framer-1tsooh1, .framer-phUHj .framer-rruza, .framer-phUHj .framer-196zcqt, .framer-phUHj .framer-1j8m3d3, .framer-phUHj .framer-1fcn4z, .framer-phUHj .framer-19p4re0, .framer-phUHj .framer-rr0j54 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-phUHj .framer-2vkkyv, .framer-phUHj .framer-fiwv9f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-phUHj .framer-1k077a4 { --border-bottom-width: 1px; --border-color: #172c2a; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; border-top-left-radius: 1px; border-top-right-radius: 1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-phUHj .framer-9vbkck { --border-bottom-width: 0px; --border-color: #172c2a; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 78px); justify-content: center; overflow: visible; padding: 10px; position: relative; width: 78px; }\",\".framer-phUHj .framer-pcwf4t { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); position: relative; width: 58px; }\",\".framer-phUHj .framer-6ctmok { 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: 163px; }\",\".framer-phUHj .framer-dbpjcr { --border-bottom-width: 1px; --border-color: #172c2a; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 29px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1fjenvm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 42px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-wgt8b4-container { aspect-ratio: 4.220779220779221 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); position: relative; width: 100%; }\",\".framer-phUHj .framer-1eluqcn { 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: 97px; }\",\".framer-phUHj .framer-u20277 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 219px; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-13rvuxe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-phUHj .framer-n0m63w, .framer-phUHj .framer-1qbgunu, .framer-phUHj .framer-zwttxe, .framer-phUHj .framer-1t49m7y { 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: min-content; }\",\".framer-phUHj .framer-1glyno6, .framer-phUHj .framer-4u1ru8, .framer-phUHj .framer-189w2bs, .framer-phUHj .framer-efri8t, .framer-phUHj .framer-iurcg9 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-phUHj .framer-1o6h4cm, .framer-phUHj .framer-17j4w39 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-phUHj .framer-1ckl1et { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; }\",\".framer-phUHj .framer-8btwhk { 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: visible; padding: 0px; position: relative; width: 97px; }\",\".framer-phUHj .framer-ttfu9p { align-content: center; align-items: center; aspect-ratio: 1.7798594847775175 / 1; background-color: #ffffff; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 646px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-phUHj .framer-bql834 { aspect-ratio: 1.779896013864818 / 1; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: var(--framer-aspect-ratio-supported, 646px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 1; }\",\".framer-phUHj .framer-a9iz45 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-jpb594 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: var(--overflow-clip-fallback, clip); padding: 100px 110px 150px 110px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1c9jfnt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-phUHj .framer-1o25iq2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1gp2iwn { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1swdgnf, .framer-phUHj .framer-1kfbqtp, .framer-phUHj .framer-1lp2dnr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-phUHj .framer-17fw88k, .framer-phUHj .framer-1p4xyi2, .framer-phUHj .framer-16sr95, .framer-phUHj .framer-1nay51w, .framer-phUHj .framer-u4ttay, .framer-phUHj .framer-4s49k0 { --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-phUHj .framer-s8ane3, .framer-phUHj .framer-1kod3ys, .framer-phUHj .framer-12eoc52 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px 110px 50px 110px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1bemj7f { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-phUHj .framer-mr45ii { 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: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 38%; }\",\".framer-phUHj .framer-gxat7l-container, .framer-phUHj .framer-fw8yj8-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-phUHj .framer-ilk1os { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-xbataa { 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: visible; padding: 0px; position: relative; width: 75%; }\",\".framer-phUHj .framer-12x2u28, .framer-phUHj .framer-qxms8c, .framer-phUHj .framer-scgg7r { 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: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-o1brn2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 75%; }\",\".framer-phUHj .framer-1nnkd80, .framer-phUHj .framer-1rjdmhj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-phUHj .framer-1fvem5g, .framer-phUHj .framer-1n9pg9x, .framer-phUHj .framer-19luys5 { 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; overflow: visible; padding: 0px; position: relative; width: 73%; }\",\".framer-phUHj .framer-16pciij-container { aspect-ratio: 0.7502254283137962 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 653px); position: relative; width: 100%; }\",\".framer-phUHj .framer-1euaxm5, .framer-phUHj .framer-wwk8tg { 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: visible; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-itwhkz, .framer-phUHj .framer-1icp6kr, .framer-phUHj .framer-1hcqucq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-felq7p, .framer-phUHj .framer-10dyls6 { 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 0px 10px 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1fhobfz { 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: visible; padding: 0px; position: relative; width: 30%; }\",\".framer-phUHj .framer-17qbid6, .framer-phUHj .framer-1omuw6w, .framer-phUHj .framer-1dii3k2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",\".framer-phUHj .framer-1v3bc0a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 350px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-68n73i { align-content: flex-start; align-items: flex-start; aspect-ratio: 2.005 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 89px; height: var(--framer-aspect-ratio-supported, 599px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-9lwflr { align-content: center; align-items: center; aspect-ratio: 0.75 / 1; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 35%; transform: translate(-50%, -50%); width: 25%; z-index: 1; }\",\".framer-phUHj .framer-1meff2d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-111fkuz { 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: 36%; }\",\".framer-phUHj .framer-1kcyy0k { 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: visible; padding: 0px; position: relative; width: 15%; }\",\".framer-phUHj .framer-ybxz5m { 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: 38%; }\",\".framer-phUHj .framer-65w65j { 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: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 11%; }\",\".framer-phUHj .framer-cdn232 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre; width: 1px; }\",\".framer-phUHj .framer-s913p8, .framer-phUHj .framer-1bazlo0, .framer-phUHj .framer-j97y5x { 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: visible; padding: 100px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-6m5y01 { 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: visible; padding: 0px; position: relative; width: 34%; }\",\".framer-phUHj .framer-nugib8 { 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: visible; padding: 0px; position: relative; width: 38%; }\",\".framer-phUHj .framer-1jitg2n, .framer-phUHj .framer-iq36tj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: 100%; z-index: 1; }\",\".framer-phUHj .framer-ye37pk { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1h6uzp1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px 0px; height: min-content; justify-content: center; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1ls7nh5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-phUHj .framer-10mkv3q, .framer-phUHj .framer-le142v { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-phUHj .framer-1bwgczd, .framer-phUHj .framer-61zh8t { 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: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 37%; }\",\".framer-phUHj .framer-2bh5et-container { aspect-ratio: 0.7510917030567685 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 242px); position: relative; width: 100%; }\",\".framer-phUHj .framer-9h1gb1 { align-content: center; align-items: center; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-phUHj .framer-19t53kr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1s9u0ft { 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: visible; padding: 0px; position: relative; width: 37%; }\",\".framer-phUHj .framer-1pabauh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: 100%; }\",\".framer-phUHj .framer-21ln93 { 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: visible; padding: 0px; position: relative; width: 40%; }\",\".framer-phUHj .framer-u6swaj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-13rozes { 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; overflow: visible; padding: 0px; position: relative; width: 96%; }\",\".framer-phUHj .framer-sd59u9, .framer-phUHj .framer-1qf8pf5 { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-phUHj .framer-15lyopk { 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: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1yvzvrr, .framer-phUHj .framer-114tgll, .framer-phUHj .framer-13ul9f5 { 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: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-phUHj .framer-2jw5zb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 184px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-phUHj .framer-toj7u6, .framer-phUHj .framer-q8ygp2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 25px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-phUHj .framer-15e5j5z { aspect-ratio: 0.7482837528604119 / 1; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: var(--framer-aspect-ratio-supported, 242px); position: relative; width: 100%; }\",\".framer-phUHj .framer-1fd8xo9 { aspect-ratio: 0.7482837528604119 / 1; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 267px); position: relative; width: 1px; }\",\".framer-phUHj .framer-3lrrqn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-phUHj .framer-vbmtsf { 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: visible; padding: 0px 0px 10px 0px; position: relative; width: 80%; }\",\".framer-phUHj .framer-1y6knwn { 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; overflow: visible; padding: 0px; position: relative; width: 95%; }\",\".framer-phUHj .framer-r40ll6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 52%; }\",\".framer-phUHj .framer-8rxbrd { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1rmx7q-container { flex: none; height: 773px; position: relative; width: 100%; }\",\".framer-phUHj .framer-6i8761 { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; height: 453px; overflow: visible; position: relative; width: 403px; }\",\".framer-phUHj .framer-5mrwbj, .framer-phUHj .framer-xk5q3r, .framer-phUHj .framer-cnx00p, .framer-phUHj .framer-1fva9dx { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; height: 453px; overflow: var(--overflow-clip-fallback, clip); position: relative; width: 403px; will-change: var(--framer-will-change-override, transform); }\",\".framer-phUHj .framer-sbo71m { align-content: center; align-items: center; background-color: #c0cac9; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 17px 100px 17px; position: relative; width: 100%; }\",\".framer-phUHj .framer-18769p6 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-4lfuw8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-inuee7 { align-content: flex-start; align-items: flex-start; 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; }\",\".framer-phUHj .framer-1xy2rtz { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-phUHj .framer-1oy7qm4 { align-content: center; align-items: center; aspect-ratio: 2.1215970961887476 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: var(--framer-aspect-ratio-supported, 550px); justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-phUHj .framer-1xn28xx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-phUHj .framer-1fv70l5-container { aspect-ratio: 1.050909090909091 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 545px); position: relative; width: 1px; }\",\".framer-phUHj .framer-12aefgc { flex: none; height: 2px; left: calc(50.00000000000002% - 100% / 2); overflow: var(--overflow-clip-fallback, clip); position: absolute; top: 300px; width: 100%; z-index: 1; }\",\".framer-phUHj .framer-bblw8u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 538px; position: absolute; top: 1px; white-space: pre; width: auto; }\",\".framer-phUHj .framer-vc4zhr-container { flex: none; height: auto; position: relative; width: 100%; }\",'.framer-phUHj[data-border=\"true\"]::after, .framer-phUHj [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: 1600px) { .framer-phUHj.framer-mbku8w { width: 1600px; } .framer-phUHj .framer-ey3j9k { height: var(--framer-aspect-ratio-supported, 1510px); } .framer-phUHj .framer-u1xavu { height: var(--framer-aspect-ratio-supported, 432px); } .framer-phUHj .framer-1hlfnts { gap: 150px; } .framer-phUHj .framer-ttfu9p, .framer-phUHj .framer-bql834 { height: var(--framer-aspect-ratio-supported, 871px); } .framer-phUHj .framer-1swdgnf, .framer-phUHj .framer-1kfbqtp, .framer-phUHj .framer-1lp2dnr, .framer-phUHj .framer-r40ll6 { gap: 0px 0px; } .framer-phUHj .framer-16pciij-container { height: var(--framer-aspect-ratio-supported, 920px); } .framer-phUHj .framer-1euaxm5 { padding: 100px 0px 150px 0px; } .framer-phUHj .framer-17qbid6, .framer-phUHj .framer-1omuw6w, .framer-phUHj .framer-1dii3k2, .framer-phUHj .framer-1jitg2n, .framer-phUHj .framer-1pabauh, .framer-phUHj .framer-iq36tj { flex: 1 0 0px; width: 1px; } .framer-phUHj .framer-68n73i { height: var(--framer-aspect-ratio-supported, 798px); } .framer-phUHj .framer-9lwflr { flex-wrap: wrap; gap: 0px 0px; height: var(--framer-aspect-ratio-supported, 534px); } .framer-phUHj .framer-10mkv3q, .framer-phUHj .framer-le142v { gap: 66px; } .framer-phUHj .framer-2bh5et-container { height: var(--framer-aspect-ratio-supported, 340px); } .framer-phUHj .framer-19t53kr, .framer-phUHj .framer-3lrrqn { gap: 33px; } .framer-phUHj .framer-13rozes, .framer-phUHj .framer-1y6knwn { width: 73%; } .framer-phUHj .framer-sd59u9 { aspect-ratio: 0.750149790293589 / 1; height: var(--framer-aspect-ratio-supported, 920px); } .framer-phUHj .framer-15e5j5z { height: var(--framer-aspect-ratio-supported, 342px); } .framer-phUHj .framer-1qf8pf5 { aspect-ratio: 0.750149790293589 / 1; height: var(--framer-aspect-ratio-supported, 957px); } .framer-phUHj .framer-1rmx7q-container { height: 839px; } .framer-phUHj .framer-sbo71m { padding: 100px 17px 150px 17px; } .framer-phUHj .framer-1oy7qm4 { height: var(--framer-aspect-ratio-supported, 738px); } .framer-phUHj .framer-1fv70l5-container { height: var(--framer-aspect-ratio-supported, 736px); }}\",\"@media (min-width: 810px) and (max-width: 1199.98px) { .framer-phUHj.framer-mbku8w { width: 810px; } .framer-phUHj .framer-wsqo7 { aspect-ratio: 0.8866995073891626 / 1; height: var(--framer-aspect-ratio-supported, 5955px); } .framer-phUHj .framer-ey3j9k { aspect-ratio: unset; gap: 5px; height: min-content; justify-content: flex-start; padding: 170px 20px 0px 20px; } .framer-phUHj .framer-u1xavu { aspect-ratio: unset; height: min-content; } .framer-phUHj .framer-1hlfnts { flex-direction: column; gap: 0px; } .framer-phUHj .framer-ttfu9p, .framer-phUHj .framer-bql834, .framer-phUHj .framer-16pciij-container { height: var(--framer-aspect-ratio-supported, 433px); } .framer-phUHj .framer-jpb594 { padding: 80px; } .framer-phUHj .framer-1j8m3d3, .framer-phUHj .framer-16sr95, .framer-phUHj .framer-1nay51w, .framer-phUHj .framer-4s49k0 { order: 0; } .framer-phUHj .framer-1fcn4z { order: 3; } .framer-phUHj .framer-19p4re0 { order: 2; } .framer-phUHj .framer-rr0j54 { order: 1; } .framer-phUHj .framer-s8ane3 { padding: 0px 80px 50px 80px; } .framer-phUHj .framer-1bemj7f { gap: 30px; justify-content: flex-start; } .framer-phUHj .framer-mr45ii, .framer-phUHj .framer-61zh8t { width: 40%; } .framer-phUHj .framer-xbataa, .framer-phUHj .framer-1fvem5g { width: 80%; } .framer-phUHj .framer-1p4xyi2 { order: 0; width: 98%; } .framer-phUHj .framer-1euaxm5 { padding: 60px 0px 50px 0px; } .framer-phUHj .framer-17qbid6, .framer-phUHj .framer-1omuw6w, .framer-phUHj .framer-1dii3k2, .framer-phUHj .framer-1jitg2n, .framer-phUHj .framer-1pabauh, .framer-phUHj .framer-iq36tj { flex: 1 0 0px; width: 1px; } .framer-phUHj .framer-1n9pg9x, .framer-phUHj .framer-19luys5 { width: 65%; } .framer-phUHj .framer-1v3bc0a { padding: 200px 0px 50px 0px; } .framer-phUHj .framer-68n73i { height: var(--framer-aspect-ratio-supported, 404px); } .framer-phUHj .framer-9lwflr { height: var(--framer-aspect-ratio-supported, 271px); left: 50%; top: 29%; width: 25%; } .framer-phUHj .framer-2bh5et-container { height: var(--framer-aspect-ratio-supported, 146px); } .framer-phUHj .framer-12eoc52 { padding: 0px 30px 50px 30px; } .framer-phUHj .framer-le142v { gap: 30px; } .framer-phUHj .framer-15e5j5z { height: var(--framer-aspect-ratio-supported, 201px); } .framer-phUHj .framer-1y6knwn { width: 100%; } .framer-phUHj .framer-1rmx7q-container { height: 651px; } .framer-phUHj .framer-18769p6 { gap: 33px; } .framer-phUHj .framer-inuee7 { align-content: center; align-items: center; flex-direction: row; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); } .framer-phUHj .framer-1xy2rtz { align-content: center; align-items: center; flex-direction: row; gap: 10px; justify-content: flex-end; } .framer-phUHj .framer-1oy7qm4 { height: var(--framer-aspect-ratio-supported, 385px); } .framer-phUHj .framer-1fv70l5-container { aspect-ratio: unset; height: auto; } .framer-phUHj .framer-12aefgc { top: 200px; }}\",\"@media (max-width: 809.98px) { .framer-phUHj.framer-mbku8w { background-color: unset; width: 390px; } .framer-phUHj .framer-wsqo7 { background-color: #f1f1f1; } .framer-phUHj .framer-ey3j9k { aspect-ratio: unset; gap: 35px; height: min-content; padding: 170px 10px 25px 10px; } .framer-phUHj .framer-u1xavu, .framer-phUHj .framer-1oy7qm4 { aspect-ratio: unset; height: min-content; } .framer-phUHj .framer-1wyqqyi-container, .framer-phUHj .framer-1fvem5g, .framer-phUHj .framer-1n9pg9x, .framer-phUHj .framer-19luys5, .framer-phUHj .framer-13rozes, .framer-phUHj .framer-1m9zb8n-container, .framer-phUHj .framer-1y6knwn, .framer-phUHj .framer-vvl379-container { width: 100%; } .framer-phUHj .framer-1hlfnts { flex-direction: column; gap: 20px; } .framer-phUHj .framer-u20277 { height: 160px; } .framer-phUHj .framer-ttfu9p, .framer-phUHj .framer-bql834 { height: var(--framer-aspect-ratio-supported, 208px); } .framer-phUHj .framer-jpb594 { flex-direction: column; gap: 20px; justify-content: center; padding: 0px 10px 70px 10px; } .framer-phUHj .framer-1c9jfnt { order: 1; will-change: var(--framer-will-change-effect-override, transform); } .framer-phUHj .framer-1swdgnf { order: 0; width: 100%; will-change: var(--framer-will-change-effect-override, transform); } .framer-phUHj .framer-s8ane3, .framer-phUHj .framer-1kod3ys, .framer-phUHj .framer-12eoc52 { padding: 0px 10px 50px 10px; } .framer-phUHj .framer-1bemj7f, .framer-phUHj .framer-10mkv3q, .framer-phUHj .framer-le142v { gap: 70px; justify-content: center; width: 100%; } .framer-phUHj .framer-mr45ii, .framer-phUHj .framer-1bwgczd { align-content: flex-start; align-items: flex-start; width: 100%; will-change: var(--framer-will-change-effect-override, transform); } .framer-phUHj .framer-ilk1os, .framer-phUHj .framer-1hcqucq, .framer-phUHj .framer-19t53kr, .framer-phUHj .framer-8rxbrd { will-change: var(--framer-will-change-effect-override, transform); } .framer-phUHj .framer-1euaxm5, .framer-phUHj .framer-s913p8 { padding: 60px 0px 110px 0px; } .framer-phUHj .framer-itwhkz { align-content: flex-start; align-items: flex-start; overflow: visible; padding: 0px 10px 0px 10px; will-change: var(--framer-will-change-effect-override, transform); } .framer-phUHj .framer-felq7p { align-content: flex-start; align-items: flex-start; } .framer-phUHj .framer-1fhobfz { width: 75%; } .framer-phUHj .framer-17qbid6 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-phUHj .framer-1v3bc0a { padding: 100px 0px 50px 0px; } .framer-phUHj .framer-68n73i { aspect-ratio: unset; height: 260px; } .framer-phUHj .framer-9lwflr { bottom: 230px; height: var(--framer-aspect-ratio-supported, 193px); top: unset; transform: translateX(-50%); width: 37%; } .framer-phUHj .framer-wwk8tg { padding: 20px 0px 0px 0px; } .framer-phUHj .framer-1icp6kr { gap: 0px; will-change: var(--framer-will-change-effect-override, transform); } .framer-phUHj .framer-1meff2d { gap: 28px; } .framer-phUHj .framer-1kcyy0k { width: 20%; } .framer-phUHj .framer-1omuw6w { flex: 1 0 0px; width: 1px; } .framer-phUHj .framer-65w65j { width: 15%; } .framer-phUHj .framer-1nay51w { width: 96%; } .framer-phUHj .framer-2bh5et-container { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 240px); width: 1px; } .framer-phUHj .framer-1bazlo0 { padding: 60px 0px 50px 0px; } .framer-phUHj .framer-2jw5zb, .framer-phUHj .framer-toj7u6, .framer-phUHj .framer-q8ygp2 { min-height: unset; } .framer-phUHj .framer-61zh8t { align-content: flex-start; align-items: flex-start; padding: 60px 0px 0px 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); } .framer-phUHj .framer-15e5j5z { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 241px); width: 1px; } .framer-phUHj .framer-1fd8xo9 { height: var(--framer-aspect-ratio-supported, 241px); } .framer-phUHj .framer-j97y5x { padding: 60px 0px 60px 0px; } .framer-phUHj .framer-1rmx7q-container { aspect-ratio: 0.7358490566037735 / 1; height: var(--framer-aspect-ratio-supported, 272px); } .framer-phUHj .framer-sbo71m { gap: 0px; padding: 60px 10px 50px 10px; } .framer-phUHj .framer-18769p6 { gap: 33px; } .framer-phUHj .framer-4lfuw8 { align-content: flex-end; align-items: flex-end; } .framer-phUHj .framer-inuee7 { flex: 1.5 0 0px; } .framer-phUHj .framer-1xn28xx { flex: none; flex-direction: column; height: min-content; width: 100%; } .framer-phUHj .framer-1fv70l5-container { aspect-ratio: unset; flex: none; height: auto; width: 100%; } .framer-phUHj .framer-12aefgc { top: 200px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7637\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WVo94nIJ5\":{\"layout\":[\"fixed\",\"auto\"]},\"tQPmnZstc\":{\"layout\":[\"fixed\",\"auto\"]},\"zBrXEgxPn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"UQEYIaNIh\":{\"pattern\":\":UQEYIaNIh\",\"name\":\"nav-trigger\"},\"OWXt1H9Jy\":{\"pattern\":\":OWXt1H9Jy\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramervKctiIGyU=withCSS(Component,css,\"framer-phUHj\");export default FramervKctiIGyU;FramervKctiIGyU.displayName=\"Ora-Projects\";FramervKctiIGyU.defaultProps={height:7637,width:1200};addFonts(FramervKctiIGyU,[{explicitInter:true,fonts:[{cssFamilyName:\"Formula Condensed Bold\",source:\"custom\",uiFamilyName:\"Formula Condensed Bold\",url:\"https://framerusercontent.com/assets/4HTo7pUwCFDIYSJspcYmauC3H8.woff2\"},{cssFamilyName:\"Haas Grot Disp Trial 45 Light\",source:\"custom\",uiFamilyName:\"Haas Grot Disp Trial 45 Light\",url:\"https://framerusercontent.com/assets/bLA1s7zZ3baKYNAYtINcMRRCilU.woff2\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"}]},...TransitionLogoFonts,...PagePreloaderProFonts,...ScrollbarHiderFonts,...Twice_navigationFonts,...CmsTitleFonts,...TextTickerFonts,...VideoFonts,...NumberCounterFonts,...CreditsComponentFonts,...SlideshowFonts,...ContactButtonFonts,...OraProjectGridCardFonts,...Twice_footerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervKctiIGyU\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7637\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"UQEYIaNIh\\\":{\\\"pattern\\\":\\\":UQEYIaNIh\\\",\\\"name\\\":\\\"nav-trigger\\\"},\\\"OWXt1H9Jy\\\":{\\\"pattern\\\":\\\":OWXt1H9Jy\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WVo94nIJ5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tQPmnZstc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zBrXEgxPn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}