{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/0OpLc4UI3t7D5080CwFo/SocialShare.js", "ssg:https://framerusercontent.com/modules/4DofsMd6ZBvNSoPGqHu2/CuABkvyXth79JkDzQnYC/d0EkMgTfX.js", "ssg:https://framerusercontent.com/modules/4xvZpJB7YGFSgjexWIyE/twLVKVZ3Cziuyeup07DZ/YZt9N8aA0.js", "ssg:https://framerusercontent.com/modules/8LybCV9bfJGS8k5P9vME/tyIlPW3fgOkkadOZk5aX/VPmb6b0jo.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType,Color}from\"framer\";const BRAND_COLORS={facebook:\"#0866FF\",twitter:\"#000\",linkedIn:\"#0A66C2\",reddit:\"#FF4500\",pinterest:\"#BD081C\",whatsApp:\"#25D366\",email:\"#000\",copyUrl:\"#000\"};export const PLATFORM_NAMES=[\"Facebook\",\"Twitter / X\",\"LinkedIn\",\"Reddit\",\"Pinterest\",\"WhatsApp\",\"Email\",\"Copy URL\"];/**\n * @framerDisableUnlink\n */export default function SocialShare(props){const{type,colors,iconSize,border}=props;const[shareUrl,setShareUrl]=useState(props.shareLink==\"url\"?props.shareUrl:\"\");const encodedUrl=encodeURIComponent(shareUrl);const borderRadius=props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`;useEffect(()=>{if(props.shareLink==\"currentPage\"){setShareUrl(window.location.href);}},[]);let linkUrl=\"\";switch(type){case\"facebook\":linkUrl=`https://www.facebook.com/sharer/sharer.php?u=${encodedUrl}`;break;case\"twitter\":linkUrl=`https://twitter.com/share?url=${encodedUrl}`;break;case\"linkedIn\":linkUrl=`https://www.linkedin.com/sharing/share-offsite/?url=${encodedUrl}`;break;case\"reddit\":linkUrl=`https://www.reddit.com/submit?url=${encodedUrl}`;break;case\"pinterest\":linkUrl=`https://pinterest.com/pin/create/link/?url=${encodedUrl}`;break;case\"whatsApp\":linkUrl=`https://wa.me/?text=${encodedUrl}`;break;case\"email\":linkUrl=`mailto:?body=${encodedUrl}`;break;}const copyToClipboard=()=>{navigator.clipboard.writeText(shareUrl).then(()=>{alert(\"URL copied to clipboard!\");}).catch(err=>{alert(\"Failed to copy URL\");});};return /*#__PURE__*/_jsxs(\"a\",{\"data-superfields\":true,href:linkUrl.length?linkUrl:undefined,target:props.newTab?\"_blank\":\"_self\",rel:props.newTab?\"noopener noreferrer\":undefined,\"aria-label\":PLATFORM_NAMES[type],onClick:type==\"copyUrl\"&&copyToClipboard,style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:colors.fillColorType==\"custom\"?colors.fillColor:Color.toString(Color.alpha(Color(BRAND_COLORS[type]),colors.fillOpacity)),borderRadius:borderRadius,padding:props.paddingIsMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.padding}px`,cursor:\"pointer\",...props.style},children:[/*#__PURE__*/_jsx(SocialIcon,{type:type,size:iconSize,color:colors.iconColorType==\"custom\"?colors.iconColor:BRAND_COLORS[type],customIcon:props.customIcon}),border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.colorType==\"custom\"?border.color:BRAND_COLORS[type],borderRadius:borderRadius,pointerEvents:\"none\"}})]});}SocialShare.displayName=\"Social Share\";addPropertyControls(SocialShare,{shareLink:{type:ControlType.Enum,defaultValue:\"currentPage\",options:[\"currentPage\",\"url\"],optionTitles:[\"Current Page\",\"Custom URL\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},shareUrl:{type:ControlType.String,defaultValue:\"\",placeholder:\"https://example.com\",title:\"URL\",preventLocalization:true,hidden:props=>props.shareLink!=\"url\"},type:{type:ControlType.Enum,defaultValue:\"facebook\",options:[\"facebook\",\"twitter\",\"linkedIn\",\"reddit\",\"pinterest\",\"whatsApp\",\"email\",\"copyUrl\"],optionTitles:PLATFORM_NAMES,title:\"Platform\"},newTab:{type:ControlType.Boolean,defaultValue:true},colors:{type:ControlType.Object,buttonTitle:\"Icon & Fill\",controls:{iconColorType:{type:ControlType.Enum,defaultValue:\"custom\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Icon Color\"},iconColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.iconColorType!=\"custom\",title:\" \"},fillColorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Fill\"},fillColor:{type:ControlType.Color,defaultValue:\"#000\",optional:true,hidden:props=>props.fillColorType!=\"custom\",title:\" \"},fillOpacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01,hidden:props=>props.fillColorType!=\"brand\"}}},iconSize:{type:ControlType.Number,defaultValue:24,min:1,step:1},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},padding:{type:ControlType.FusedNumber,defaultValue:12,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},border:{type:ControlType.Object,optional:true,controls:{colorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Color\"},color:{type:ControlType.Color,defaultValue:\"#FFF\",title:\" \",hidden:props=>props.colorType!=\"custom\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},customIcon:{type:ControlType.Object,optional:true,buttonTitle:\"Icon\",controls:{type:{type:ControlType.Enum,defaultValue:\"svg\",options:[\"svg\",\"image\"],optionTitles:[\"SVG\",\"Image\"],displaySegmentedControl:true},svg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"SVG\",preventLocalization:true,hidden:props=>props.type!=\"svg\"},image:{type:ControlType.ResponsiveImage,hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"cover\",\"contain\",\"fill\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}}}});function SocialIcon(props){const{size,color,customIcon}=props;const contents=[];let fill=true;let stroke=false;if(customIcon){if(customIcon.type==\"svg\"){return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"superfields-social-share-icon\",style:{width:size,height:size,opacity:customIcon.opacity,color:color,pointerEvents:\"none\"},dangerouslySetInnerHTML:customIcon.type==\"svg\"?{__html:customIcon.svg.replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}:undefined}),customIcon?.type==\"svg\"&&/*#__PURE__*/_jsx(\"style\",{children:`.superfields-social-share-icon svg { display: block; }`})]});}else if(customIcon.type==\"image\"){return /*#__PURE__*/_jsx(\"img\",{src:customIcon.image?.src,alt:customIcon.image?.alt,style:{display:\"block\",width:size,height:size,opacity:customIcon.opacity,color:color,objectFit:customIcon.sizing,objectPosition:\"center\",pointerEvents:\"none\"}});}}switch(props.type){case\"facebook\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z\"}));break;case\"twitter\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z\"}));break;case\"linkedIn\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z\"}));break;case\"reddit\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm5.01 4.744c.688 0 1.25.561 1.25 1.249a1.25 1.25 0 0 1-2.498.056l-2.597-.547-.8 3.747c1.824.07 3.48.632 4.674 1.488.308-.309.73-.491 1.207-.491.968 0 1.754.786 1.754 1.754 0 .716-.435 1.333-1.01 1.614a3.111 3.111 0 0 1 .042.52c0 2.694-3.13 4.87-7.004 4.87-3.874 0-7.004-2.176-7.004-4.87 0-.183.015-.366.043-.534A1.748 1.748 0 0 1 4.028 12c0-.968.786-1.754 1.754-1.754.463 0 .898.196 1.207.49 1.207-.883 2.878-1.43 4.744-1.487l.885-4.182a.342.342 0 0 1 .14-.197.35.35 0 0 1 .238-.042l2.906.617a1.214 1.214 0 0 1 1.108-.701zM9.25 12C8.561 12 8 12.562 8 13.25c0 .687.561 1.248 1.25 1.248.687 0 1.248-.561 1.248-1.249 0-.688-.561-1.249-1.249-1.249zm5.5 0c-.687 0-1.248.561-1.248 1.25 0 .687.561 1.248 1.249 1.248.688 0 1.249-.561 1.249-1.249 0-.687-.562-1.249-1.25-1.249zm-5.466 3.99a.327.327 0 0 0-.231.094.33.33 0 0 0 0 .463c.842.842 2.484.913 2.961.913.477 0 2.105-.056 2.961-.913a.361.361 0 0 0 .029-.463.33.33 0 0 0-.464 0c-.547.533-1.684.73-2.512.73-.828 0-1.979-.196-2.512-.73a.326.326 0 0 0-.232-.095z\"}));break;case\"pinterest\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z\"}));break;case\"whatsApp\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z\"}));break;case\"email\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M3 7l9 6l9 -6\"}));fill=false;stroke=true;break;case\"copyUrl\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M7 7m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M4.012 16.737a2.005 2.005 0 0 1 -1.012 -1.737v-10c0 -1.1 .9 -2 2 -2h10c.75 0 1.158 .385 1.5 1\"}));fill=false;stroke=true;break;}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",color:color,\"stroke-width\":stroke?\"2\":undefined,stroke:stroke?\"currentColor\":undefined,fill:fill?\"currentColor\":\"none\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{display:\"block\"},children:contents});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SocialShare\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"PLATFORM_NAMES\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SocialShare.map", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-fveRv\";const variantClassNames={QaabnQjly:\"framer-v-1089vu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const getProps=({cl,height,id,image,width,...props})=>{return{...props,BoJ7GAx9h:image??props.BoJ7GAx9h,MVPR_VSD0:cl??props.MVPR_VSD0};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,BoJ7GAx9h,MVPR_VSD0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"QaabnQjly\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapgm97h7=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(MVPR_VSD0){const res=await MVPR_VSD0(...args);if(res===false)return false;}setVariant(\"QaabnQjly\");overlay.show();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(BoJ7GAx9h)},className:cx(scopingClassNames,\"framer-1089vu\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,id:`${layoutId}-1089vu`,layoutDependency:layoutDependency,layoutId:\"QaabnQjly\",onTap:onTapgm97h7({overlay}),ref:refBinding,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:refBinding,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1089vu`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-24tswe\",\"data-framer-name\":\"Bigoverlay\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"FIjWRg5iC\",ref:ref1,role:\"dialog\",style:{backgroundColor:\"rgba(0, 0, 0, 0.53)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ox6kop\",layoutDependency:layoutDependency,layoutId:\"fNXMrV0Af\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nbmn6l-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HRWuOolZV-container\",nodeId:\"HRWuOolZV\",rendersWithMotion:true,scopeId:\"d0EkMgTfX\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-8ba02d11-7bdf-404e-bffe-18e00520951f, rgb(250, 250, 250))\",height:\"100%\",iconSearch:\"x\",iconSelection:\"home\",id:\"HRWuOolZV\",layoutId:\"HRWuOolZV\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"940px\",...toResponsiveImage(BoJ7GAx9h),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-gnbe06\",layoutDependency:layoutDependency,layoutId:\"IK0vE3TGY\"})]})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fveRv.framer-1g9luco, .framer-fveRv .framer-1g9luco { display: block; }\",\".framer-fveRv.framer-1089vu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 300px; min-width: 380px; padding: 0px; position: relative; width: min-content; }\",\".framer-fveRv .framer-24tswe { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 423px; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 1000px; }\",\".framer-fveRv .framer-ox6kop { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fveRv .framer-1nbmn6l-container { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 63px); position: relative; width: 59px; z-index: 1; }\",\".framer-fveRv .framer-gnbe06 { flex: 1 0 0px; height: 1px; max-width: 1000px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fveRv.framer-1089vu, .framer-fveRv .framer-24tswe, .framer-fveRv .framer-ox6kop { gap: 0px; } .framer-fveRv.framer-1089vu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fveRv.framer-1089vu > :first-child, .framer-fveRv .framer-24tswe > :first-child { margin-top: 0px; } .framer-fveRv.framer-1089vu > :last-child, .framer-fveRv .framer-24tswe > :last-child { margin-bottom: 0px; } .framer-fveRv .framer-24tswe > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-fveRv .framer-ox6kop > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fveRv .framer-ox6kop > :first-child { margin-left: 0px; } .framer-fveRv .framer-ox6kop > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 300\n * @framerIntrinsicWidth 380\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"BoJ7GAx9h\":\"image\",\"MVPR_VSD0\":\"cl\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerd0EkMgTfX=withCSS(Component,css,\"framer-fveRv\");export default Framerd0EkMgTfX;Framerd0EkMgTfX.displayName=\"Image\";Framerd0EkMgTfX.defaultProps={height:300,width:380};addPropertyControls(Framerd0EkMgTfX,{BoJ7GAx9h:{description:\"\",title:\"Image\",type:ControlType.ResponsiveImage},MVPR_VSD0:{title:\"Cl\",type:ControlType.EventHandler}});addFonts(Framerd0EkMgTfX,[{explicitInter:true,fonts:[]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerd0EkMgTfX\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"380\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"300\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"BoJ7GAx9h\\\":\\\"image\\\",\\\"MVPR_VSD0\\\":\\\"cl\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./d0EkMgTfX.map", "// Generated by Framer (400c93f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Avenir Next LT Pro Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Avenir Next LT Pro Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/T2DGt8jjBN3HFZRzxm48UCU9Qs.woff2\"}]}];export const css=['.framer-AqBNB .framer-styles-preset-73q6ui:not(.rich-text-wrapper), .framer-AqBNB .framer-styles-preset-73q6ui.rich-text-wrapper h2 { --framer-font-family: \"Avenir Next LT Pro Bold\", \"Avenir Next LT Pro Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-AqBNB\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import SocialShare from\"https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/0OpLc4UI3t7D5080CwFo/SocialShare.js\";import Image1 from\"#framer/local/canvasComponent/d0EkMgTfX/d0EkMgTfX.js\";import Header from\"#framer/local/canvasComponent/o2dMPiY9D/o2dMPiY9D.js\";import Footer from\"#framer/local/canvasComponent/QTFvxtBOa/QTFvxtBOa.js\";import Portfolio,{enumToDisplayNameFunctions}from\"#framer/local/collection/OCddrPigo/OCddrPigo.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle3 from\"#framer/local/css/A1XhaMTDs/A1XhaMTDs.js\";import*as sharedStyle1 from\"#framer/local/css/d0zOqE5lg/d0zOqE5lg.js\";import*as sharedStyle6 from\"#framer/local/css/IvjjMpPas/IvjjMpPas.js\";import*as sharedStyle7 from\"#framer/local/css/LcirvQTp0/LcirvQTp0.js\";import*as sharedStyle9 from\"#framer/local/css/to4k_H10a/to4k_H10a.js\";import*as sharedStyle5 from\"#framer/local/css/uUbIEhyE1/uUbIEhyE1.js\";import*as sharedStyle2 from\"#framer/local/css/wBdOMkNuO/wBdOMkNuO.js\";import*as sharedStyle8 from\"#framer/local/css/WgQsrtalI/WgQsrtalI.js\";import*as sharedStyle4 from\"#framer/local/css/XmW5BEKpL/XmW5BEKpL.js\";import*as sharedStyle10 from\"#framer/local/css/XSefXWhFL/XSefXWhFL.js\";import*as sharedStyle from\"#framer/local/css/YZt9N8aA0/YZt9N8aA0.js\";import metadataProvider from\"#framer/local/webPageMetadata/VPmb6b0jo/VPmb6b0jo.js\";const HeaderFonts=getFonts(Header);const FeatherFonts=getFonts(Feather);const SocialShareFonts=getFonts(SocialShare);const Image1Fonts=getFonts(Image1);const FooterFonts=getFonts(Footer);const breakpoints={jhbIbBRY0:\"(max-width: 809px)\",LLmKawX_v:\"(min-width: 810px) and (max-width: 1199px)\",OPP3QSqdP:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-QQVwf\";const variantClassNames={jhbIbBRY0:\"framer-v-h9r99n\",LLmKawX_v:\"framer-v-pvut15\",OPP3QSqdP:\"framer-v-jw09d0\"};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,y:-3};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"OPP3QSqdP\",Phone:\"jhbIbBRY0\",Tablet:\"LLmKawX_v\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OPP3QSqdP\"};};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:\"VPmb6b0jo\",data:Portfolio,type:\"Collection\"},select:[{collection:\"VPmb6b0jo\",name:\"CEruH4DtH\",type:\"Identifier\"},{collection:\"VPmb6b0jo\",name:\"mbMUy9ruB\",type:\"Identifier\"},{collection:\"VPmb6b0jo\",name:\"mkYSAEATo\",type:\"Identifier\"},{collection:\"VPmb6b0jo\",name:\"PRsY66vQ2\",type:\"Identifier\"},{collection:\"VPmb6b0jo\",name:\"FeLOsFzOs\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"VPmb6b0jo\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,CEruH4DtH=getFromCurrentRouteData(\"CEruH4DtH\")??\"\",FeLOsFzOs=getFromCurrentRouteData(\"FeLOsFzOs\"),mbMUy9ruB=getFromCurrentRouteData(\"mbMUy9ruB\"),PRsY66vQ2=getFromCurrentRouteData(\"PRsY66vQ2\")??\"\",AxHGzFFQ3bYJeBOb2z,mkYSAEATo=getFromCurrentRouteData(\"mkYSAEATo\")??[],...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const textContent=enumToDisplayNameFunctions[\"FeLOsFzOs\"]?.(FeLOsFzOs,activeLocale);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"jhbIbBRY0\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"jhbIbBRY0\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"OPP3QSqdP\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-jw09d0\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhbIbBRY0:{height:70},LLmKawX_v:{height:70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2brd53-container\",nodeId:\"UjYaQx33u\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhbIbBRY0:{style:{width:\"100%\"},variant:\"nK4ZJ4QwO\"},LLmKawX_v:{style:{width:\"100%\"},variant:\"nK4ZJ4QwO\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"UjYaQx33u\",layoutId:\"UjYaQx33u\",style:{height:\"100%\",width:\"100%\"},variant:\"StPCeCMbq\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yu6dk6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ole1z8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n46xlo\",\"data-framer-name\":\"Header Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ct0vks\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-73q6ui\",\"data-styles-preset\":\"YZt9N8aA0\",children:\"D-RASATI BOOKLETS\"})}),className:\"framer-14lz9k7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:CEruH4DtH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vdv1d4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"QXZlbmlyTmV4dC1EZW1pQm9sZA==\",\"--framer-font-family\":'\"AvenirNext-DemiBold\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgba(173, 173, 173, 0.52)\"},children:\"Apps\"})}),className:\"framer-1sgfvhs\",\"data-framer-name\":\"Title\",fonts:[\"AvenirNext-DemiBold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ovTFHdAB2\"},motionChild:true,nodeId:\"d24ynKkx8\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lzg5n0 framer-rhvf6e\",whileHover:animation,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p9ltrm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NTTegOgu2\",rendersWithMotion:true,scopeId:\"VPmb6b0jo\",style:{rotate:90},children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-8ba02d11-7bdf-404e-bffe-18e00520951f, rgb(250, 250, 250))\",height:\"100%\",iconSearch:\"chevron \",iconSelection:\"home\",id:\"NTTegOgu2\",layoutId:\"NTTegOgu2\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dc46im\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z96fy7\",\"data-framer-name\":\"LEFT\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1blny9s\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-p37l72 hidden-h9r99n\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhbIbBRY0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+110+0+0+0+266.8+0+0+0+0+0+0),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px, 1300px)`,...toResponsiveImage(mbMUy9ruB),...{positionX:\"center\",positionY:\"center\"}}},LLmKawX_v:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+110+0+0+0+206.8+0+0+0+0+22),sizes:`max((min(min(${componentViewport?.width||\"100vw\"}, 1300px) - 60px, 1300px) - 40px) / 2, 1px)`,...toResponsiveImage(mbMUy9ruB),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+102+0+0+0+206.8+0+0+0+0+22),sizes:`max((min(min(${componentViewport?.width||\"100vw\"}, 1300px) - 60px, 1300px) - 40px) / 2, 1px)`,...toResponsiveImage(mbMUy9ruB),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1t422xd\",\"data-framer-name\":\"MainPortPhoto\"})})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"x4lWmRFON\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:PRsY66vQ2,className:\"framer-1oux0sh\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-7xm1q8\",code:\"framer-styles-preset-bt64jr\",h1:\"framer-styles-preset-odqy2i\",h2:\"framer-styles-preset-1piy3r8\",h3:\"framer-styles-preset-1hspkpr\",h4:\"framer-styles-preset-ax4h1n\",h5:\"framer-styles-preset-1pnbmif\",h6:\"framer-styles-preset-jcx77q\",img:\"framer-styles-preset-z66mp4\",p:\"framer-styles-preset-sox2ui\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3zv3jq hidden-h9r99n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1hspkpr\",\"data-styles-preset\":\"A1XhaMTDs\",children:\"Share Project\"})}),className:\"framer-1aijf5b\",\"data-framer-name\":\"Our\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tb61w5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-55wnjq-container\",isModuleExternal:true,nodeId:\"RRKxrxm38\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"rgb(0, 0, 0)\",fillColorType:\"brand\",fillOpacity:1,iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\"},height:\"100%\",iconSize:14,id:\"RRKxrxm38\",layoutId:\"RRKxrxm38\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"currentPage\",shareUrl:\"\",type:\"facebook\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f3wig7-container\",isModuleExternal:true,nodeId:\"W2a3UVL5y\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"rgb(0, 0, 0)\",fillColorType:\"brand\",fillOpacity:1,iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\"},height:\"100%\",iconSize:14,id:\"W2a3UVL5y\",layoutId:\"W2a3UVL5y\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"currentPage\",shareUrl:\"\",type:\"twitter\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ewi8l-container\",isModuleExternal:true,nodeId:\"ypKqgqtTT\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"rgb(0, 0, 0)\",fillColorType:\"brand\",fillOpacity:1,iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\"},height:\"100%\",iconSize:14,id:\"ypKqgqtTT\",layoutId:\"ypKqgqtTT\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"currentPage\",shareUrl:\"\",type:\"linkedIn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c9hz3s-container\",isModuleExternal:true,nodeId:\"FtEiorjTQ\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"rgb(0, 0, 0)\",fillColorType:\"brand\",fillOpacity:1,iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\"},height:\"100%\",iconSize:14,id:\"FtEiorjTQ\",layoutId:\"FtEiorjTQ\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"currentPage\",shareUrl:\"\",type:\"whatsApp\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hglkyg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k26ldc\",\"data-framer-name\":\"VertGallery\",children:mkYSAEATo?.map(({AxHGzFFQ3:AxHGzFFQ3bYJeBOb2z,id},index)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`bYJeBOb2z-${id??index}`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhbIbBRY0:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px, 1300px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:`max((min(min(${componentViewport?.width||\"100vw\"}, 1300px) - 60px, 1300px) - 40px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j2o01y-container\",nodeId:\"PBlsw1ebi\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(Image1,{BoJ7GAx9h:toResponsiveImage(AxHGzFFQ3bYJeBOb2z),height:\"100%\",id:\"PBlsw1ebi\",layoutId:\"PBlsw1ebi\",style:{width:\"100%\"},width:\"100%\"})})})})},id??index);})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-av18te hidden-jw09d0 hidden-pvut15\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1hspkpr\",\"data-styles-preset\":\"A1XhaMTDs\",children:\"Share Project\"})}),className:\"framer-4iefce\",\"data-framer-name\":\"Our\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-888lf9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zt95ni-container\",isModuleExternal:true,nodeId:\"KbD9RgS8l\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"rgb(0, 0, 0)\",fillColorType:\"brand\",fillOpacity:1,iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\"},height:\"100%\",iconSize:21,id:\"KbD9RgS8l\",layoutId:\"KbD9RgS8l\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"currentPage\",shareUrl:\"\",type:\"facebook\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-szqna4-container\",isModuleExternal:true,nodeId:\"Wv6Ke2uIr\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"rgb(0, 0, 0)\",fillColorType:\"brand\",fillOpacity:1,iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\"},height:\"100%\",iconSize:21,id:\"Wv6Ke2uIr\",layoutId:\"Wv6Ke2uIr\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"currentPage\",shareUrl:\"\",type:\"twitter\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ylu2k2-container\",isModuleExternal:true,nodeId:\"S2lJlYz3X\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"rgb(0, 0, 0)\",fillColorType:\"brand\",fillOpacity:1,iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\"},height:\"100%\",iconSize:21,id:\"S2lJlYz3X\",layoutId:\"S2lJlYz3X\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"currentPage\",shareUrl:\"\",type:\"linkedIn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ug0p0i-container\",isModuleExternal:true,nodeId:\"QwG0XPE95\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"rgb(0, 0, 0)\",fillColorType:\"brand\",fillOpacity:1,iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\"},height:\"100%\",iconSize:21,id:\"QwG0XPE95\",layoutId:\"QwG0XPE95\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"currentPage\",shareUrl:\"\",type:\"whatsApp\",width:\"100%\"})})})]})]})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhbIbBRY0:{y:(componentViewport?.y||0)+0+1094.4},LLmKawX_v:{y:(componentViewport?.y||0)+0+977.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:362,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1175.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ebolnz-container\",nodeId:\"HZQGh3puT\",scopeId:\"VPmb6b0jo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhbIbBRY0:{variant:\"sDJeRHXhH\"},LLmKawX_v:{variant:\"kPoI9qXX0\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"HZQGh3puT\",layoutId:\"HZQGh3puT\",style:{width:\"100%\"},variant:\"y40btEeCi\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QQVwf.framer-rhvf6e, .framer-QQVwf .framer-rhvf6e { display: block; }\",\".framer-QQVwf.framer-jw09d0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-QQVwf .framer-2brd53-container { flex: none; height: 62px; position: relative; width: 100%; }\",\".framer-QQVwf .framer-yu6dk6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-QQVwf .framer-1ole1z8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QQVwf .framer-n46xlo { align-content: center; align-items: center; background-color: var(--token-8ba02d11-7bdf-404e-bffe-18e00520951f, #fafafa); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-QQVwf .framer-1ct0vks, .framer-QQVwf .framer-1blny9s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QQVwf .framer-14lz9k7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QQVwf .framer-1vdv1d4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QQVwf .framer-1sgfvhs { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QQVwf .framer-1lzg5n0 { align-content: center; align-items: center; background-color: var(--token-e059caf2-a2f5-48d5-9bb2-6087e7b3f090, #fa76f7); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 20px; min-height: 44px; overflow: hidden; padding: 22px; position: absolute; text-decoration: none; top: 20px; width: 44px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-QQVwf .framer-1p9ltrm-container { flex: none; height: 26px; left: calc(48.14814814814817% - 29px / 2); position: absolute; top: calc(50.00000000000002% - 26px / 2); width: 29px; z-index: 1; }\",\".framer-QQVwf .framer-dc46im { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QQVwf .framer-z96fy7 { 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: hidden; padding: 0px; position: sticky; top: 0px; width: 1px; z-index: 1; }\",\".framer-QQVwf .framer-p37l72 { background-color: #ffffff; flex: none; height: 12px; overflow: hidden; position: relative; width: 94px; }\",\".framer-QQVwf .framer-1t422xd { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 469px; position: relative; width: 100%; }\",\".framer-QQVwf .framer-1oux0sh { --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-QQVwf .framer-3zv3jq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QQVwf .framer-1aijf5b, .framer-QQVwf .framer-4iefce { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QQVwf .framer-tb61w5, .framer-QQVwf .framer-888lf9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QQVwf .framer-55wnjq-container, .framer-QQVwf .framer-f3wig7-container, .framer-QQVwf .framer-10ewi8l-container, .framer-QQVwf .framer-1c9hz3s-container, .framer-QQVwf .framer-zt95ni-container, .framer-QQVwf .framer-szqna4-container, .framer-QQVwf .framer-ylu2k2-container, .framer-QQVwf .framer-ug0p0i-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-QQVwf .framer-1hglkyg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QQVwf .framer-1k26ldc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-QQVwf .framer-j2o01y-container, .framer-QQVwf .framer-1ebolnz-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-QQVwf .framer-av18te { 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: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QQVwf.framer-jw09d0, .framer-QQVwf .framer-yu6dk6, .framer-QQVwf .framer-1ole1z8, .framer-QQVwf .framer-n46xlo, .framer-QQVwf .framer-1ct0vks, .framer-QQVwf .framer-1vdv1d4, .framer-QQVwf .framer-1lzg5n0, .framer-QQVwf .framer-dc46im, .framer-QQVwf .framer-z96fy7, .framer-QQVwf .framer-1blny9s, .framer-QQVwf .framer-3zv3jq, .framer-QQVwf .framer-tb61w5, .framer-QQVwf .framer-1hglkyg, .framer-QQVwf .framer-1k26ldc, .framer-QQVwf .framer-av18te, .framer-QQVwf .framer-888lf9 { gap: 0px; } .framer-QQVwf.framer-jw09d0 > *, .framer-QQVwf .framer-1ole1z8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-QQVwf.framer-jw09d0 > :first-child, .framer-QQVwf .framer-yu6dk6 > :first-child, .framer-QQVwf .framer-1ole1z8 > :first-child, .framer-QQVwf .framer-n46xlo > :first-child, .framer-QQVwf .framer-1ct0vks > :first-child, .framer-QQVwf .framer-z96fy7 > :first-child, .framer-QQVwf .framer-1blny9s > :first-child, .framer-QQVwf .framer-1hglkyg > :first-child, .framer-QQVwf .framer-1k26ldc > :first-child, .framer-QQVwf .framer-av18te > :first-child { margin-top: 0px; } .framer-QQVwf.framer-jw09d0 > :last-child, .framer-QQVwf .framer-yu6dk6 > :last-child, .framer-QQVwf .framer-1ole1z8 > :last-child, .framer-QQVwf .framer-n46xlo > :last-child, .framer-QQVwf .framer-1ct0vks > :last-child, .framer-QQVwf .framer-z96fy7 > :last-child, .framer-QQVwf .framer-1blny9s > :last-child, .framer-QQVwf .framer-1hglkyg > :last-child, .framer-QQVwf .framer-1k26ldc > :last-child, .framer-QQVwf .framer-av18te > :last-child { margin-bottom: 0px; } .framer-QQVwf .framer-yu6dk6 > *, .framer-QQVwf .framer-1ct0vks > *, .framer-QQVwf .framer-1blny9s > *, .framer-QQVwf .framer-1hglkyg > *, .framer-QQVwf .framer-1k26ldc > *, .framer-QQVwf .framer-av18te > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QQVwf .framer-n46xlo > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-QQVwf .framer-1vdv1d4 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-QQVwf .framer-1vdv1d4 > :first-child, .framer-QQVwf .framer-1lzg5n0 > :first-child, .framer-QQVwf .framer-dc46im > :first-child, .framer-QQVwf .framer-3zv3jq > :first-child, .framer-QQVwf .framer-tb61w5 > :first-child, .framer-QQVwf .framer-888lf9 > :first-child { margin-left: 0px; } .framer-QQVwf .framer-1vdv1d4 > :last-child, .framer-QQVwf .framer-1lzg5n0 > :last-child, .framer-QQVwf .framer-dc46im > :last-child, .framer-QQVwf .framer-3zv3jq > :last-child, .framer-QQVwf .framer-tb61w5 > :last-child, .framer-QQVwf .framer-888lf9 > :last-child { margin-right: 0px; } .framer-QQVwf .framer-1lzg5n0 > *, .framer-QQVwf .framer-3zv3jq > *, .framer-QQVwf .framer-tb61w5 > *, .framer-QQVwf .framer-888lf9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QQVwf .framer-dc46im > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-QQVwf .framer-z96fy7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-QQVwf.framer-jw09d0 { width: 810px; } .framer-QQVwf .framer-2brd53-container { height: auto; } .framer-QQVwf .framer-1t422xd { height: 263px; }}\",\"@media (max-width: 809px) { .framer-QQVwf.framer-jw09d0 { width: 390px; } .framer-QQVwf .framer-2brd53-container { height: auto; z-index: 4; } .framer-QQVwf .framer-yu6dk6 { padding: 0px 20px 0px 20px; z-index: 0; } .framer-QQVwf .framer-n46xlo { padding: 100px 20px 40px 20px; } .framer-QQVwf .framer-dc46im { flex-direction: column; } .framer-QQVwf .framer-z96fy7 { flex: none; position: relative; top: unset; width: 100%; } .framer-QQVwf .framer-1t422xd { height: 230px; } .framer-QQVwf .framer-1hglkyg { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QQVwf .framer-dc46im { gap: 0px; } .framer-QQVwf .framer-dc46im > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-QQVwf .framer-dc46im > :first-child { margin-top: 0px; } .framer-QQVwf .framer-dc46im > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3286\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LLmKawX_v\":{\"layout\":[\"fixed\",\"auto\"]},\"jhbIbBRY0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerVPmb6b0jo=withCSS(Component,css,\"framer-QQVwf\");export default FramerVPmb6b0jo;FramerVPmb6b0jo.displayName=\"Portfolio\";FramerVPmb6b0jo.defaultProps={height:3286,width:1200};addFonts(FramerVPmb6b0jo,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...HeaderFonts,...FeatherFonts,...SocialShareFonts,...Image1Fonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...componentPresets.fonts?.[\"x4lWmRFON\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"x4lWmRFON\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVPmb6b0jo\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LLmKawX_v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jhbIbBRY0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"3286\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["BRAND_COLORS", "PLATFORM_NAMES", "SocialShare", "props", "type", "colors", "iconSize", "border", "shareUrl", "setShareUrl", "ye", "encodedUrl", "borderRadius", "ue", "window", "linkUrl", "copyToClipboard", "navigator", "err", "u", "Color", "p", "SocialIcon", "addPropertyControls", "ControlType", "size", "color", "customIcon", "contents", "fill", "stroke", "l", "FeatherFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "animation1", "animation2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "motion", "x", "getProps", "cl", "height", "id", "image", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "BoJ7GAx9h", "MVPR_VSD0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapgm97h7", "overlay", "loadMore", "args", "onClick1wnntms", "scopingClassNames", "cx", "serializationHash", "ref1", "LayoutGroup", "l", "Image2", "getLoadingLazyAtYPosition", "AnimatePresence", "Floating", "u", "MotionDivWithFX", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "css", "Framerd0EkMgTfX", "withCSS", "d0EkMgTfX_default", "addPropertyControls", "ControlType", "addFonts", "FeatherFonts", "fontStore", "fonts", "css", "className", "HeaderFonts", "getFonts", "o2dMPiY9D_default", "FeatherFonts", "Icon", "SocialShareFonts", "SocialShare", "Image1Fonts", "d0EkMgTfX_default", "FooterFonts", "QTFvxtBOa_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "toResponsiveImage", "value", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "OCddrPigo_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "CEruH4DtH", "FeLOsFzOs", "mbMUy9ruB", "PRsY66vQ2", "AxHGzFFQ3bYJeBOb2z", "mkYSAEATo", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "textContent", "enumToDisplayNameFunctions", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText2", "x", "Link", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "index", "css", "FramerVPmb6b0jo", "withCSS", "VPmb6b0jo_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
