tabexseriescomponents 0.2.1369 → 0.2.1371
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +56 -10
- package/dist/index.esm.js +56 -10
- package/dist/index.umd.js +56 -10
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -77386,6 +77386,7 @@ var TableSection = function TableSection(props) {
|
|
|
77386
77386
|
function ownKeys$12(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
77387
77387
|
function _objectSpread$12(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$12(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$12(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
77388
77388
|
var MarqueeSection = function MarqueeSection(props) {
|
|
77389
|
+
var _authdetailsContext$i, _authdetailsContext$i4;
|
|
77389
77390
|
var _useState = React.useState(''),
|
|
77390
77391
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
77391
77392
|
sectionproperties = _useState2[0],
|
|
@@ -77484,6 +77485,19 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
77484
77485
|
}
|
|
77485
77486
|
}, [sectionproperties]);
|
|
77486
77487
|
if (!visible) return null;
|
|
77488
|
+
var marqueeRef = React.useRef(null);
|
|
77489
|
+
React.useEffect(function () {
|
|
77490
|
+
if (!marqueeRef.current) return;
|
|
77491
|
+
var updateWidth = function updateWidth() {
|
|
77492
|
+
var firstSetWidth = marqueeRef.current.scrollWidth / 2;
|
|
77493
|
+
marqueeRef.current.style.setProperty('--marquee-width', "-".concat(firstSetWidth, "px"));
|
|
77494
|
+
};
|
|
77495
|
+
updateWidth();
|
|
77496
|
+
window.addEventListener('resize', updateWidth);
|
|
77497
|
+
return function () {
|
|
77498
|
+
window.removeEventListener('resize', updateWidth);
|
|
77499
|
+
};
|
|
77500
|
+
}, [cardsarray]);
|
|
77487
77501
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77488
77502
|
"class": section_styles.container + ' row ml-0 mr-0 d-flex justify-content-between w-100 align-items-center '
|
|
77489
77503
|
// data-aos={'fade-up'}
|
|
@@ -77494,13 +77508,13 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
77494
77508
|
borderLeft: sectionproperties.borderverticalwidth + 'px solid ' + sectionproperties.sectioncardbordercolor,
|
|
77495
77509
|
borderRight: sectionproperties.borderverticalwidth + 'px solid ' + sectionproperties.sectioncardbordercolor
|
|
77496
77510
|
}
|
|
77497
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77511
|
+
}, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.contactinfo.instid) != '6a0e0bcb82d2d' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77498
77512
|
"class": "rotating-text-container rotating-text-containermarqueesection"
|
|
77499
77513
|
}, /*#__PURE__*/React__default["default"].createElement("span", {
|
|
77500
77514
|
"class": sectionproperties.marqueemovementdirection == 'Right to Left' ? 'd-flex flex-row align-items-center rotating-text2' : 'd-flex flex-row align-items-center rotating-text-reverse2',
|
|
77501
77515
|
style: {}
|
|
77502
77516
|
}, [].concat(_toConsumableArray__default["default"](cardsarray), _toConsumableArray__default["default"](cardsarray)).map(function (cardinfoitem, cardinfoindex) {
|
|
77503
|
-
var _authdetailsContext$
|
|
77517
|
+
var _authdetailsContext$i2;
|
|
77504
77518
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77505
77519
|
"class": section_styles.marqueeimagecontainer + ' ',
|
|
77506
77520
|
style: {
|
|
@@ -77522,15 +77536,51 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
77522
77536
|
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
77523
77537
|
"class": section_styles.textstyle + ' mb-0 p-0 ',
|
|
77524
77538
|
style: {
|
|
77525
|
-
cursor: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
77539
|
+
cursor: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i2 = authdetailsContext.instinfo) === null || _authdetailsContext$i2 === void 0 ? void 0 : _authdetailsContext$i2.contactinfo.instid) == '691dcd6e974bb' ? 'pointer' : ''
|
|
77526
77540
|
},
|
|
77527
77541
|
onClick: function onClick() {
|
|
77528
|
-
var _authdetailsContext$
|
|
77529
|
-
if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
77542
|
+
var _authdetailsContext$i3;
|
|
77543
|
+
if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i3 = authdetailsContext.instinfo) === null || _authdetailsContext$i3 === void 0 ? void 0 : _authdetailsContext$i3.contactinfo.instid) == '691dcd6e974bb') {
|
|
77530
77544
|
window.open('https://www.instagram.com', '_blank');
|
|
77531
77545
|
}
|
|
77532
77546
|
}
|
|
77533
77547
|
}, langdetect == 'en' ? cardinfoitem.arraytitleen : cardinfoitem.arraytitlear));
|
|
77548
|
+
}))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i4 = authdetailsContext.instinfo) === null || _authdetailsContext$i4 === void 0 ? void 0 : _authdetailsContext$i4.contactinfo.instid) == '6a0e0bcb82d2d' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77549
|
+
className: "rotating-text-containersd rotating-text-containermarqueesection"
|
|
77550
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77551
|
+
ref: marqueeRef,
|
|
77552
|
+
className: sectionproperties.marqueemovementdirection === 'Right to Left' ? 'rotating-text2sd' : 'rotating-text-reverse2sd'
|
|
77553
|
+
}, [].concat(_toConsumableArray__default["default"](cardsarray), _toConsumableArray__default["default"](cardsarray)).map(function (cardinfoitem, cardinfoindex) {
|
|
77554
|
+
var _authdetailsContext$i5;
|
|
77555
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77556
|
+
key: cardinfoindex,
|
|
77557
|
+
className: section_styles.marqueeimagecontainer,
|
|
77558
|
+
style: {
|
|
77559
|
+
textAlign: 'center',
|
|
77560
|
+
alignItems: 'center',
|
|
77561
|
+
alignContent: 'center'
|
|
77562
|
+
}
|
|
77563
|
+
}, cardinfoitem.marqueeimage != null && /*#__PURE__*/React__default["default"].createElement(Imagekitimagecomp, {
|
|
77564
|
+
"class": section_styles.marqueeimage,
|
|
77565
|
+
urlEndpoint: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimageendpoint,
|
|
77566
|
+
publicKey: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimagepublickey,
|
|
77567
|
+
path: '/tr:w-' + sectionproperties.imagetr_w + ',h-' + sectionproperties.imagetr_h + '/' + cardinfoitem.marqueeimage,
|
|
77568
|
+
style: {
|
|
77569
|
+
objectFit: sectionproperties.bgcovercontain === 'Contain' ? 'contain' : 'cover',
|
|
77570
|
+
borderRadius: sectionproperties.imageborderradius + 'px'
|
|
77571
|
+
}
|
|
77572
|
+
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
77573
|
+
className: section_styles.textstyle + ' mb-0 p-0',
|
|
77574
|
+
style: {
|
|
77575
|
+
cursor: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i5 = authdetailsContext.instinfo) === null || _authdetailsContext$i5 === void 0 || (_authdetailsContext$i5 = _authdetailsContext$i5.contactinfo) === null || _authdetailsContext$i5 === void 0 ? void 0 : _authdetailsContext$i5.instid) === '691dcd6e974bb' ? 'pointer' : ''
|
|
77576
|
+
},
|
|
77577
|
+
onClick: function onClick() {
|
|
77578
|
+
var _authdetailsContext$i6;
|
|
77579
|
+
if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i6 = authdetailsContext.instinfo) === null || _authdetailsContext$i6 === void 0 || (_authdetailsContext$i6 = _authdetailsContext$i6.contactinfo) === null || _authdetailsContext$i6 === void 0 ? void 0 : _authdetailsContext$i6.instid) === '691dcd6e974bb') {
|
|
77580
|
+
window.open('https://www.instagram.com', '_blank');
|
|
77581
|
+
}
|
|
77582
|
+
}
|
|
77583
|
+
}, langdetect === 'en' ? cardinfoitem.arraytitleen : cardinfoitem.arraytitlear));
|
|
77534
77584
|
}))));
|
|
77535
77585
|
};
|
|
77536
77586
|
|
|
@@ -78726,11 +78776,7 @@ paddingTop:sectionproperties.paddingTop,// paddingBottom: sectionproperties.sect
|
|
|
78726
78776
|
paddingBottom:sectionproperties.paddingBottom,'@media (max-width: 800px)':{paddingTop:sectionproperties.paddingverticalresponsive+'px',paddingBottom:sectionproperties.paddingverticalresponsive+'px'}}),btn:glamor.css({width:sectionproperties.generalbtn_width+'px',height:sectionproperties.generalbtn_height+'px',backgroundColor:sectionproperties.generalbtn_bgColor,color:sectionproperties.generalbtn_textColor,borderTopLeftRadius:langdetect=='en'?sectionproperties.generalbtn_bordertopleftradius+'px':sectionproperties.generalbtn_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.generalbtn_bordertoprightradius+'px':sectionproperties.generalbtn_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomleftradius+'px':sectionproperties.generalbtn_borderbottomrightradius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomrightradius+'px':sectionproperties.generalbtn_borderbottomleftradius+'px',border:sectionproperties.generalbtn_borderwidth+'px solid '+sectionproperties.generalbtn_bordercolor,fontSize:sectionproperties.generalbtn_fontsize+'px',fontWeight:sectionproperties.generalbtn_fontweight,marginTop:sectionproperties.generalbtn_marginTop+'px',marginBottom:sectionproperties.generalbtn_marginBottom+'px',transition:'.3s',cursor:'pointer',// here..
|
|
78727
78777
|
boxShadow:sectionproperties.slideshow_btn_text_chin=='get'?'0 0 10px #858484':'none',':hover':{backgroundColor:sectionproperties.generalbtn_bgColoronhover,color:sectionproperties.generalbtn_textColoronhover}}),btn2:glamor.css({width:sectionproperties.generalbtn_width+'px',height:sectionproperties.generalbtn_height+'px',backgroundColor:sectionproperties.generalbtn_textColor,color:sectionproperties.generalbtn_bgColor,borderTopLeftRadius:langdetect=='en'?sectionproperties.generalbtn_bordertopleftradius+'px':sectionproperties.generalbtn_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.generalbtn_bordertoprightradius+'px':sectionproperties.generalbtn_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomleftradius+'px':sectionproperties.generalbtn_borderbottomrightradius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomrightradius+'px':sectionproperties.generalbtn_borderbottomleftradius+'px',border:'1px solid '+sectionproperties.generalbtn_bgColor,fontSize:sectionproperties.generalbtn_fontsize+'px',fontWeight:sectionproperties.generalbtn_fontweight,marginTop:sectionproperties.generalbtn_marginTop+'px',marginBottom:sectionproperties.generalbtn_marginBottom+'px',transition:'.3s',cursor:'pointer',// here..
|
|
78728
78778
|
boxShadow:sectionproperties.slideshow_btn_text_chin=='get'?'0 0 10px #858484':'none',':hover':{backgroundColor:sectionproperties.generalbtn_bgColor,color:sectionproperties.generalbtn_textColor}}),sectiontitlespan:glamor.css({paddingLeft:sectionproperties.sectiontitleborderradius==0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,paddingRight:sectionproperties.sectiontitleborderradius==0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0,':after':{position:'absolute',bottom:0,right:langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':'',left:langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':'',content:'s',fontSize:'0',height:'3px',width:sectionproperties.sectitle_lineafterwidth+'%',display:'block',backgroundColor:sectionproperties.linebgcolor,borderRadius:'6px'}}),facebook_btn:glamor.css({cursor:'pointer',background:sectionproperties.facebkbtnn_bgtransparent=='Transparent'?'transparent':sectionproperties.facebkbtnnbgColor,width:sectionproperties.facebkbtnnWidth+'px',height:sectionproperties.facebkbtnnHeight+'px',borderRadius:sectionproperties.facebkbtnn_borderRadius+'px',color:sectionproperties.facebkbtnnTextcolor,border:sectionproperties.facebkbtnnborderwidth+'px solid '+sectionproperties.facebkbtnnbordercolor,transition:'.3s',':hover':{background:sectionproperties.facebkbtnntransparentbgcoloronhover=='Transparent'?'Transparent':sectionproperties.facebkbtnnbgColoronhover,color:sectionproperties.facebkbtnnTextcoloronhover,borderColor:sectionproperties.facebkbtnnTextcoloronhover}}),youtube_btn:glamor.css({cursor:'pointer',background:sectionproperties.youtubebtn_bgtransparent=='Transparent'?'transparent':sectionproperties.youtubebtnbgColor,width:sectionproperties.youtubebtnWidth+'px',height:sectionproperties.youtubebtnHeight+'px',borderRadius:sectionproperties.youtubebtn_borderRadius+'px',color:sectionproperties.youtubebtnTextcolor,border:sectionproperties.youtubebtnborderwidth+'px solid '+sectionproperties.youtubebtnbordercolor,transition:'.3s',':hover':{background:sectionproperties.youtubebtn_transparentbgcoloronhover=='Transparent'?'transparent':sectionproperties.youtubebtnbgColoronhover,color:sectionproperties.youtubebtnTextcoloronhover,borderColor:sectionproperties.youtubebtnTextcoloronhover}}),instgram_btn:glamor.css({cursor:'pointer',background:sectionproperties.instgrambtn_bgtransparent=='Transparent'?'transparent':sectionproperties.instgrambtnbgColor,width:sectionproperties.instgrambtnWidth+'px',height:sectionproperties.instgrambtnHeight+'px',borderRadius:sectionproperties.instgrambtn_borderRadius+'px',color:sectionproperties.instgrambtnTextcolor,border:sectionproperties.instgrambtnborderwidth+'px solid '+sectionproperties.instgrambtnbordercolor,transition:'.3s',':hover':{background:sectionproperties.instgrambtn_transparentbgcoloronhover=='Transparent'?'transparent':sectionproperties.instgrambtnbgColoronhover,color:sectionproperties.instgrambtnTextcoloronhover,borderColor:sectionproperties.instgrambtnTextcoloronhover}}),sectiontitlespan2:glamor.css({':after':{position:'absolute',content:'s',fontSize:'0',bottom:0,right:0,left:0,display:'block',height:'100%',width:sectionproperties.sectitle_lineafterwidth+'%',backgroundColor:sectionproperties.linebgcolor,borderRadius:'5px'}}),imageimage:glamor.css({width:sectionproperties.image_width+'%',height:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i=authdetailsContext.instinfo)===null||_authdetailsContext$i===void 0?void 0:_authdetailsContext$i.instid)=='6978ef34b2564'?'100vh':sectionproperties.percentagepixel!='Percentage'?sectionproperties.image_height==0?'auto':sectionproperties.image_height+'px':sectionproperties.image_height+'%',// height: sectionproperties.image_height == 0 ? 'auto' : sectionproperties.image_height + 'px',
|
|
78729
|
-
margin:0,padding:0,objectFit:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i2=authdetailsContext.instinfo)===null||_authdetailsContext$i2===void 0?void 0:_authdetailsContext$i2.instid)=='6978ef34b2564'?'cover':sectionproperties.bgcovercontain,borderTopLeftRadius:langdetect=='en'?sectionproperties.image_bordertopleftradius+'px':sectionproperties.image_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.image_bordertoprightradius+'px':sectionproperties.image_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.image_borderBottomLeftRadius+'px':sectionproperties.image_borderBottomRightRadius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.image_borderBottomRightRadius+'px':sectionproperties.image_borderBottomLeftRadius+'px','@media (max-width: 800px)':{height:sectionproperties.height_responsive==0?'auto':sectionproperties.height_responsive+'%',width:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i3=authdetailsContext.instinfo)===null||_authdetailsContext$i3===void 0?void 0:_authdetailsContext$i3.contactinfo.instid)=='68527dfef348b'?sectionproperties.image_width_resp+'%':''}}),editortext:glamor.css({textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start',color:sectionproperties.slideshowText2ContentColor,fontSize:sectionproperties.slideshowText2ContentFontSize+'px',fontWeight:sectionproperties.slideshowText2ContentFontWeight,paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px','@media (max-width: 800px)':{fontSize:sectionproperties.slideshowText2ContentFontSize_resp+'px',textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start'}}),cont1:glamor.css({width:sectionproperties.width+'vw','@media (max-width: 800px)':{width:sectionproperties.widthresponsive+'vw'}}),rightinnercont:glamor.css({background:sectionproperties.reservation_bgcolor,borderRadius:sectionproperties.reservation_borderradius+'px',paddingLeft:sectionproperties.innersectionpaddinghorizontal+'px',paddingRight:sectionproperties.innersectionpaddinghorizontal+'px','@media (max-width: 800px)':{paddingLeft:sectionproperties.innersectionpaddinghorizontalresp+'px',paddingRight:sectionproperties.innersectionpaddinghorizontalresp+'px'}}),descriptionstyles:glamor.css({color:sectionproperties.prodCatColor,fontWeight:sectionproperties.prodCatFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':langdetect=='en'?'left':'right','@media (max-width: 800px)':{textAlign:'center'}}),conteco:glamor.css({height:400,'@media (max-width: 800px)':{height:200}})};var Slideshowsettings={indicators:false,arrows:true,pauseOnHover:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i4=authdetailsContext.instinfo)===null||_authdetailsContext$i4===void 0?void 0:_authdetailsContext$i4.contactinfo.instid)=='6807d313bae63'?true:false,scale:2};var SectionTitle=function SectionTitle(){return/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.sectiontitlefontfamily=='Pacifico'?' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Playfair'?' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Great Vibes'?' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Quicksand'?' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Satisfy'?' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{color:sectionproperties.sectionTitleColor,fontWeight:sectionproperties.sectionTitleFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':''}},sectionproperties.sectionTitleContent=='MORE THAN 15 YEARS OF EXPERIENCE'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"w-100 ",style:{textAlign:'center',color:sectionproperties.sectionTitleColor}},/*#__PURE__*/React__default["default"].createElement(reactTypeAnimation.TypeAnimation,{sequence:[// Same substring at the start will only be typed out once, initially
|
|
78730
|
-
sectionproperties.sectionTitleContent,1000// wait 1s before replacing "Mice" with "Hamsters"
|
|
78731
|
-
],wrapper:"span",speed:50,style:{fontSize:'1em',display:'inline-block',color:sectionproperties.sectionTitleColor},repeat:Infinity})),sectionproperties.sectionTitleContent=='MORE THAN 1,000,000 CLIENTS'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"w-100 ",style:{textAlign:'center',color:sectionproperties.sectionTitleColor}},/*#__PURE__*/React__default["default"].createElement(reactTypeAnimation.TypeAnimation,{sequence:[// Same substring at the start will only be typed out once, initially
|
|
78732
|
-
sectionproperties.sectionTitleContent,1000// wait 1s before replacing "Mice" with "Hamsters"
|
|
78733
|
-
],wrapper:"span",speed:50,style:{fontSize:'1em',display:'inline-block',color:sectionproperties.sectionTitleColor},repeat:Infinity})),sectionproperties.sectiontitlestyle=='Line Under Text'&§ionproperties.sectionTitleContent!='MORE THAN 15 YEARS OF EXPERIENCE'&§ionproperties.sectionTitleContent!='MORE THAN 1,000,000 CLIENTS'&&/*#__PURE__*/React__default["default"].createElement("span",{"class":"".concat(section_styles.sectiontitlespan)+' pl-md-2 pr-md-2 left-md-0 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar),sectionproperties.sectiontitlestyle=='Line Before Text'&§ionproperties.sectionTitleContent!='MORE THAN 15 YEARS OF EXPERIENCE'&§ionproperties.sectionTitleContent!='MORE THAN 1,000,000 CLIENTS'&&/*#__PURE__*/React__default["default"].createElement("span",{"class":"".concat(section_styles.sectiontitlespan2)+' pl-3 pr-3 pl-md-2 pr-md-2 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar));};var SectionDescription=function SectionDescription(){if(sectionproperties.descriptionContentEn=='Amir Mortada Mansour'){return/*#__PURE__*/React__default["default"].createElement("div",{className:"title-wrapper"},/*#__PURE__*/React__default["default"].createElement("span",{className:"bg-text"},langdetect=='en'?'About':''),/*#__PURE__*/React__default["default"].createElement("p",{className:section_styles.descriptionstyles+' section-title d-flex align-items-center justify-content-start '},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr));}else {return/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.descFontFamily=='Pacifico'?section_styles.descriptionstyles+' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Playfair'?section_styles.descriptionstyles+' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Great Vibes'?section_styles.descriptionstyles+' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Quicksand'?section_styles.descriptionstyles+' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Satisfy'?section_styles.descriptionstyles+' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':section_styles.descriptionstyles+' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{}},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr);}};var Content=function Content(){var _authdetailsContext$i5,_authdetailsContext$i6;return/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.sectiontitleposition=='Centered'?sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0',style:{alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':'',paddingLeft:sectionproperties.marginhorizontal+'px',paddingRight:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i5=authdetailsContext.instinfo)===null||_authdetailsContext$i5===void 0?void 0:_authdetailsContext$i5.contactinfo.instid)=='6978ef34b2564'?50:sectionproperties.marginhorizontal+'px',borderRadius:sectionproperties.reservation_borderradius+'px'}},/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.justifyContentCenter=='Centered'?section_styles.rightinnercont+' row m-0 w-100 h-100 ':section_styles.rightinnercont+' row m-0 w-100 mb-auto h-100 ',style:{}},sectionproperties.sectionTitleFontSize!=0&&/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.sectionstyleresponsive=='Image above text'?'col-lg-12 pl-0 pr-0 d-flex mt-md-4':'col-lg-12 pl-0 pr-0 d-flex ',style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.sectionTitleMarginBottom+'px',marginTop:sectionproperties.sectionTitleMarginTop+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React__default["default"].createElement("div",{"class":'d-flex align-items-center flex-row d-sm-none mt-sm-2 ',style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSize+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle()),/*#__PURE__*/React__default["default"].createElement("div",{"class":'d-none align-items-center flex-row d-sm-flex mt-sm-2 mx-md-2',style:{position:'relative',justifyContent:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i6=authdetailsContext.instinfo)===null||_authdetailsContext$i6===void 0?void 0:_authdetailsContext$i6.contactinfo.instid)=='6978ef34b2564'?'center':sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSizeresp+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle())),sectionproperties.prodCatShow=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"col-lg-12 pl-0 pr-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.descriptionMarginBottom+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React__default["default"].createElement("div",{"class":"d-flex align-items-center flex-row d-sm-none mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSize+'px',marginLeft:langdetect=='en'?sectionproperties.description_marginLeft+'px':sectionproperties.description_marginRight+'px',marginRight:langdetect=='en'?sectionproperties.description_marginRight+'px':sectionproperties.description_marginLeft+'px',paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px'}},SectionDescription()),/*#__PURE__*/React__default["default"].createElement("div",{"class":"d-none align-items-center flex-row d-sm-flex mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSizeResp+'px'}},SectionDescription())),/*#__PURE__*/React__default["default"].createElement("div",{"class":"col-lg-12 p-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.text2centered=='Centered'?'center':'start',marginBottom:sectionproperties.slideshowText2Content_marginBottom+'px'}},/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.text2centered=='Justify'?section_styles.editortext+' pb-0 pl-md-2 pr-md-2 ':section_styles.editortext+' pb-0 text-md-center pl-md-2 pr-md-2 ',style:{},dangerouslySetInnerHTML:{__html:langdetect=='en'?sectionproperties.contenteditor:sectionproperties.text2editortextar}})),sectionproperties.generalbtn_show=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.generalbtn_position=='Centered'?'col-lg-12 p-0 allcentered':'col-lg-12 p-0 text-start'},/*#__PURE__*/React__default["default"].createElement("button",{"class":"".concat(section_styles.btn)+' m-md-0 ',onClick:function onClick(){if(sectionproperties.btntype=='WhatsApp'){var _authdetailsContext$i7;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i7=authdetailsContext.instinfo)===null||_authdetailsContext$i7===void 0?void 0:_authdetailsContext$i7.whatsappnumber)!=null){var _authdetailsContext$i8;window.open('https://api.whatsapp.com/send?phone='+(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i8=authdetailsContext.instinfo)===null||_authdetailsContext$i8===void 0?void 0:_authdetailsContext$i8.whatsappnumber),'_blank');}}else if(sectionproperties.btntype=='App/Web Page'){// window.open(sectionproperties.btnlink, '_target');
|
|
78779
|
+
margin:0,padding:0,objectFit:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i2=authdetailsContext.instinfo)===null||_authdetailsContext$i2===void 0?void 0:_authdetailsContext$i2.instid)=='6978ef34b2564'?'cover':sectionproperties.bgcovercontain,borderTopLeftRadius:langdetect=='en'?sectionproperties.image_bordertopleftradius+'px':sectionproperties.image_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.image_bordertoprightradius+'px':sectionproperties.image_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.image_borderBottomLeftRadius+'px':sectionproperties.image_borderBottomRightRadius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.image_borderBottomRightRadius+'px':sectionproperties.image_borderBottomLeftRadius+'px','@media (max-width: 800px)':{height:sectionproperties.height_responsive==0?'auto':sectionproperties.height_responsive+'%',width:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i3=authdetailsContext.instinfo)===null||_authdetailsContext$i3===void 0?void 0:_authdetailsContext$i3.contactinfo.instid)=='68527dfef348b'?sectionproperties.image_width_resp+'%':''}}),editortext:glamor.css({textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start',color:sectionproperties.slideshowText2ContentColor,fontSize:sectionproperties.slideshowText2ContentFontSize+'px',fontWeight:sectionproperties.slideshowText2ContentFontWeight,paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px','@media (max-width: 800px)':{fontSize:sectionproperties.slideshowText2ContentFontSize_resp+'px',textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start'}}),cont1:glamor.css({width:sectionproperties.width+'vw','@media (max-width: 800px)':{width:sectionproperties.widthresponsive+'vw'}}),rightinnercont:glamor.css({background:sectionproperties.reservation_bgcolor,borderRadius:sectionproperties.reservation_borderradius+'px',paddingLeft:sectionproperties.innersectionpaddinghorizontal+'px',paddingRight:sectionproperties.innersectionpaddinghorizontal+'px','@media (max-width: 800px)':{paddingLeft:sectionproperties.innersectionpaddinghorizontalresp+'px',paddingRight:sectionproperties.innersectionpaddinghorizontalresp+'px'}}),descriptionstyles:glamor.css({color:sectionproperties.prodCatColor,fontWeight:sectionproperties.prodCatFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':langdetect=='en'?'left':'right','@media (max-width: 800px)':{textAlign:'center'}}),conteco:glamor.css({height:400,'@media (max-width: 800px)':{height:200}})};var Slideshowsettings={indicators:false,arrows:true,pauseOnHover:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i4=authdetailsContext.instinfo)===null||_authdetailsContext$i4===void 0?void 0:_authdetailsContext$i4.contactinfo.instid)=='6807d313bae63'?true:false,scale:2};var SectionTitle=function SectionTitle(){return/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.sectiontitlefontfamily=='Pacifico'?' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Playfair'?' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Great Vibes'?' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Quicksand'?' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Satisfy'?' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{color:sectionproperties.sectionTitleColor,fontWeight:sectionproperties.sectionTitleFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':''}},sectionproperties.sectiontitlestyle=='Line Under Text'&&/*#__PURE__*/React__default["default"].createElement("span",{"class":"".concat(section_styles.sectiontitlespan)+' pl-md-2 pr-md-2 left-md-0 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar),sectionproperties.sectiontitlestyle=='Line Before Text'&&/*#__PURE__*/React__default["default"].createElement("span",{"class":"".concat(section_styles.sectiontitlespan2)+' pl-3 pr-3 pl-md-2 pr-md-2 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar));};var SectionDescription=function SectionDescription(){if(sectionproperties.descriptionContentEn=='Amir Mortada Mansour'){return/*#__PURE__*/React__default["default"].createElement("div",{className:"title-wrapper"},/*#__PURE__*/React__default["default"].createElement("span",{className:"bg-text"},langdetect=='en'?'About':''),/*#__PURE__*/React__default["default"].createElement("p",{className:section_styles.descriptionstyles+' section-title d-flex align-items-center justify-content-start '},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr));}else {return/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.descFontFamily=='Pacifico'?section_styles.descriptionstyles+' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Playfair'?section_styles.descriptionstyles+' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Great Vibes'?section_styles.descriptionstyles+' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Quicksand'?section_styles.descriptionstyles+' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Satisfy'?section_styles.descriptionstyles+' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':section_styles.descriptionstyles+' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{}},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr);}};var Content=function Content(){var _authdetailsContext$i5,_authdetailsContext$i6;return/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.sectiontitleposition=='Centered'?sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0',style:{alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':'',paddingLeft:sectionproperties.marginhorizontal+'px',paddingRight:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i5=authdetailsContext.instinfo)===null||_authdetailsContext$i5===void 0?void 0:_authdetailsContext$i5.contactinfo.instid)=='6978ef34b2564'?50:sectionproperties.marginhorizontal+'px',borderRadius:sectionproperties.reservation_borderradius+'px'}},/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.justifyContentCenter=='Centered'?section_styles.rightinnercont+' row m-0 w-100 h-100 ':section_styles.rightinnercont+' row m-0 w-100 mb-auto h-100 ',style:{}},sectionproperties.sectionTitleFontSize!=0&&/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.sectionstyleresponsive=='Image above text'?'col-lg-12 pl-0 pr-0 d-flex mt-md-4':'col-lg-12 pl-0 pr-0 d-flex ',style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.sectionTitleMarginBottom+'px',marginTop:sectionproperties.sectionTitleMarginTop+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React__default["default"].createElement("div",{"class":'d-flex align-items-center flex-row d-sm-none mt-sm-2 ',style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSize+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle()),/*#__PURE__*/React__default["default"].createElement("div",{"class":'d-none align-items-center flex-row d-sm-flex mt-sm-2 mx-md-2',style:{position:'relative',justifyContent:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i6=authdetailsContext.instinfo)===null||_authdetailsContext$i6===void 0?void 0:_authdetailsContext$i6.contactinfo.instid)=='6978ef34b2564'?'center':sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSizeresp+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle())),sectionproperties.prodCatShow=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"col-lg-12 pl-0 pr-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.descriptionMarginBottom+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React__default["default"].createElement("div",{"class":"d-flex align-items-center flex-row d-sm-none mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSize+'px',marginLeft:langdetect=='en'?sectionproperties.description_marginLeft+'px':sectionproperties.description_marginRight+'px',marginRight:langdetect=='en'?sectionproperties.description_marginRight+'px':sectionproperties.description_marginLeft+'px',paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px'}},SectionDescription()),/*#__PURE__*/React__default["default"].createElement("div",{"class":"d-none align-items-center flex-row d-sm-flex mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSizeResp+'px'}},SectionDescription())),/*#__PURE__*/React__default["default"].createElement("div",{"class":"col-lg-12 p-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.text2centered=='Centered'?'center':'start',marginBottom:sectionproperties.slideshowText2Content_marginBottom+'px'}},/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.text2centered=='Justify'?section_styles.editortext+' pb-0 pl-md-2 pr-md-2 ':section_styles.editortext+' pb-0 text-md-center pl-md-2 pr-md-2 ',style:{},dangerouslySetInnerHTML:{__html:langdetect=='en'?sectionproperties.contenteditor:sectionproperties.text2editortextar}})),sectionproperties.generalbtn_show=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.generalbtn_position=='Centered'?'col-lg-12 p-0 allcentered':'col-lg-12 p-0 text-start'},/*#__PURE__*/React__default["default"].createElement("button",{"class":"".concat(section_styles.btn)+' m-md-0 ',onClick:function onClick(){if(sectionproperties.btntype=='WhatsApp'){var _authdetailsContext$i7;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i7=authdetailsContext.instinfo)===null||_authdetailsContext$i7===void 0?void 0:_authdetailsContext$i7.whatsappnumber)!=null){var _authdetailsContext$i8;window.open('https://api.whatsapp.com/send?phone='+(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i8=authdetailsContext.instinfo)===null||_authdetailsContext$i8===void 0?void 0:_authdetailsContext$i8.whatsappnumber),'_blank');}}else if(sectionproperties.btntype=='App/Web Page'){// window.open(sectionproperties.btnlink, '_target');
|
|
78734
78780
|
routingcountext(sectionproperties.btnlink,false,'');}else {window.open(sectionproperties.btnlink,'_blank');}},style:{marginLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',marginRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px'}},langdetect=='en'?sectionproperties.generalbtn_content:sectionproperties.slideshow_btn_text_ar)),/*#__PURE__*/React__default["default"].createElement("div",{"class":"col-lg-12 p-0 justify-content-sm-center mb-sm-4 align-items-center",style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':'',display:sectionproperties.fbbtn_show=='Hide'&§ionproperties.instbtn_show=='Hide'&§ionproperties.youtbtn_show=='Hide'?'none':'flex'}},sectionproperties.fbbtn_show=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"".concat(section_styles.facebook_btn)+' d-flex align-items-center justify-content-center ml-3 mr-3 ',onClick:function onClick(){var _authdetailsContext$i9;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i9=authdetailsContext.instinfo)===null||_authdetailsContext$i9===void 0?void 0:_authdetailsContext$i9.facebooklink)!=null){var _authdetailsContext$i0;window.open(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i0=authdetailsContext.instinfo)===null||_authdetailsContext$i0===void 0?void 0:_authdetailsContext$i0.facebooklink,'_blank');}}},/*#__PURE__*/React__default["default"].createElement(FaFacebookF.FaFacebookF,{size:sectionproperties.facebkbtnniconfontsize})),sectionproperties.instbtn_show=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"".concat(section_styles.instgram_btn)+' d-flex align-items-center justify-content-center ml-3 mr-3 ',onClick:function onClick(){var _authdetailsContext$i1;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i1=authdetailsContext.instinfo)===null||_authdetailsContext$i1===void 0?void 0:_authdetailsContext$i1.instagramlink)!=null){var _authdetailsContext$i10;window.open(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i10=authdetailsContext.instinfo)===null||_authdetailsContext$i10===void 0?void 0:_authdetailsContext$i10.instagramlink,'_blank');}}},/*#__PURE__*/React__default["default"].createElement(AiFillInstagram.AiFillInstagram,{size:sectionproperties.instgrambtniconfontsize})),sectionproperties.youtbtn_show=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"".concat(section_styles.youtube_btn)+' d-flex align-items-center justify-content-center ml-3 mr-3 ',onClick:function onClick(){var _authdetailsContext$i11;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i11=authdetailsContext.instinfo)===null||_authdetailsContext$i11===void 0?void 0:_authdetailsContext$i11.whatsappnumber)!=null){var _authdetailsContext$i12;window.open('https://api.whatsapp.com/send?phone='+(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i12=authdetailsContext.instinfo)===null||_authdetailsContext$i12===void 0?void 0:_authdetailsContext$i12.whatsappnumber),'_blank');}}},/*#__PURE__*/React__default["default"].createElement(FaWhatsapp.FaWhatsapp,{size:sectionproperties.youtubebtniconfontsize})))));};var Image=function Image(){var _authdetailsContext$i13,_authdetailsContext$i14,_authdetailsContext$i15,_authdetailsContext$i16,_authdetailsContext$i17,_imagesarray$,_authdetailsContext$i18,_imagesarray$7,_imagesarray$8,_authdetailsContext$i19,_imagesarray$9,_imagesarray$0,_authdetailsContext$i20;return/*#__PURE__*/React__default["default"].createElement("div",{"class":(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i13=authdetailsContext.instinfo)===null||_authdetailsContext$i13===void 0?void 0:_authdetailsContext$i13.instid)=='6995aff955278'&§ionproperties.descriptionContentEn=='About Elite Egy Card'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0 image-col':// tms
|
|
78735
78781
|
(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i14=authdetailsContext.instinfo)===null||_authdetailsContext$i14===void 0?void 0:_authdetailsContext$i14.instid)=='6824564a386c2'&§ionproperties.sectionTitleContent=='Welcome to TMS'?'col-lg-3 col-md-12 d-flex align-items-center justify-content-center justify-content-md-center h-auto p-md-0':(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i15=authdetailsContext.instinfo)===null||_authdetailsContext$i15===void 0?void 0:_authdetailsContext$i15.instid)=='6995aff955278'&§ionproperties.descriptionContentEn=='Get Your Card Now'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0 image-col2':(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i16=authdetailsContext.instinfo)===null||_authdetailsContext$i16===void 0?void 0:_authdetailsContext$i16.instid)=='6978ef34b2564'?'col-lg-8 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i17=authdetailsContext.instinfo)===null||_authdetailsContext$i17===void 0?void 0:_authdetailsContext$i17.contactinfo.instid)=='6935c04816952'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':sectionproperties.image_height==0?sectionproperties.sectionstyle=='Image on right'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':sectionproperties.sectionstyle=='Image on left'?'col-lg-6 col-md-12 d-flex justify-content-start justify-content-md-center p-md-0':'col-lg-6 col-md-12 d-flex justify-content-start justify-content-md-center p-md-0',style:{paddingLeft:sectionproperties.marginhorizontal+'px',paddingRight:sectionproperties.marginhorizontal+'px',cursor:((_imagesarray$=imagesarray[0])===null||_imagesarray$===void 0?void 0:_imagesarray$.IsClickableimg)=='Yes'?'pointer':'default',background:sectionproperties.image_bgtransparent=='Transparent'?'transparent':sectionproperties.image_bgcolor},onClick:function onClick(){var _imagesarray$2;if(((_imagesarray$2=imagesarray[0])===null||_imagesarray$2===void 0?void 0:_imagesarray$2.IsClickableimg)=='Yes'){var _imagesarray$3,_imagesarray$4;if(((_imagesarray$3=imagesarray[0])===null||_imagesarray$3===void 0?void 0:_imagesarray$3.clickableimg_page_route)!=undefined&&((_imagesarray$4=imagesarray[0])===null||_imagesarray$4===void 0?void 0:_imagesarray$4.clickableimg_page_route.length)!=0){var _imagesarray$5;routingcountext((_imagesarray$5=imagesarray[0])===null||_imagesarray$5===void 0?void 0:_imagesarray$5.clickableimg_page_route,false,'');}else {var _imagesarray$6;routingcountext(StaticPagesLinksContext.GeneralProductsComponent,true,'collections/'+((_imagesarray$6=imagesarray[0])===null||_imagesarray$6===void 0?void 0:_imagesarray$6.Clickableimg_getcoection));}}}},imagesarray.length!=0&&(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i18=authdetailsContext.instinfo)===null||_authdetailsContext$i18===void 0?void 0:_authdetailsContext$i18.contactinfo.instid)!='691b34a54d742'&&/*#__PURE__*/React__default["default"].createElement(Imagekitimagecomp,{"class":section_styles.imageimage,urlEndpoint:ikimagecredcontext===null||ikimagecredcontext===void 0?void 0:ikimagecredcontext.ikimageendpoint,publicKey:ikimagecredcontext===null||ikimagecredcontext===void 0?void 0:ikimagecredcontext.ikimagepublickey,path:langdetect=='en'?'/tr:w-'+sectionproperties.imagetr_w+',h-'+sectionproperties.imagetr_h+'/'+((_imagesarray$7=imagesarray[0])===null||_imagesarray$7===void 0?void 0:_imagesarray$7.bgsection_image):'/tr:w-'+sectionproperties.imagetr_w+',h-'+sectionproperties.imagetr_h+'/'+((_imagesarray$8=imagesarray[0])===null||_imagesarray$8===void 0?void 0:_imagesarray$8.bgsection_image_ar)// style={{
|
|
78736
78782
|
// transform:
|
package/dist/index.esm.js
CHANGED
|
@@ -77335,6 +77335,7 @@ var TableSection = function TableSection(props) {
|
|
|
77335
77335
|
function ownKeys$12(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
77336
77336
|
function _objectSpread$12(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$12(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$12(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
77337
77337
|
var MarqueeSection = function MarqueeSection(props) {
|
|
77338
|
+
var _authdetailsContext$i, _authdetailsContext$i4;
|
|
77338
77339
|
var _useState = useState(''),
|
|
77339
77340
|
_useState2 = _slicedToArray(_useState, 2),
|
|
77340
77341
|
sectionproperties = _useState2[0],
|
|
@@ -77433,6 +77434,19 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
77433
77434
|
}
|
|
77434
77435
|
}, [sectionproperties]);
|
|
77435
77436
|
if (!visible) return null;
|
|
77437
|
+
var marqueeRef = useRef(null);
|
|
77438
|
+
useEffect(function () {
|
|
77439
|
+
if (!marqueeRef.current) return;
|
|
77440
|
+
var updateWidth = function updateWidth() {
|
|
77441
|
+
var firstSetWidth = marqueeRef.current.scrollWidth / 2;
|
|
77442
|
+
marqueeRef.current.style.setProperty('--marquee-width', "-".concat(firstSetWidth, "px"));
|
|
77443
|
+
};
|
|
77444
|
+
updateWidth();
|
|
77445
|
+
window.addEventListener('resize', updateWidth);
|
|
77446
|
+
return function () {
|
|
77447
|
+
window.removeEventListener('resize', updateWidth);
|
|
77448
|
+
};
|
|
77449
|
+
}, [cardsarray]);
|
|
77436
77450
|
return /*#__PURE__*/React.createElement("div", {
|
|
77437
77451
|
"class": section_styles.container + ' row ml-0 mr-0 d-flex justify-content-between w-100 align-items-center '
|
|
77438
77452
|
// data-aos={'fade-up'}
|
|
@@ -77443,13 +77457,13 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
77443
77457
|
borderLeft: sectionproperties.borderverticalwidth + 'px solid ' + sectionproperties.sectioncardbordercolor,
|
|
77444
77458
|
borderRight: sectionproperties.borderverticalwidth + 'px solid ' + sectionproperties.sectioncardbordercolor
|
|
77445
77459
|
}
|
|
77446
|
-
}, /*#__PURE__*/React.createElement("div", {
|
|
77460
|
+
}, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.contactinfo.instid) != '6a0e0bcb82d2d' && /*#__PURE__*/React.createElement("div", {
|
|
77447
77461
|
"class": "rotating-text-container rotating-text-containermarqueesection"
|
|
77448
77462
|
}, /*#__PURE__*/React.createElement("span", {
|
|
77449
77463
|
"class": sectionproperties.marqueemovementdirection == 'Right to Left' ? 'd-flex flex-row align-items-center rotating-text2' : 'd-flex flex-row align-items-center rotating-text-reverse2',
|
|
77450
77464
|
style: {}
|
|
77451
77465
|
}, [].concat(_toConsumableArray(cardsarray), _toConsumableArray(cardsarray)).map(function (cardinfoitem, cardinfoindex) {
|
|
77452
|
-
var _authdetailsContext$
|
|
77466
|
+
var _authdetailsContext$i2;
|
|
77453
77467
|
return /*#__PURE__*/React.createElement("div", {
|
|
77454
77468
|
"class": section_styles.marqueeimagecontainer + ' ',
|
|
77455
77469
|
style: {
|
|
@@ -77471,15 +77485,51 @@ var MarqueeSection = function MarqueeSection(props) {
|
|
|
77471
77485
|
}), /*#__PURE__*/React.createElement("p", {
|
|
77472
77486
|
"class": section_styles.textstyle + ' mb-0 p-0 ',
|
|
77473
77487
|
style: {
|
|
77474
|
-
cursor: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
77488
|
+
cursor: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i2 = authdetailsContext.instinfo) === null || _authdetailsContext$i2 === void 0 ? void 0 : _authdetailsContext$i2.contactinfo.instid) == '691dcd6e974bb' ? 'pointer' : ''
|
|
77475
77489
|
},
|
|
77476
77490
|
onClick: function onClick() {
|
|
77477
|
-
var _authdetailsContext$
|
|
77478
|
-
if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
77491
|
+
var _authdetailsContext$i3;
|
|
77492
|
+
if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i3 = authdetailsContext.instinfo) === null || _authdetailsContext$i3 === void 0 ? void 0 : _authdetailsContext$i3.contactinfo.instid) == '691dcd6e974bb') {
|
|
77479
77493
|
window.open('https://www.instagram.com', '_blank');
|
|
77480
77494
|
}
|
|
77481
77495
|
}
|
|
77482
77496
|
}, langdetect == 'en' ? cardinfoitem.arraytitleen : cardinfoitem.arraytitlear));
|
|
77497
|
+
}))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i4 = authdetailsContext.instinfo) === null || _authdetailsContext$i4 === void 0 ? void 0 : _authdetailsContext$i4.contactinfo.instid) == '6a0e0bcb82d2d' && /*#__PURE__*/React.createElement("div", {
|
|
77498
|
+
className: "rotating-text-containersd rotating-text-containermarqueesection"
|
|
77499
|
+
}, /*#__PURE__*/React.createElement("div", {
|
|
77500
|
+
ref: marqueeRef,
|
|
77501
|
+
className: sectionproperties.marqueemovementdirection === 'Right to Left' ? 'rotating-text2sd' : 'rotating-text-reverse2sd'
|
|
77502
|
+
}, [].concat(_toConsumableArray(cardsarray), _toConsumableArray(cardsarray)).map(function (cardinfoitem, cardinfoindex) {
|
|
77503
|
+
var _authdetailsContext$i5;
|
|
77504
|
+
return /*#__PURE__*/React.createElement("div", {
|
|
77505
|
+
key: cardinfoindex,
|
|
77506
|
+
className: section_styles.marqueeimagecontainer,
|
|
77507
|
+
style: {
|
|
77508
|
+
textAlign: 'center',
|
|
77509
|
+
alignItems: 'center',
|
|
77510
|
+
alignContent: 'center'
|
|
77511
|
+
}
|
|
77512
|
+
}, cardinfoitem.marqueeimage != null && /*#__PURE__*/React.createElement(Imagekitimagecomp, {
|
|
77513
|
+
"class": section_styles.marqueeimage,
|
|
77514
|
+
urlEndpoint: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimageendpoint,
|
|
77515
|
+
publicKey: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimagepublickey,
|
|
77516
|
+
path: '/tr:w-' + sectionproperties.imagetr_w + ',h-' + sectionproperties.imagetr_h + '/' + cardinfoitem.marqueeimage,
|
|
77517
|
+
style: {
|
|
77518
|
+
objectFit: sectionproperties.bgcovercontain === 'Contain' ? 'contain' : 'cover',
|
|
77519
|
+
borderRadius: sectionproperties.imageborderradius + 'px'
|
|
77520
|
+
}
|
|
77521
|
+
}), /*#__PURE__*/React.createElement("p", {
|
|
77522
|
+
className: section_styles.textstyle + ' mb-0 p-0',
|
|
77523
|
+
style: {
|
|
77524
|
+
cursor: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i5 = authdetailsContext.instinfo) === null || _authdetailsContext$i5 === void 0 || (_authdetailsContext$i5 = _authdetailsContext$i5.contactinfo) === null || _authdetailsContext$i5 === void 0 ? void 0 : _authdetailsContext$i5.instid) === '691dcd6e974bb' ? 'pointer' : ''
|
|
77525
|
+
},
|
|
77526
|
+
onClick: function onClick() {
|
|
77527
|
+
var _authdetailsContext$i6;
|
|
77528
|
+
if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i6 = authdetailsContext.instinfo) === null || _authdetailsContext$i6 === void 0 || (_authdetailsContext$i6 = _authdetailsContext$i6.contactinfo) === null || _authdetailsContext$i6 === void 0 ? void 0 : _authdetailsContext$i6.instid) === '691dcd6e974bb') {
|
|
77529
|
+
window.open('https://www.instagram.com', '_blank');
|
|
77530
|
+
}
|
|
77531
|
+
}
|
|
77532
|
+
}, langdetect === 'en' ? cardinfoitem.arraytitleen : cardinfoitem.arraytitlear));
|
|
77483
77533
|
}))));
|
|
77484
77534
|
};
|
|
77485
77535
|
|
|
@@ -78675,11 +78725,7 @@ paddingTop:sectionproperties.paddingTop,// paddingBottom: sectionproperties.sect
|
|
|
78675
78725
|
paddingBottom:sectionproperties.paddingBottom,'@media (max-width: 800px)':{paddingTop:sectionproperties.paddingverticalresponsive+'px',paddingBottom:sectionproperties.paddingverticalresponsive+'px'}}),btn:css({width:sectionproperties.generalbtn_width+'px',height:sectionproperties.generalbtn_height+'px',backgroundColor:sectionproperties.generalbtn_bgColor,color:sectionproperties.generalbtn_textColor,borderTopLeftRadius:langdetect=='en'?sectionproperties.generalbtn_bordertopleftradius+'px':sectionproperties.generalbtn_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.generalbtn_bordertoprightradius+'px':sectionproperties.generalbtn_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomleftradius+'px':sectionproperties.generalbtn_borderbottomrightradius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomrightradius+'px':sectionproperties.generalbtn_borderbottomleftradius+'px',border:sectionproperties.generalbtn_borderwidth+'px solid '+sectionproperties.generalbtn_bordercolor,fontSize:sectionproperties.generalbtn_fontsize+'px',fontWeight:sectionproperties.generalbtn_fontweight,marginTop:sectionproperties.generalbtn_marginTop+'px',marginBottom:sectionproperties.generalbtn_marginBottom+'px',transition:'.3s',cursor:'pointer',// here..
|
|
78676
78726
|
boxShadow:sectionproperties.slideshow_btn_text_chin=='get'?'0 0 10px #858484':'none',':hover':{backgroundColor:sectionproperties.generalbtn_bgColoronhover,color:sectionproperties.generalbtn_textColoronhover}}),btn2:css({width:sectionproperties.generalbtn_width+'px',height:sectionproperties.generalbtn_height+'px',backgroundColor:sectionproperties.generalbtn_textColor,color:sectionproperties.generalbtn_bgColor,borderTopLeftRadius:langdetect=='en'?sectionproperties.generalbtn_bordertopleftradius+'px':sectionproperties.generalbtn_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.generalbtn_bordertoprightradius+'px':sectionproperties.generalbtn_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomleftradius+'px':sectionproperties.generalbtn_borderbottomrightradius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomrightradius+'px':sectionproperties.generalbtn_borderbottomleftradius+'px',border:'1px solid '+sectionproperties.generalbtn_bgColor,fontSize:sectionproperties.generalbtn_fontsize+'px',fontWeight:sectionproperties.generalbtn_fontweight,marginTop:sectionproperties.generalbtn_marginTop+'px',marginBottom:sectionproperties.generalbtn_marginBottom+'px',transition:'.3s',cursor:'pointer',// here..
|
|
78677
78727
|
boxShadow:sectionproperties.slideshow_btn_text_chin=='get'?'0 0 10px #858484':'none',':hover':{backgroundColor:sectionproperties.generalbtn_bgColor,color:sectionproperties.generalbtn_textColor}}),sectiontitlespan:css({paddingLeft:sectionproperties.sectiontitleborderradius==0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,paddingRight:sectionproperties.sectiontitleborderradius==0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0,':after':{position:'absolute',bottom:0,right:langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':'',left:langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':'',content:'s',fontSize:'0',height:'3px',width:sectionproperties.sectitle_lineafterwidth+'%',display:'block',backgroundColor:sectionproperties.linebgcolor,borderRadius:'6px'}}),facebook_btn:css({cursor:'pointer',background:sectionproperties.facebkbtnn_bgtransparent=='Transparent'?'transparent':sectionproperties.facebkbtnnbgColor,width:sectionproperties.facebkbtnnWidth+'px',height:sectionproperties.facebkbtnnHeight+'px',borderRadius:sectionproperties.facebkbtnn_borderRadius+'px',color:sectionproperties.facebkbtnnTextcolor,border:sectionproperties.facebkbtnnborderwidth+'px solid '+sectionproperties.facebkbtnnbordercolor,transition:'.3s',':hover':{background:sectionproperties.facebkbtnntransparentbgcoloronhover=='Transparent'?'Transparent':sectionproperties.facebkbtnnbgColoronhover,color:sectionproperties.facebkbtnnTextcoloronhover,borderColor:sectionproperties.facebkbtnnTextcoloronhover}}),youtube_btn:css({cursor:'pointer',background:sectionproperties.youtubebtn_bgtransparent=='Transparent'?'transparent':sectionproperties.youtubebtnbgColor,width:sectionproperties.youtubebtnWidth+'px',height:sectionproperties.youtubebtnHeight+'px',borderRadius:sectionproperties.youtubebtn_borderRadius+'px',color:sectionproperties.youtubebtnTextcolor,border:sectionproperties.youtubebtnborderwidth+'px solid '+sectionproperties.youtubebtnbordercolor,transition:'.3s',':hover':{background:sectionproperties.youtubebtn_transparentbgcoloronhover=='Transparent'?'transparent':sectionproperties.youtubebtnbgColoronhover,color:sectionproperties.youtubebtnTextcoloronhover,borderColor:sectionproperties.youtubebtnTextcoloronhover}}),instgram_btn:css({cursor:'pointer',background:sectionproperties.instgrambtn_bgtransparent=='Transparent'?'transparent':sectionproperties.instgrambtnbgColor,width:sectionproperties.instgrambtnWidth+'px',height:sectionproperties.instgrambtnHeight+'px',borderRadius:sectionproperties.instgrambtn_borderRadius+'px',color:sectionproperties.instgrambtnTextcolor,border:sectionproperties.instgrambtnborderwidth+'px solid '+sectionproperties.instgrambtnbordercolor,transition:'.3s',':hover':{background:sectionproperties.instgrambtn_transparentbgcoloronhover=='Transparent'?'transparent':sectionproperties.instgrambtnbgColoronhover,color:sectionproperties.instgrambtnTextcoloronhover,borderColor:sectionproperties.instgrambtnTextcoloronhover}}),sectiontitlespan2:css({':after':{position:'absolute',content:'s',fontSize:'0',bottom:0,right:0,left:0,display:'block',height:'100%',width:sectionproperties.sectitle_lineafterwidth+'%',backgroundColor:sectionproperties.linebgcolor,borderRadius:'5px'}}),imageimage:css({width:sectionproperties.image_width+'%',height:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i=authdetailsContext.instinfo)===null||_authdetailsContext$i===void 0?void 0:_authdetailsContext$i.instid)=='6978ef34b2564'?'100vh':sectionproperties.percentagepixel!='Percentage'?sectionproperties.image_height==0?'auto':sectionproperties.image_height+'px':sectionproperties.image_height+'%',// height: sectionproperties.image_height == 0 ? 'auto' : sectionproperties.image_height + 'px',
|
|
78678
|
-
margin:0,padding:0,objectFit:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i2=authdetailsContext.instinfo)===null||_authdetailsContext$i2===void 0?void 0:_authdetailsContext$i2.instid)=='6978ef34b2564'?'cover':sectionproperties.bgcovercontain,borderTopLeftRadius:langdetect=='en'?sectionproperties.image_bordertopleftradius+'px':sectionproperties.image_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.image_bordertoprightradius+'px':sectionproperties.image_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.image_borderBottomLeftRadius+'px':sectionproperties.image_borderBottomRightRadius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.image_borderBottomRightRadius+'px':sectionproperties.image_borderBottomLeftRadius+'px','@media (max-width: 800px)':{height:sectionproperties.height_responsive==0?'auto':sectionproperties.height_responsive+'%',width:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i3=authdetailsContext.instinfo)===null||_authdetailsContext$i3===void 0?void 0:_authdetailsContext$i3.contactinfo.instid)=='68527dfef348b'?sectionproperties.image_width_resp+'%':''}}),editortext:css({textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start',color:sectionproperties.slideshowText2ContentColor,fontSize:sectionproperties.slideshowText2ContentFontSize+'px',fontWeight:sectionproperties.slideshowText2ContentFontWeight,paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px','@media (max-width: 800px)':{fontSize:sectionproperties.slideshowText2ContentFontSize_resp+'px',textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start'}}),cont1:css({width:sectionproperties.width+'vw','@media (max-width: 800px)':{width:sectionproperties.widthresponsive+'vw'}}),rightinnercont:css({background:sectionproperties.reservation_bgcolor,borderRadius:sectionproperties.reservation_borderradius+'px',paddingLeft:sectionproperties.innersectionpaddinghorizontal+'px',paddingRight:sectionproperties.innersectionpaddinghorizontal+'px','@media (max-width: 800px)':{paddingLeft:sectionproperties.innersectionpaddinghorizontalresp+'px',paddingRight:sectionproperties.innersectionpaddinghorizontalresp+'px'}}),descriptionstyles:css({color:sectionproperties.prodCatColor,fontWeight:sectionproperties.prodCatFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':langdetect=='en'?'left':'right','@media (max-width: 800px)':{textAlign:'center'}}),conteco:css({height:400,'@media (max-width: 800px)':{height:200}})};var Slideshowsettings={indicators:false,arrows:true,pauseOnHover:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i4=authdetailsContext.instinfo)===null||_authdetailsContext$i4===void 0?void 0:_authdetailsContext$i4.contactinfo.instid)=='6807d313bae63'?true:false,scale:2};var SectionTitle=function SectionTitle(){return/*#__PURE__*/React.createElement("p",{"class":sectionproperties.sectiontitlefontfamily=='Pacifico'?' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Playfair'?' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Great Vibes'?' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Quicksand'?' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Satisfy'?' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{color:sectionproperties.sectionTitleColor,fontWeight:sectionproperties.sectionTitleFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':''}},sectionproperties.sectionTitleContent=='MORE THAN 15 YEARS OF EXPERIENCE'&&/*#__PURE__*/React.createElement("div",{"class":"w-100 ",style:{textAlign:'center',color:sectionproperties.sectionTitleColor}},/*#__PURE__*/React.createElement(TypeAnimation,{sequence:[// Same substring at the start will only be typed out once, initially
|
|
78679
|
-
sectionproperties.sectionTitleContent,1000// wait 1s before replacing "Mice" with "Hamsters"
|
|
78680
|
-
],wrapper:"span",speed:50,style:{fontSize:'1em',display:'inline-block',color:sectionproperties.sectionTitleColor},repeat:Infinity})),sectionproperties.sectionTitleContent=='MORE THAN 1,000,000 CLIENTS'&&/*#__PURE__*/React.createElement("div",{"class":"w-100 ",style:{textAlign:'center',color:sectionproperties.sectionTitleColor}},/*#__PURE__*/React.createElement(TypeAnimation,{sequence:[// Same substring at the start will only be typed out once, initially
|
|
78681
|
-
sectionproperties.sectionTitleContent,1000// wait 1s before replacing "Mice" with "Hamsters"
|
|
78682
|
-
],wrapper:"span",speed:50,style:{fontSize:'1em',display:'inline-block',color:sectionproperties.sectionTitleColor},repeat:Infinity})),sectionproperties.sectiontitlestyle=='Line Under Text'&§ionproperties.sectionTitleContent!='MORE THAN 15 YEARS OF EXPERIENCE'&§ionproperties.sectionTitleContent!='MORE THAN 1,000,000 CLIENTS'&&/*#__PURE__*/React.createElement("span",{"class":"".concat(section_styles.sectiontitlespan)+' pl-md-2 pr-md-2 left-md-0 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar),sectionproperties.sectiontitlestyle=='Line Before Text'&§ionproperties.sectionTitleContent!='MORE THAN 15 YEARS OF EXPERIENCE'&§ionproperties.sectionTitleContent!='MORE THAN 1,000,000 CLIENTS'&&/*#__PURE__*/React.createElement("span",{"class":"".concat(section_styles.sectiontitlespan2)+' pl-3 pr-3 pl-md-2 pr-md-2 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar));};var SectionDescription=function SectionDescription(){if(sectionproperties.descriptionContentEn=='Amir Mortada Mansour'){return/*#__PURE__*/React.createElement("div",{className:"title-wrapper"},/*#__PURE__*/React.createElement("span",{className:"bg-text"},langdetect=='en'?'About':''),/*#__PURE__*/React.createElement("p",{className:section_styles.descriptionstyles+' section-title d-flex align-items-center justify-content-start '},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr));}else {return/*#__PURE__*/React.createElement("p",{"class":sectionproperties.descFontFamily=='Pacifico'?section_styles.descriptionstyles+' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Playfair'?section_styles.descriptionstyles+' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Great Vibes'?section_styles.descriptionstyles+' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Quicksand'?section_styles.descriptionstyles+' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Satisfy'?section_styles.descriptionstyles+' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':section_styles.descriptionstyles+' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{}},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr);}};var Content=function Content(){var _authdetailsContext$i5,_authdetailsContext$i6;return/*#__PURE__*/React.createElement("div",{"class":sectionproperties.sectiontitleposition=='Centered'?sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0',style:{alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':'',paddingLeft:sectionproperties.marginhorizontal+'px',paddingRight:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i5=authdetailsContext.instinfo)===null||_authdetailsContext$i5===void 0?void 0:_authdetailsContext$i5.contactinfo.instid)=='6978ef34b2564'?50:sectionproperties.marginhorizontal+'px',borderRadius:sectionproperties.reservation_borderradius+'px'}},/*#__PURE__*/React.createElement("div",{"class":sectionproperties.justifyContentCenter=='Centered'?section_styles.rightinnercont+' row m-0 w-100 h-100 ':section_styles.rightinnercont+' row m-0 w-100 mb-auto h-100 ',style:{}},sectionproperties.sectionTitleFontSize!=0&&/*#__PURE__*/React.createElement("div",{"class":sectionproperties.sectionstyleresponsive=='Image above text'?'col-lg-12 pl-0 pr-0 d-flex mt-md-4':'col-lg-12 pl-0 pr-0 d-flex ',style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.sectionTitleMarginBottom+'px',marginTop:sectionproperties.sectionTitleMarginTop+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React.createElement("div",{"class":'d-flex align-items-center flex-row d-sm-none mt-sm-2 ',style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSize+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle()),/*#__PURE__*/React.createElement("div",{"class":'d-none align-items-center flex-row d-sm-flex mt-sm-2 mx-md-2',style:{position:'relative',justifyContent:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i6=authdetailsContext.instinfo)===null||_authdetailsContext$i6===void 0?void 0:_authdetailsContext$i6.contactinfo.instid)=='6978ef34b2564'?'center':sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSizeresp+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle())),sectionproperties.prodCatShow=='Show'&&/*#__PURE__*/React.createElement("div",{"class":"col-lg-12 pl-0 pr-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.descriptionMarginBottom+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React.createElement("div",{"class":"d-flex align-items-center flex-row d-sm-none mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSize+'px',marginLeft:langdetect=='en'?sectionproperties.description_marginLeft+'px':sectionproperties.description_marginRight+'px',marginRight:langdetect=='en'?sectionproperties.description_marginRight+'px':sectionproperties.description_marginLeft+'px',paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px'}},SectionDescription()),/*#__PURE__*/React.createElement("div",{"class":"d-none align-items-center flex-row d-sm-flex mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSizeResp+'px'}},SectionDescription())),/*#__PURE__*/React.createElement("div",{"class":"col-lg-12 p-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.text2centered=='Centered'?'center':'start',marginBottom:sectionproperties.slideshowText2Content_marginBottom+'px'}},/*#__PURE__*/React.createElement("p",{"class":sectionproperties.text2centered=='Justify'?section_styles.editortext+' pb-0 pl-md-2 pr-md-2 ':section_styles.editortext+' pb-0 text-md-center pl-md-2 pr-md-2 ',style:{},dangerouslySetInnerHTML:{__html:langdetect=='en'?sectionproperties.contenteditor:sectionproperties.text2editortextar}})),sectionproperties.generalbtn_show=='Show'&&/*#__PURE__*/React.createElement("div",{"class":sectionproperties.generalbtn_position=='Centered'?'col-lg-12 p-0 allcentered':'col-lg-12 p-0 text-start'},/*#__PURE__*/React.createElement("button",{"class":"".concat(section_styles.btn)+' m-md-0 ',onClick:function onClick(){if(sectionproperties.btntype=='WhatsApp'){var _authdetailsContext$i7;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i7=authdetailsContext.instinfo)===null||_authdetailsContext$i7===void 0?void 0:_authdetailsContext$i7.whatsappnumber)!=null){var _authdetailsContext$i8;window.open('https://api.whatsapp.com/send?phone='+(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i8=authdetailsContext.instinfo)===null||_authdetailsContext$i8===void 0?void 0:_authdetailsContext$i8.whatsappnumber),'_blank');}}else if(sectionproperties.btntype=='App/Web Page'){// window.open(sectionproperties.btnlink, '_target');
|
|
78728
|
+
margin:0,padding:0,objectFit:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i2=authdetailsContext.instinfo)===null||_authdetailsContext$i2===void 0?void 0:_authdetailsContext$i2.instid)=='6978ef34b2564'?'cover':sectionproperties.bgcovercontain,borderTopLeftRadius:langdetect=='en'?sectionproperties.image_bordertopleftradius+'px':sectionproperties.image_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.image_bordertoprightradius+'px':sectionproperties.image_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.image_borderBottomLeftRadius+'px':sectionproperties.image_borderBottomRightRadius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.image_borderBottomRightRadius+'px':sectionproperties.image_borderBottomLeftRadius+'px','@media (max-width: 800px)':{height:sectionproperties.height_responsive==0?'auto':sectionproperties.height_responsive+'%',width:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i3=authdetailsContext.instinfo)===null||_authdetailsContext$i3===void 0?void 0:_authdetailsContext$i3.contactinfo.instid)=='68527dfef348b'?sectionproperties.image_width_resp+'%':''}}),editortext:css({textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start',color:sectionproperties.slideshowText2ContentColor,fontSize:sectionproperties.slideshowText2ContentFontSize+'px',fontWeight:sectionproperties.slideshowText2ContentFontWeight,paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px','@media (max-width: 800px)':{fontSize:sectionproperties.slideshowText2ContentFontSize_resp+'px',textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start'}}),cont1:css({width:sectionproperties.width+'vw','@media (max-width: 800px)':{width:sectionproperties.widthresponsive+'vw'}}),rightinnercont:css({background:sectionproperties.reservation_bgcolor,borderRadius:sectionproperties.reservation_borderradius+'px',paddingLeft:sectionproperties.innersectionpaddinghorizontal+'px',paddingRight:sectionproperties.innersectionpaddinghorizontal+'px','@media (max-width: 800px)':{paddingLeft:sectionproperties.innersectionpaddinghorizontalresp+'px',paddingRight:sectionproperties.innersectionpaddinghorizontalresp+'px'}}),descriptionstyles:css({color:sectionproperties.prodCatColor,fontWeight:sectionproperties.prodCatFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':langdetect=='en'?'left':'right','@media (max-width: 800px)':{textAlign:'center'}}),conteco:css({height:400,'@media (max-width: 800px)':{height:200}})};var Slideshowsettings={indicators:false,arrows:true,pauseOnHover:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i4=authdetailsContext.instinfo)===null||_authdetailsContext$i4===void 0?void 0:_authdetailsContext$i4.contactinfo.instid)=='6807d313bae63'?true:false,scale:2};var SectionTitle=function SectionTitle(){return/*#__PURE__*/React.createElement("p",{"class":sectionproperties.sectiontitlefontfamily=='Pacifico'?' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Playfair'?' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Great Vibes'?' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Quicksand'?' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Satisfy'?' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{color:sectionproperties.sectionTitleColor,fontWeight:sectionproperties.sectionTitleFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':''}},sectionproperties.sectiontitlestyle=='Line Under Text'&&/*#__PURE__*/React.createElement("span",{"class":"".concat(section_styles.sectiontitlespan)+' pl-md-2 pr-md-2 left-md-0 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar),sectionproperties.sectiontitlestyle=='Line Before Text'&&/*#__PURE__*/React.createElement("span",{"class":"".concat(section_styles.sectiontitlespan2)+' pl-3 pr-3 pl-md-2 pr-md-2 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar));};var SectionDescription=function SectionDescription(){if(sectionproperties.descriptionContentEn=='Amir Mortada Mansour'){return/*#__PURE__*/React.createElement("div",{className:"title-wrapper"},/*#__PURE__*/React.createElement("span",{className:"bg-text"},langdetect=='en'?'About':''),/*#__PURE__*/React.createElement("p",{className:section_styles.descriptionstyles+' section-title d-flex align-items-center justify-content-start '},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr));}else {return/*#__PURE__*/React.createElement("p",{"class":sectionproperties.descFontFamily=='Pacifico'?section_styles.descriptionstyles+' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Playfair'?section_styles.descriptionstyles+' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Great Vibes'?section_styles.descriptionstyles+' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Quicksand'?section_styles.descriptionstyles+' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Satisfy'?section_styles.descriptionstyles+' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':section_styles.descriptionstyles+' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{}},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr);}};var Content=function Content(){var _authdetailsContext$i5,_authdetailsContext$i6;return/*#__PURE__*/React.createElement("div",{"class":sectionproperties.sectiontitleposition=='Centered'?sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0',style:{alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':'',paddingLeft:sectionproperties.marginhorizontal+'px',paddingRight:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i5=authdetailsContext.instinfo)===null||_authdetailsContext$i5===void 0?void 0:_authdetailsContext$i5.contactinfo.instid)=='6978ef34b2564'?50:sectionproperties.marginhorizontal+'px',borderRadius:sectionproperties.reservation_borderradius+'px'}},/*#__PURE__*/React.createElement("div",{"class":sectionproperties.justifyContentCenter=='Centered'?section_styles.rightinnercont+' row m-0 w-100 h-100 ':section_styles.rightinnercont+' row m-0 w-100 mb-auto h-100 ',style:{}},sectionproperties.sectionTitleFontSize!=0&&/*#__PURE__*/React.createElement("div",{"class":sectionproperties.sectionstyleresponsive=='Image above text'?'col-lg-12 pl-0 pr-0 d-flex mt-md-4':'col-lg-12 pl-0 pr-0 d-flex ',style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.sectionTitleMarginBottom+'px',marginTop:sectionproperties.sectionTitleMarginTop+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React.createElement("div",{"class":'d-flex align-items-center flex-row d-sm-none mt-sm-2 ',style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSize+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle()),/*#__PURE__*/React.createElement("div",{"class":'d-none align-items-center flex-row d-sm-flex mt-sm-2 mx-md-2',style:{position:'relative',justifyContent:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i6=authdetailsContext.instinfo)===null||_authdetailsContext$i6===void 0?void 0:_authdetailsContext$i6.contactinfo.instid)=='6978ef34b2564'?'center':sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSizeresp+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle())),sectionproperties.prodCatShow=='Show'&&/*#__PURE__*/React.createElement("div",{"class":"col-lg-12 pl-0 pr-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.descriptionMarginBottom+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React.createElement("div",{"class":"d-flex align-items-center flex-row d-sm-none mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSize+'px',marginLeft:langdetect=='en'?sectionproperties.description_marginLeft+'px':sectionproperties.description_marginRight+'px',marginRight:langdetect=='en'?sectionproperties.description_marginRight+'px':sectionproperties.description_marginLeft+'px',paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px'}},SectionDescription()),/*#__PURE__*/React.createElement("div",{"class":"d-none align-items-center flex-row d-sm-flex mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSizeResp+'px'}},SectionDescription())),/*#__PURE__*/React.createElement("div",{"class":"col-lg-12 p-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.text2centered=='Centered'?'center':'start',marginBottom:sectionproperties.slideshowText2Content_marginBottom+'px'}},/*#__PURE__*/React.createElement("p",{"class":sectionproperties.text2centered=='Justify'?section_styles.editortext+' pb-0 pl-md-2 pr-md-2 ':section_styles.editortext+' pb-0 text-md-center pl-md-2 pr-md-2 ',style:{},dangerouslySetInnerHTML:{__html:langdetect=='en'?sectionproperties.contenteditor:sectionproperties.text2editortextar}})),sectionproperties.generalbtn_show=='Show'&&/*#__PURE__*/React.createElement("div",{"class":sectionproperties.generalbtn_position=='Centered'?'col-lg-12 p-0 allcentered':'col-lg-12 p-0 text-start'},/*#__PURE__*/React.createElement("button",{"class":"".concat(section_styles.btn)+' m-md-0 ',onClick:function onClick(){if(sectionproperties.btntype=='WhatsApp'){var _authdetailsContext$i7;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i7=authdetailsContext.instinfo)===null||_authdetailsContext$i7===void 0?void 0:_authdetailsContext$i7.whatsappnumber)!=null){var _authdetailsContext$i8;window.open('https://api.whatsapp.com/send?phone='+(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i8=authdetailsContext.instinfo)===null||_authdetailsContext$i8===void 0?void 0:_authdetailsContext$i8.whatsappnumber),'_blank');}}else if(sectionproperties.btntype=='App/Web Page'){// window.open(sectionproperties.btnlink, '_target');
|
|
78683
78729
|
routingcountext(sectionproperties.btnlink,false,'');}else {window.open(sectionproperties.btnlink,'_blank');}},style:{marginLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',marginRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px'}},langdetect=='en'?sectionproperties.generalbtn_content:sectionproperties.slideshow_btn_text_ar)),/*#__PURE__*/React.createElement("div",{"class":"col-lg-12 p-0 justify-content-sm-center mb-sm-4 align-items-center",style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':'',display:sectionproperties.fbbtn_show=='Hide'&§ionproperties.instbtn_show=='Hide'&§ionproperties.youtbtn_show=='Hide'?'none':'flex'}},sectionproperties.fbbtn_show=='Show'&&/*#__PURE__*/React.createElement("div",{"class":"".concat(section_styles.facebook_btn)+' d-flex align-items-center justify-content-center ml-3 mr-3 ',onClick:function onClick(){var _authdetailsContext$i9;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i9=authdetailsContext.instinfo)===null||_authdetailsContext$i9===void 0?void 0:_authdetailsContext$i9.facebooklink)!=null){var _authdetailsContext$i0;window.open(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i0=authdetailsContext.instinfo)===null||_authdetailsContext$i0===void 0?void 0:_authdetailsContext$i0.facebooklink,'_blank');}}},/*#__PURE__*/React.createElement(FaFacebookF,{size:sectionproperties.facebkbtnniconfontsize})),sectionproperties.instbtn_show=='Show'&&/*#__PURE__*/React.createElement("div",{"class":"".concat(section_styles.instgram_btn)+' d-flex align-items-center justify-content-center ml-3 mr-3 ',onClick:function onClick(){var _authdetailsContext$i1;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i1=authdetailsContext.instinfo)===null||_authdetailsContext$i1===void 0?void 0:_authdetailsContext$i1.instagramlink)!=null){var _authdetailsContext$i10;window.open(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i10=authdetailsContext.instinfo)===null||_authdetailsContext$i10===void 0?void 0:_authdetailsContext$i10.instagramlink,'_blank');}}},/*#__PURE__*/React.createElement(AiFillInstagram,{size:sectionproperties.instgrambtniconfontsize})),sectionproperties.youtbtn_show=='Show'&&/*#__PURE__*/React.createElement("div",{"class":"".concat(section_styles.youtube_btn)+' d-flex align-items-center justify-content-center ml-3 mr-3 ',onClick:function onClick(){var _authdetailsContext$i11;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i11=authdetailsContext.instinfo)===null||_authdetailsContext$i11===void 0?void 0:_authdetailsContext$i11.whatsappnumber)!=null){var _authdetailsContext$i12;window.open('https://api.whatsapp.com/send?phone='+(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i12=authdetailsContext.instinfo)===null||_authdetailsContext$i12===void 0?void 0:_authdetailsContext$i12.whatsappnumber),'_blank');}}},/*#__PURE__*/React.createElement(FaWhatsapp,{size:sectionproperties.youtubebtniconfontsize})))));};var Image=function Image(){var _authdetailsContext$i13,_authdetailsContext$i14,_authdetailsContext$i15,_authdetailsContext$i16,_authdetailsContext$i17,_imagesarray$,_authdetailsContext$i18,_imagesarray$7,_imagesarray$8,_authdetailsContext$i19,_imagesarray$9,_imagesarray$0,_authdetailsContext$i20;return/*#__PURE__*/React.createElement("div",{"class":(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i13=authdetailsContext.instinfo)===null||_authdetailsContext$i13===void 0?void 0:_authdetailsContext$i13.instid)=='6995aff955278'&§ionproperties.descriptionContentEn=='About Elite Egy Card'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0 image-col':// tms
|
|
78684
78730
|
(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i14=authdetailsContext.instinfo)===null||_authdetailsContext$i14===void 0?void 0:_authdetailsContext$i14.instid)=='6824564a386c2'&§ionproperties.sectionTitleContent=='Welcome to TMS'?'col-lg-3 col-md-12 d-flex align-items-center justify-content-center justify-content-md-center h-auto p-md-0':(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i15=authdetailsContext.instinfo)===null||_authdetailsContext$i15===void 0?void 0:_authdetailsContext$i15.instid)=='6995aff955278'&§ionproperties.descriptionContentEn=='Get Your Card Now'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0 image-col2':(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i16=authdetailsContext.instinfo)===null||_authdetailsContext$i16===void 0?void 0:_authdetailsContext$i16.instid)=='6978ef34b2564'?'col-lg-8 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i17=authdetailsContext.instinfo)===null||_authdetailsContext$i17===void 0?void 0:_authdetailsContext$i17.contactinfo.instid)=='6935c04816952'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':sectionproperties.image_height==0?sectionproperties.sectionstyle=='Image on right'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':sectionproperties.sectionstyle=='Image on left'?'col-lg-6 col-md-12 d-flex justify-content-start justify-content-md-center p-md-0':'col-lg-6 col-md-12 d-flex justify-content-start justify-content-md-center p-md-0',style:{paddingLeft:sectionproperties.marginhorizontal+'px',paddingRight:sectionproperties.marginhorizontal+'px',cursor:((_imagesarray$=imagesarray[0])===null||_imagesarray$===void 0?void 0:_imagesarray$.IsClickableimg)=='Yes'?'pointer':'default',background:sectionproperties.image_bgtransparent=='Transparent'?'transparent':sectionproperties.image_bgcolor},onClick:function onClick(){var _imagesarray$2;if(((_imagesarray$2=imagesarray[0])===null||_imagesarray$2===void 0?void 0:_imagesarray$2.IsClickableimg)=='Yes'){var _imagesarray$3,_imagesarray$4;if(((_imagesarray$3=imagesarray[0])===null||_imagesarray$3===void 0?void 0:_imagesarray$3.clickableimg_page_route)!=undefined&&((_imagesarray$4=imagesarray[0])===null||_imagesarray$4===void 0?void 0:_imagesarray$4.clickableimg_page_route.length)!=0){var _imagesarray$5;routingcountext((_imagesarray$5=imagesarray[0])===null||_imagesarray$5===void 0?void 0:_imagesarray$5.clickableimg_page_route,false,'');}else {var _imagesarray$6;routingcountext(StaticPagesLinksContext.GeneralProductsComponent,true,'collections/'+((_imagesarray$6=imagesarray[0])===null||_imagesarray$6===void 0?void 0:_imagesarray$6.Clickableimg_getcoection));}}}},imagesarray.length!=0&&(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i18=authdetailsContext.instinfo)===null||_authdetailsContext$i18===void 0?void 0:_authdetailsContext$i18.contactinfo.instid)!='691b34a54d742'&&/*#__PURE__*/React.createElement(Imagekitimagecomp,{"class":section_styles.imageimage,urlEndpoint:ikimagecredcontext===null||ikimagecredcontext===void 0?void 0:ikimagecredcontext.ikimageendpoint,publicKey:ikimagecredcontext===null||ikimagecredcontext===void 0?void 0:ikimagecredcontext.ikimagepublickey,path:langdetect=='en'?'/tr:w-'+sectionproperties.imagetr_w+',h-'+sectionproperties.imagetr_h+'/'+((_imagesarray$7=imagesarray[0])===null||_imagesarray$7===void 0?void 0:_imagesarray$7.bgsection_image):'/tr:w-'+sectionproperties.imagetr_w+',h-'+sectionproperties.imagetr_h+'/'+((_imagesarray$8=imagesarray[0])===null||_imagesarray$8===void 0?void 0:_imagesarray$8.bgsection_image_ar)// style={{
|
|
78685
78731
|
// transform:
|
package/dist/index.umd.js
CHANGED
|
@@ -77190,6 +77190,7 @@
|
|
|
77190
77190
|
function ownKeys$12(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
77191
77191
|
function _objectSpread$12(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$12(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$12(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
77192
77192
|
var MarqueeSection = function MarqueeSection(props) {
|
|
77193
|
+
var _authdetailsContext$i, _authdetailsContext$i4;
|
|
77193
77194
|
var _useState = React.useState(''),
|
|
77194
77195
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
77195
77196
|
sectionproperties = _useState2[0],
|
|
@@ -77288,6 +77289,19 @@
|
|
|
77288
77289
|
}
|
|
77289
77290
|
}, [sectionproperties]);
|
|
77290
77291
|
if (!visible) return null;
|
|
77292
|
+
var marqueeRef = React.useRef(null);
|
|
77293
|
+
React.useEffect(function () {
|
|
77294
|
+
if (!marqueeRef.current) return;
|
|
77295
|
+
var updateWidth = function updateWidth() {
|
|
77296
|
+
var firstSetWidth = marqueeRef.current.scrollWidth / 2;
|
|
77297
|
+
marqueeRef.current.style.setProperty('--marquee-width', "-".concat(firstSetWidth, "px"));
|
|
77298
|
+
};
|
|
77299
|
+
updateWidth();
|
|
77300
|
+
window.addEventListener('resize', updateWidth);
|
|
77301
|
+
return function () {
|
|
77302
|
+
window.removeEventListener('resize', updateWidth);
|
|
77303
|
+
};
|
|
77304
|
+
}, [cardsarray]);
|
|
77291
77305
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77292
77306
|
"class": section_styles.container + ' row ml-0 mr-0 d-flex justify-content-between w-100 align-items-center '
|
|
77293
77307
|
// data-aos={'fade-up'}
|
|
@@ -77298,13 +77312,13 @@
|
|
|
77298
77312
|
borderLeft: sectionproperties.borderverticalwidth + 'px solid ' + sectionproperties.sectioncardbordercolor,
|
|
77299
77313
|
borderRight: sectionproperties.borderverticalwidth + 'px solid ' + sectionproperties.sectioncardbordercolor
|
|
77300
77314
|
}
|
|
77301
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77315
|
+
}, (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i = authdetailsContext.instinfo) === null || _authdetailsContext$i === void 0 ? void 0 : _authdetailsContext$i.contactinfo.instid) != '6a0e0bcb82d2d' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77302
77316
|
"class": "rotating-text-container rotating-text-containermarqueesection"
|
|
77303
77317
|
}, /*#__PURE__*/React__default["default"].createElement("span", {
|
|
77304
77318
|
"class": sectionproperties.marqueemovementdirection == 'Right to Left' ? 'd-flex flex-row align-items-center rotating-text2' : 'd-flex flex-row align-items-center rotating-text-reverse2',
|
|
77305
77319
|
style: {}
|
|
77306
77320
|
}, [].concat(_toConsumableArray__default["default"](cardsarray), _toConsumableArray__default["default"](cardsarray)).map(function (cardinfoitem, cardinfoindex) {
|
|
77307
|
-
var _authdetailsContext$
|
|
77321
|
+
var _authdetailsContext$i2;
|
|
77308
77322
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77309
77323
|
"class": section_styles.marqueeimagecontainer + ' ',
|
|
77310
77324
|
style: {
|
|
@@ -77326,15 +77340,51 @@
|
|
|
77326
77340
|
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
77327
77341
|
"class": section_styles.textstyle + ' mb-0 p-0 ',
|
|
77328
77342
|
style: {
|
|
77329
|
-
cursor: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
77343
|
+
cursor: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i2 = authdetailsContext.instinfo) === null || _authdetailsContext$i2 === void 0 ? void 0 : _authdetailsContext$i2.contactinfo.instid) == '691dcd6e974bb' ? 'pointer' : ''
|
|
77330
77344
|
},
|
|
77331
77345
|
onClick: function onClick() {
|
|
77332
|
-
var _authdetailsContext$
|
|
77333
|
-
if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$
|
|
77346
|
+
var _authdetailsContext$i3;
|
|
77347
|
+
if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i3 = authdetailsContext.instinfo) === null || _authdetailsContext$i3 === void 0 ? void 0 : _authdetailsContext$i3.contactinfo.instid) == '691dcd6e974bb') {
|
|
77334
77348
|
window.open('https://www.instagram.com', '_blank');
|
|
77335
77349
|
}
|
|
77336
77350
|
}
|
|
77337
77351
|
}, langdetect == 'en' ? cardinfoitem.arraytitleen : cardinfoitem.arraytitlear));
|
|
77352
|
+
}))), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i4 = authdetailsContext.instinfo) === null || _authdetailsContext$i4 === void 0 ? void 0 : _authdetailsContext$i4.contactinfo.instid) == '6a0e0bcb82d2d' && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77353
|
+
className: "rotating-text-containersd rotating-text-containermarqueesection"
|
|
77354
|
+
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77355
|
+
ref: marqueeRef,
|
|
77356
|
+
className: sectionproperties.marqueemovementdirection === 'Right to Left' ? 'rotating-text2sd' : 'rotating-text-reverse2sd'
|
|
77357
|
+
}, [].concat(_toConsumableArray__default["default"](cardsarray), _toConsumableArray__default["default"](cardsarray)).map(function (cardinfoitem, cardinfoindex) {
|
|
77358
|
+
var _authdetailsContext$i5;
|
|
77359
|
+
return /*#__PURE__*/React__default["default"].createElement("div", {
|
|
77360
|
+
key: cardinfoindex,
|
|
77361
|
+
className: section_styles.marqueeimagecontainer,
|
|
77362
|
+
style: {
|
|
77363
|
+
textAlign: 'center',
|
|
77364
|
+
alignItems: 'center',
|
|
77365
|
+
alignContent: 'center'
|
|
77366
|
+
}
|
|
77367
|
+
}, cardinfoitem.marqueeimage != null && /*#__PURE__*/React__default["default"].createElement(Imagekitimagecomp, {
|
|
77368
|
+
"class": section_styles.marqueeimage,
|
|
77369
|
+
urlEndpoint: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimageendpoint,
|
|
77370
|
+
publicKey: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimagepublickey,
|
|
77371
|
+
path: '/tr:w-' + sectionproperties.imagetr_w + ',h-' + sectionproperties.imagetr_h + '/' + cardinfoitem.marqueeimage,
|
|
77372
|
+
style: {
|
|
77373
|
+
objectFit: sectionproperties.bgcovercontain === 'Contain' ? 'contain' : 'cover',
|
|
77374
|
+
borderRadius: sectionproperties.imageborderradius + 'px'
|
|
77375
|
+
}
|
|
77376
|
+
}), /*#__PURE__*/React__default["default"].createElement("p", {
|
|
77377
|
+
className: section_styles.textstyle + ' mb-0 p-0',
|
|
77378
|
+
style: {
|
|
77379
|
+
cursor: (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i5 = authdetailsContext.instinfo) === null || _authdetailsContext$i5 === void 0 || (_authdetailsContext$i5 = _authdetailsContext$i5.contactinfo) === null || _authdetailsContext$i5 === void 0 ? void 0 : _authdetailsContext$i5.instid) === '691dcd6e974bb' ? 'pointer' : ''
|
|
77380
|
+
},
|
|
77381
|
+
onClick: function onClick() {
|
|
77382
|
+
var _authdetailsContext$i6;
|
|
77383
|
+
if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i6 = authdetailsContext.instinfo) === null || _authdetailsContext$i6 === void 0 || (_authdetailsContext$i6 = _authdetailsContext$i6.contactinfo) === null || _authdetailsContext$i6 === void 0 ? void 0 : _authdetailsContext$i6.instid) === '691dcd6e974bb') {
|
|
77384
|
+
window.open('https://www.instagram.com', '_blank');
|
|
77385
|
+
}
|
|
77386
|
+
}
|
|
77387
|
+
}, langdetect === 'en' ? cardinfoitem.arraytitleen : cardinfoitem.arraytitlear));
|
|
77338
77388
|
}))));
|
|
77339
77389
|
};
|
|
77340
77390
|
|
|
@@ -78530,11 +78580,7 @@
|
|
|
78530
78580
|
paddingBottom:sectionproperties.paddingBottom,'@media (max-width: 800px)':{paddingTop:sectionproperties.paddingverticalresponsive+'px',paddingBottom:sectionproperties.paddingverticalresponsive+'px'}}),btn:glamor.css({width:sectionproperties.generalbtn_width+'px',height:sectionproperties.generalbtn_height+'px',backgroundColor:sectionproperties.generalbtn_bgColor,color:sectionproperties.generalbtn_textColor,borderTopLeftRadius:langdetect=='en'?sectionproperties.generalbtn_bordertopleftradius+'px':sectionproperties.generalbtn_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.generalbtn_bordertoprightradius+'px':sectionproperties.generalbtn_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomleftradius+'px':sectionproperties.generalbtn_borderbottomrightradius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomrightradius+'px':sectionproperties.generalbtn_borderbottomleftradius+'px',border:sectionproperties.generalbtn_borderwidth+'px solid '+sectionproperties.generalbtn_bordercolor,fontSize:sectionproperties.generalbtn_fontsize+'px',fontWeight:sectionproperties.generalbtn_fontweight,marginTop:sectionproperties.generalbtn_marginTop+'px',marginBottom:sectionproperties.generalbtn_marginBottom+'px',transition:'.3s',cursor:'pointer',// here..
|
|
78531
78581
|
boxShadow:sectionproperties.slideshow_btn_text_chin=='get'?'0 0 10px #858484':'none',':hover':{backgroundColor:sectionproperties.generalbtn_bgColoronhover,color:sectionproperties.generalbtn_textColoronhover}}),btn2:glamor.css({width:sectionproperties.generalbtn_width+'px',height:sectionproperties.generalbtn_height+'px',backgroundColor:sectionproperties.generalbtn_textColor,color:sectionproperties.generalbtn_bgColor,borderTopLeftRadius:langdetect=='en'?sectionproperties.generalbtn_bordertopleftradius+'px':sectionproperties.generalbtn_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.generalbtn_bordertoprightradius+'px':sectionproperties.generalbtn_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomleftradius+'px':sectionproperties.generalbtn_borderbottomrightradius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.generalbtn_borderbottomrightradius+'px':sectionproperties.generalbtn_borderbottomleftradius+'px',border:'1px solid '+sectionproperties.generalbtn_bgColor,fontSize:sectionproperties.generalbtn_fontsize+'px',fontWeight:sectionproperties.generalbtn_fontweight,marginTop:sectionproperties.generalbtn_marginTop+'px',marginBottom:sectionproperties.generalbtn_marginBottom+'px',transition:'.3s',cursor:'pointer',// here..
|
|
78532
78582
|
boxShadow:sectionproperties.slideshow_btn_text_chin=='get'?'0 0 10px #858484':'none',':hover':{backgroundColor:sectionproperties.generalbtn_bgColor,color:sectionproperties.generalbtn_textColor}}),sectiontitlespan:glamor.css({paddingLeft:sectionproperties.sectiontitleborderradius==0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,paddingRight:sectionproperties.sectiontitleborderradius==0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0,':after':{position:'absolute',bottom:0,right:langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':'',left:langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':'',content:'s',fontSize:'0',height:'3px',width:sectionproperties.sectitle_lineafterwidth+'%',display:'block',backgroundColor:sectionproperties.linebgcolor,borderRadius:'6px'}}),facebook_btn:glamor.css({cursor:'pointer',background:sectionproperties.facebkbtnn_bgtransparent=='Transparent'?'transparent':sectionproperties.facebkbtnnbgColor,width:sectionproperties.facebkbtnnWidth+'px',height:sectionproperties.facebkbtnnHeight+'px',borderRadius:sectionproperties.facebkbtnn_borderRadius+'px',color:sectionproperties.facebkbtnnTextcolor,border:sectionproperties.facebkbtnnborderwidth+'px solid '+sectionproperties.facebkbtnnbordercolor,transition:'.3s',':hover':{background:sectionproperties.facebkbtnntransparentbgcoloronhover=='Transparent'?'Transparent':sectionproperties.facebkbtnnbgColoronhover,color:sectionproperties.facebkbtnnTextcoloronhover,borderColor:sectionproperties.facebkbtnnTextcoloronhover}}),youtube_btn:glamor.css({cursor:'pointer',background:sectionproperties.youtubebtn_bgtransparent=='Transparent'?'transparent':sectionproperties.youtubebtnbgColor,width:sectionproperties.youtubebtnWidth+'px',height:sectionproperties.youtubebtnHeight+'px',borderRadius:sectionproperties.youtubebtn_borderRadius+'px',color:sectionproperties.youtubebtnTextcolor,border:sectionproperties.youtubebtnborderwidth+'px solid '+sectionproperties.youtubebtnbordercolor,transition:'.3s',':hover':{background:sectionproperties.youtubebtn_transparentbgcoloronhover=='Transparent'?'transparent':sectionproperties.youtubebtnbgColoronhover,color:sectionproperties.youtubebtnTextcoloronhover,borderColor:sectionproperties.youtubebtnTextcoloronhover}}),instgram_btn:glamor.css({cursor:'pointer',background:sectionproperties.instgrambtn_bgtransparent=='Transparent'?'transparent':sectionproperties.instgrambtnbgColor,width:sectionproperties.instgrambtnWidth+'px',height:sectionproperties.instgrambtnHeight+'px',borderRadius:sectionproperties.instgrambtn_borderRadius+'px',color:sectionproperties.instgrambtnTextcolor,border:sectionproperties.instgrambtnborderwidth+'px solid '+sectionproperties.instgrambtnbordercolor,transition:'.3s',':hover':{background:sectionproperties.instgrambtn_transparentbgcoloronhover=='Transparent'?'transparent':sectionproperties.instgrambtnbgColoronhover,color:sectionproperties.instgrambtnTextcoloronhover,borderColor:sectionproperties.instgrambtnTextcoloronhover}}),sectiontitlespan2:glamor.css({':after':{position:'absolute',content:'s',fontSize:'0',bottom:0,right:0,left:0,display:'block',height:'100%',width:sectionproperties.sectitle_lineafterwidth+'%',backgroundColor:sectionproperties.linebgcolor,borderRadius:'5px'}}),imageimage:glamor.css({width:sectionproperties.image_width+'%',height:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i=authdetailsContext.instinfo)===null||_authdetailsContext$i===void 0?void 0:_authdetailsContext$i.instid)=='6978ef34b2564'?'100vh':sectionproperties.percentagepixel!='Percentage'?sectionproperties.image_height==0?'auto':sectionproperties.image_height+'px':sectionproperties.image_height+'%',// height: sectionproperties.image_height == 0 ? 'auto' : sectionproperties.image_height + 'px',
|
|
78533
|
-
margin:0,padding:0,objectFit:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i2=authdetailsContext.instinfo)===null||_authdetailsContext$i2===void 0?void 0:_authdetailsContext$i2.instid)=='6978ef34b2564'?'cover':sectionproperties.bgcovercontain,borderTopLeftRadius:langdetect=='en'?sectionproperties.image_bordertopleftradius+'px':sectionproperties.image_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.image_bordertoprightradius+'px':sectionproperties.image_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.image_borderBottomLeftRadius+'px':sectionproperties.image_borderBottomRightRadius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.image_borderBottomRightRadius+'px':sectionproperties.image_borderBottomLeftRadius+'px','@media (max-width: 800px)':{height:sectionproperties.height_responsive==0?'auto':sectionproperties.height_responsive+'%',width:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i3=authdetailsContext.instinfo)===null||_authdetailsContext$i3===void 0?void 0:_authdetailsContext$i3.contactinfo.instid)=='68527dfef348b'?sectionproperties.image_width_resp+'%':''}}),editortext:glamor.css({textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start',color:sectionproperties.slideshowText2ContentColor,fontSize:sectionproperties.slideshowText2ContentFontSize+'px',fontWeight:sectionproperties.slideshowText2ContentFontWeight,paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px','@media (max-width: 800px)':{fontSize:sectionproperties.slideshowText2ContentFontSize_resp+'px',textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start'}}),cont1:glamor.css({width:sectionproperties.width+'vw','@media (max-width: 800px)':{width:sectionproperties.widthresponsive+'vw'}}),rightinnercont:glamor.css({background:sectionproperties.reservation_bgcolor,borderRadius:sectionproperties.reservation_borderradius+'px',paddingLeft:sectionproperties.innersectionpaddinghorizontal+'px',paddingRight:sectionproperties.innersectionpaddinghorizontal+'px','@media (max-width: 800px)':{paddingLeft:sectionproperties.innersectionpaddinghorizontalresp+'px',paddingRight:sectionproperties.innersectionpaddinghorizontalresp+'px'}}),descriptionstyles:glamor.css({color:sectionproperties.prodCatColor,fontWeight:sectionproperties.prodCatFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':langdetect=='en'?'left':'right','@media (max-width: 800px)':{textAlign:'center'}}),conteco:glamor.css({height:400,'@media (max-width: 800px)':{height:200}})};var Slideshowsettings={indicators:false,arrows:true,pauseOnHover:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i4=authdetailsContext.instinfo)===null||_authdetailsContext$i4===void 0?void 0:_authdetailsContext$i4.contactinfo.instid)=='6807d313bae63'?true:false,scale:2};var SectionTitle=function SectionTitle(){return/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.sectiontitlefontfamily=='Pacifico'?' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Playfair'?' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Great Vibes'?' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Quicksand'?' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Satisfy'?' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{color:sectionproperties.sectionTitleColor,fontWeight:sectionproperties.sectionTitleFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':''}},sectionproperties.sectionTitleContent=='MORE THAN 15 YEARS OF EXPERIENCE'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"w-100 ",style:{textAlign:'center',color:sectionproperties.sectionTitleColor}},/*#__PURE__*/React__default["default"].createElement(reactTypeAnimation.TypeAnimation,{sequence:[// Same substring at the start will only be typed out once, initially
|
|
78534
|
-
sectionproperties.sectionTitleContent,1000// wait 1s before replacing "Mice" with "Hamsters"
|
|
78535
|
-
],wrapper:"span",speed:50,style:{fontSize:'1em',display:'inline-block',color:sectionproperties.sectionTitleColor},repeat:Infinity})),sectionproperties.sectionTitleContent=='MORE THAN 1,000,000 CLIENTS'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"w-100 ",style:{textAlign:'center',color:sectionproperties.sectionTitleColor}},/*#__PURE__*/React__default["default"].createElement(reactTypeAnimation.TypeAnimation,{sequence:[// Same substring at the start will only be typed out once, initially
|
|
78536
|
-
sectionproperties.sectionTitleContent,1000// wait 1s before replacing "Mice" with "Hamsters"
|
|
78537
|
-
],wrapper:"span",speed:50,style:{fontSize:'1em',display:'inline-block',color:sectionproperties.sectionTitleColor},repeat:Infinity})),sectionproperties.sectiontitlestyle=='Line Under Text'&§ionproperties.sectionTitleContent!='MORE THAN 15 YEARS OF EXPERIENCE'&§ionproperties.sectionTitleContent!='MORE THAN 1,000,000 CLIENTS'&&/*#__PURE__*/React__default["default"].createElement("span",{"class":"".concat(section_styles.sectiontitlespan)+' pl-md-2 pr-md-2 left-md-0 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar),sectionproperties.sectiontitlestyle=='Line Before Text'&§ionproperties.sectionTitleContent!='MORE THAN 15 YEARS OF EXPERIENCE'&§ionproperties.sectionTitleContent!='MORE THAN 1,000,000 CLIENTS'&&/*#__PURE__*/React__default["default"].createElement("span",{"class":"".concat(section_styles.sectiontitlespan2)+' pl-3 pr-3 pl-md-2 pr-md-2 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar));};var SectionDescription=function SectionDescription(){if(sectionproperties.descriptionContentEn=='Amir Mortada Mansour'){return/*#__PURE__*/React__default["default"].createElement("div",{className:"title-wrapper"},/*#__PURE__*/React__default["default"].createElement("span",{className:"bg-text"},langdetect=='en'?'About':''),/*#__PURE__*/React__default["default"].createElement("p",{className:section_styles.descriptionstyles+' section-title d-flex align-items-center justify-content-start '},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr));}else {return/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.descFontFamily=='Pacifico'?section_styles.descriptionstyles+' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Playfair'?section_styles.descriptionstyles+' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Great Vibes'?section_styles.descriptionstyles+' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Quicksand'?section_styles.descriptionstyles+' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Satisfy'?section_styles.descriptionstyles+' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':section_styles.descriptionstyles+' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{}},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr);}};var Content=function Content(){var _authdetailsContext$i5,_authdetailsContext$i6;return/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.sectiontitleposition=='Centered'?sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0',style:{alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':'',paddingLeft:sectionproperties.marginhorizontal+'px',paddingRight:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i5=authdetailsContext.instinfo)===null||_authdetailsContext$i5===void 0?void 0:_authdetailsContext$i5.contactinfo.instid)=='6978ef34b2564'?50:sectionproperties.marginhorizontal+'px',borderRadius:sectionproperties.reservation_borderradius+'px'}},/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.justifyContentCenter=='Centered'?section_styles.rightinnercont+' row m-0 w-100 h-100 ':section_styles.rightinnercont+' row m-0 w-100 mb-auto h-100 ',style:{}},sectionproperties.sectionTitleFontSize!=0&&/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.sectionstyleresponsive=='Image above text'?'col-lg-12 pl-0 pr-0 d-flex mt-md-4':'col-lg-12 pl-0 pr-0 d-flex ',style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.sectionTitleMarginBottom+'px',marginTop:sectionproperties.sectionTitleMarginTop+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React__default["default"].createElement("div",{"class":'d-flex align-items-center flex-row d-sm-none mt-sm-2 ',style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSize+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle()),/*#__PURE__*/React__default["default"].createElement("div",{"class":'d-none align-items-center flex-row d-sm-flex mt-sm-2 mx-md-2',style:{position:'relative',justifyContent:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i6=authdetailsContext.instinfo)===null||_authdetailsContext$i6===void 0?void 0:_authdetailsContext$i6.contactinfo.instid)=='6978ef34b2564'?'center':sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSizeresp+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle())),sectionproperties.prodCatShow=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"col-lg-12 pl-0 pr-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.descriptionMarginBottom+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React__default["default"].createElement("div",{"class":"d-flex align-items-center flex-row d-sm-none mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSize+'px',marginLeft:langdetect=='en'?sectionproperties.description_marginLeft+'px':sectionproperties.description_marginRight+'px',marginRight:langdetect=='en'?sectionproperties.description_marginRight+'px':sectionproperties.description_marginLeft+'px',paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px'}},SectionDescription()),/*#__PURE__*/React__default["default"].createElement("div",{"class":"d-none align-items-center flex-row d-sm-flex mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSizeResp+'px'}},SectionDescription())),/*#__PURE__*/React__default["default"].createElement("div",{"class":"col-lg-12 p-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.text2centered=='Centered'?'center':'start',marginBottom:sectionproperties.slideshowText2Content_marginBottom+'px'}},/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.text2centered=='Justify'?section_styles.editortext+' pb-0 pl-md-2 pr-md-2 ':section_styles.editortext+' pb-0 text-md-center pl-md-2 pr-md-2 ',style:{},dangerouslySetInnerHTML:{__html:langdetect=='en'?sectionproperties.contenteditor:sectionproperties.text2editortextar}})),sectionproperties.generalbtn_show=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.generalbtn_position=='Centered'?'col-lg-12 p-0 allcentered':'col-lg-12 p-0 text-start'},/*#__PURE__*/React__default["default"].createElement("button",{"class":"".concat(section_styles.btn)+' m-md-0 ',onClick:function onClick(){if(sectionproperties.btntype=='WhatsApp'){var _authdetailsContext$i7;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i7=authdetailsContext.instinfo)===null||_authdetailsContext$i7===void 0?void 0:_authdetailsContext$i7.whatsappnumber)!=null){var _authdetailsContext$i8;window.open('https://api.whatsapp.com/send?phone='+(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i8=authdetailsContext.instinfo)===null||_authdetailsContext$i8===void 0?void 0:_authdetailsContext$i8.whatsappnumber),'_blank');}}else if(sectionproperties.btntype=='App/Web Page'){// window.open(sectionproperties.btnlink, '_target');
|
|
78583
|
+
margin:0,padding:0,objectFit:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i2=authdetailsContext.instinfo)===null||_authdetailsContext$i2===void 0?void 0:_authdetailsContext$i2.instid)=='6978ef34b2564'?'cover':sectionproperties.bgcovercontain,borderTopLeftRadius:langdetect=='en'?sectionproperties.image_bordertopleftradius+'px':sectionproperties.image_bordertoprightradius+'px',borderTopRightRadius:langdetect=='en'?sectionproperties.image_bordertoprightradius+'px':sectionproperties.image_bordertopleftradius+'px',borderBottomLeftRadius:langdetect=='en'?sectionproperties.image_borderBottomLeftRadius+'px':sectionproperties.image_borderBottomRightRadius+'px',borderBottomRightRadius:langdetect=='en'?sectionproperties.image_borderBottomRightRadius+'px':sectionproperties.image_borderBottomLeftRadius+'px','@media (max-width: 800px)':{height:sectionproperties.height_responsive==0?'auto':sectionproperties.height_responsive+'%',width:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i3=authdetailsContext.instinfo)===null||_authdetailsContext$i3===void 0?void 0:_authdetailsContext$i3.contactinfo.instid)=='68527dfef348b'?sectionproperties.image_width_resp+'%':''}}),editortext:glamor.css({textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start',color:sectionproperties.slideshowText2ContentColor,fontSize:sectionproperties.slideshowText2ContentFontSize+'px',fontWeight:sectionproperties.slideshowText2ContentFontWeight,paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px','@media (max-width: 800px)':{fontSize:sectionproperties.slideshowText2ContentFontSize_resp+'px',textAlign:sectionproperties.text2centered=='Centered'?'center':sectionproperties.text2centered=='Justify'?'justify':'start'}}),cont1:glamor.css({width:sectionproperties.width+'vw','@media (max-width: 800px)':{width:sectionproperties.widthresponsive+'vw'}}),rightinnercont:glamor.css({background:sectionproperties.reservation_bgcolor,borderRadius:sectionproperties.reservation_borderradius+'px',paddingLeft:sectionproperties.innersectionpaddinghorizontal+'px',paddingRight:sectionproperties.innersectionpaddinghorizontal+'px','@media (max-width: 800px)':{paddingLeft:sectionproperties.innersectionpaddinghorizontalresp+'px',paddingRight:sectionproperties.innersectionpaddinghorizontalresp+'px'}}),descriptionstyles:glamor.css({color:sectionproperties.prodCatColor,fontWeight:sectionproperties.prodCatFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':langdetect=='en'?'left':'right','@media (max-width: 800px)':{textAlign:'center'}}),conteco:glamor.css({height:400,'@media (max-width: 800px)':{height:200}})};var Slideshowsettings={indicators:false,arrows:true,pauseOnHover:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i4=authdetailsContext.instinfo)===null||_authdetailsContext$i4===void 0?void 0:_authdetailsContext$i4.contactinfo.instid)=='6807d313bae63'?true:false,scale:2};var SectionTitle=function SectionTitle(){return/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.sectiontitlefontfamily=='Pacifico'?' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Playfair'?' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Great Vibes'?' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Quicksand'?' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.sectiontitlefontfamily=='Satisfy'?' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{color:sectionproperties.sectionTitleColor,fontWeight:sectionproperties.sectionTitleFontWeight,textAlign:sectionproperties.sectiontitleposition=='Centered'?'center':''}},sectionproperties.sectiontitlestyle=='Line Under Text'&&/*#__PURE__*/React__default["default"].createElement("span",{"class":"".concat(section_styles.sectiontitlespan)+' pl-md-2 pr-md-2 left-md-0 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar),sectionproperties.sectiontitlestyle=='Line Before Text'&&/*#__PURE__*/React__default["default"].createElement("span",{"class":"".concat(section_styles.sectiontitlespan2)+' pl-3 pr-3 pl-md-2 pr-md-2 '},langdetect=='en'?sectionproperties.sectionTitleContent:sectionproperties.sectionTitleContent_ar));};var SectionDescription=function SectionDescription(){if(sectionproperties.descriptionContentEn=='Amir Mortada Mansour'){return/*#__PURE__*/React__default["default"].createElement("div",{className:"title-wrapper"},/*#__PURE__*/React__default["default"].createElement("span",{className:"bg-text"},langdetect=='en'?'About':''),/*#__PURE__*/React__default["default"].createElement("p",{className:section_styles.descriptionstyles+' section-title d-flex align-items-center justify-content-start '},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr));}else {return/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.descFontFamily=='Pacifico'?section_styles.descriptionstyles+' PacificoFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Playfair'?section_styles.descriptionstyles+' PlayfairFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Great Vibes'?section_styles.descriptionstyles+' GreatvibesFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Quicksand'?section_styles.descriptionstyles+' QuicksandFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':sectionproperties.descFontFamily=='Satisfy'?section_styles.descriptionstyles+' SatisfyFont mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ':section_styles.descriptionstyles+' mb-auto mb-0 pb-0 wordbreak d-flex align-items-center justify-content-start ',style:{}},langdetect=='en'?sectionproperties.descriptionContentEn:sectionproperties.descriptionContentAr);}};var Content=function Content(){var _authdetailsContext$i5,_authdetailsContext$i6;return/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.sectiontitleposition=='Centered'?sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-center p-md-0':sectionproperties.image_show=='show'?' col-lg-6 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0':' col-lg-12 col-md-12 d-flex justify-content-start h-100 h-md-auto justify-content-md-start p-md-0',style:{alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':'',paddingLeft:sectionproperties.marginhorizontal+'px',paddingRight:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i5=authdetailsContext.instinfo)===null||_authdetailsContext$i5===void 0?void 0:_authdetailsContext$i5.contactinfo.instid)=='6978ef34b2564'?50:sectionproperties.marginhorizontal+'px',borderRadius:sectionproperties.reservation_borderradius+'px'}},/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.justifyContentCenter=='Centered'?section_styles.rightinnercont+' row m-0 w-100 h-100 ':section_styles.rightinnercont+' row m-0 w-100 mb-auto h-100 ',style:{}},sectionproperties.sectionTitleFontSize!=0&&/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.sectionstyleresponsive=='Image above text'?'col-lg-12 pl-0 pr-0 d-flex mt-md-4':'col-lg-12 pl-0 pr-0 d-flex ',style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.sectionTitleMarginBottom+'px',marginTop:sectionproperties.sectionTitleMarginTop+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React__default["default"].createElement("div",{"class":'d-flex align-items-center flex-row d-sm-none mt-sm-2 ',style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSize+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle()),/*#__PURE__*/React__default["default"].createElement("div",{"class":'d-none align-items-center flex-row d-sm-flex mt-sm-2 mx-md-2',style:{position:'relative',justifyContent:(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i6=authdetailsContext.instinfo)===null||_authdetailsContext$i6===void 0?void 0:_authdetailsContext$i6.contactinfo.instid)=='6978ef34b2564'?'center':sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.sectionTitleFontSizeresp+'px',backgroundColor:sectionproperties.sectiontitlebgcolor,borderRadius:sectionproperties.sectiontitleborderradius+'px',paddingLeft:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingRight:sectionproperties.sectiontitlepaddinghorizontal+'px',paddingTop:sectionproperties.sectiontitlepaddingvertical+'px',paddingBottom:sectionproperties.sectiontitlepaddingvertical+'px',marginLeft:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginLeft+'px':sectionproperties.sectionTitleMarginRight+'px':0,marginRight:sectionproperties.sectiontitleborderradius!=0?langdetect=='en'?sectionproperties.sectionTitleMarginRight+'px':sectionproperties.sectionTitleMarginLeft+'px':0}},SectionTitle())),sectionproperties.prodCatShow=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"col-lg-12 pl-0 pr-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',marginBottom:sectionproperties.descriptionMarginBottom+'px',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':''}},/*#__PURE__*/React__default["default"].createElement("div",{"class":"d-flex align-items-center flex-row d-sm-none mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSize+'px',marginLeft:langdetect=='en'?sectionproperties.description_marginLeft+'px':sectionproperties.description_marginRight+'px',marginRight:langdetect=='en'?sectionproperties.description_marginRight+'px':sectionproperties.description_marginLeft+'px',paddingLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',paddingRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px'}},SectionDescription()),/*#__PURE__*/React__default["default"].createElement("div",{"class":"d-none align-items-center flex-row d-sm-flex mt-sm-2",style:{position:'relative',justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',fontSize:sectionproperties.prodCatFontSizeResp+'px'}},SectionDescription())),/*#__PURE__*/React__default["default"].createElement("div",{"class":"col-lg-12 p-0 d-flex justify-content-md-center",style:{justifyContent:sectionproperties.text2centered=='Centered'?'center':'start',marginBottom:sectionproperties.slideshowText2Content_marginBottom+'px'}},/*#__PURE__*/React__default["default"].createElement("p",{"class":sectionproperties.text2centered=='Justify'?section_styles.editortext+' pb-0 pl-md-2 pr-md-2 ':section_styles.editortext+' pb-0 text-md-center pl-md-2 pr-md-2 ',style:{},dangerouslySetInnerHTML:{__html:langdetect=='en'?sectionproperties.contenteditor:sectionproperties.text2editortextar}})),sectionproperties.generalbtn_show=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":sectionproperties.generalbtn_position=='Centered'?'col-lg-12 p-0 allcentered':'col-lg-12 p-0 text-start'},/*#__PURE__*/React__default["default"].createElement("button",{"class":"".concat(section_styles.btn)+' m-md-0 ',onClick:function onClick(){if(sectionproperties.btntype=='WhatsApp'){var _authdetailsContext$i7;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i7=authdetailsContext.instinfo)===null||_authdetailsContext$i7===void 0?void 0:_authdetailsContext$i7.whatsappnumber)!=null){var _authdetailsContext$i8;window.open('https://api.whatsapp.com/send?phone='+(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i8=authdetailsContext.instinfo)===null||_authdetailsContext$i8===void 0?void 0:_authdetailsContext$i8.whatsappnumber),'_blank');}}else if(sectionproperties.btntype=='App/Web Page'){// window.open(sectionproperties.btnlink, '_target');
|
|
78538
78584
|
routingcountext(sectionproperties.btnlink,false,'');}else {window.open(sectionproperties.btnlink,'_blank');}},style:{marginLeft:langdetect=='en'?sectionproperties.slideshowText2Content_marginLeft+'px':sectionproperties.slideshowText2Content_marginRight+'px',marginRight:langdetect=='en'?sectionproperties.slideshowText2Content_marginRight+'px':sectionproperties.slideshowText2Content_marginLeft+'px'}},langdetect=='en'?sectionproperties.generalbtn_content:sectionproperties.slideshow_btn_text_ar)),/*#__PURE__*/React__default["default"].createElement("div",{"class":"col-lg-12 p-0 justify-content-sm-center mb-sm-4 align-items-center",style:{justifyContent:sectionproperties.sectiontitleposition=='Centered'?'center':'start',alignItems:sectionproperties.justifyContentCenter=='Centered'?'center':'',display:sectionproperties.fbbtn_show=='Hide'&§ionproperties.instbtn_show=='Hide'&§ionproperties.youtbtn_show=='Hide'?'none':'flex'}},sectionproperties.fbbtn_show=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"".concat(section_styles.facebook_btn)+' d-flex align-items-center justify-content-center ml-3 mr-3 ',onClick:function onClick(){var _authdetailsContext$i9;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i9=authdetailsContext.instinfo)===null||_authdetailsContext$i9===void 0?void 0:_authdetailsContext$i9.facebooklink)!=null){var _authdetailsContext$i0;window.open(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i0=authdetailsContext.instinfo)===null||_authdetailsContext$i0===void 0?void 0:_authdetailsContext$i0.facebooklink,'_blank');}}},/*#__PURE__*/React__default["default"].createElement(FaFacebookF.FaFacebookF,{size:sectionproperties.facebkbtnniconfontsize})),sectionproperties.instbtn_show=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"".concat(section_styles.instgram_btn)+' d-flex align-items-center justify-content-center ml-3 mr-3 ',onClick:function onClick(){var _authdetailsContext$i1;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i1=authdetailsContext.instinfo)===null||_authdetailsContext$i1===void 0?void 0:_authdetailsContext$i1.instagramlink)!=null){var _authdetailsContext$i10;window.open(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i10=authdetailsContext.instinfo)===null||_authdetailsContext$i10===void 0?void 0:_authdetailsContext$i10.instagramlink,'_blank');}}},/*#__PURE__*/React__default["default"].createElement(AiFillInstagram.AiFillInstagram,{size:sectionproperties.instgrambtniconfontsize})),sectionproperties.youtbtn_show=='Show'&&/*#__PURE__*/React__default["default"].createElement("div",{"class":"".concat(section_styles.youtube_btn)+' d-flex align-items-center justify-content-center ml-3 mr-3 ',onClick:function onClick(){var _authdetailsContext$i11;if((authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i11=authdetailsContext.instinfo)===null||_authdetailsContext$i11===void 0?void 0:_authdetailsContext$i11.whatsappnumber)!=null){var _authdetailsContext$i12;window.open('https://api.whatsapp.com/send?phone='+(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i12=authdetailsContext.instinfo)===null||_authdetailsContext$i12===void 0?void 0:_authdetailsContext$i12.whatsappnumber),'_blank');}}},/*#__PURE__*/React__default["default"].createElement(FaWhatsapp.FaWhatsapp,{size:sectionproperties.youtubebtniconfontsize})))));};var Image=function Image(){var _authdetailsContext$i13,_authdetailsContext$i14,_authdetailsContext$i15,_authdetailsContext$i16,_authdetailsContext$i17,_imagesarray$,_authdetailsContext$i18,_imagesarray$7,_imagesarray$8,_authdetailsContext$i19,_imagesarray$9,_imagesarray$0,_authdetailsContext$i20;return/*#__PURE__*/React__default["default"].createElement("div",{"class":(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i13=authdetailsContext.instinfo)===null||_authdetailsContext$i13===void 0?void 0:_authdetailsContext$i13.instid)=='6995aff955278'&§ionproperties.descriptionContentEn=='About Elite Egy Card'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0 image-col':// tms
|
|
78539
78585
|
(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i14=authdetailsContext.instinfo)===null||_authdetailsContext$i14===void 0?void 0:_authdetailsContext$i14.instid)=='6824564a386c2'&§ionproperties.sectionTitleContent=='Welcome to TMS'?'col-lg-3 col-md-12 d-flex align-items-center justify-content-center justify-content-md-center h-auto p-md-0':(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i15=authdetailsContext.instinfo)===null||_authdetailsContext$i15===void 0?void 0:_authdetailsContext$i15.instid)=='6995aff955278'&§ionproperties.descriptionContentEn=='Get Your Card Now'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0 image-col2':(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i16=authdetailsContext.instinfo)===null||_authdetailsContext$i16===void 0?void 0:_authdetailsContext$i16.instid)=='6978ef34b2564'?'col-lg-8 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i17=authdetailsContext.instinfo)===null||_authdetailsContext$i17===void 0?void 0:_authdetailsContext$i17.contactinfo.instid)=='6935c04816952'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':sectionproperties.image_height==0?sectionproperties.sectionstyle=='Image on right'?'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':'col-lg-6 col-md-12 d-flex justify-content-end justify-content-md-center h-auto p-md-0':sectionproperties.sectionstyle=='Image on left'?'col-lg-6 col-md-12 d-flex justify-content-start justify-content-md-center p-md-0':'col-lg-6 col-md-12 d-flex justify-content-start justify-content-md-center p-md-0',style:{paddingLeft:sectionproperties.marginhorizontal+'px',paddingRight:sectionproperties.marginhorizontal+'px',cursor:((_imagesarray$=imagesarray[0])===null||_imagesarray$===void 0?void 0:_imagesarray$.IsClickableimg)=='Yes'?'pointer':'default',background:sectionproperties.image_bgtransparent=='Transparent'?'transparent':sectionproperties.image_bgcolor},onClick:function onClick(){var _imagesarray$2;if(((_imagesarray$2=imagesarray[0])===null||_imagesarray$2===void 0?void 0:_imagesarray$2.IsClickableimg)=='Yes'){var _imagesarray$3,_imagesarray$4;if(((_imagesarray$3=imagesarray[0])===null||_imagesarray$3===void 0?void 0:_imagesarray$3.clickableimg_page_route)!=undefined&&((_imagesarray$4=imagesarray[0])===null||_imagesarray$4===void 0?void 0:_imagesarray$4.clickableimg_page_route.length)!=0){var _imagesarray$5;routingcountext((_imagesarray$5=imagesarray[0])===null||_imagesarray$5===void 0?void 0:_imagesarray$5.clickableimg_page_route,false,'');}else {var _imagesarray$6;routingcountext(StaticPagesLinksContext.GeneralProductsComponent,true,'collections/'+((_imagesarray$6=imagesarray[0])===null||_imagesarray$6===void 0?void 0:_imagesarray$6.Clickableimg_getcoection));}}}},imagesarray.length!=0&&(authdetailsContext===null||authdetailsContext===void 0||(_authdetailsContext$i18=authdetailsContext.instinfo)===null||_authdetailsContext$i18===void 0?void 0:_authdetailsContext$i18.contactinfo.instid)!='691b34a54d742'&&/*#__PURE__*/React__default["default"].createElement(Imagekitimagecomp,{"class":section_styles.imageimage,urlEndpoint:ikimagecredcontext===null||ikimagecredcontext===void 0?void 0:ikimagecredcontext.ikimageendpoint,publicKey:ikimagecredcontext===null||ikimagecredcontext===void 0?void 0:ikimagecredcontext.ikimagepublickey,path:langdetect=='en'?'/tr:w-'+sectionproperties.imagetr_w+',h-'+sectionproperties.imagetr_h+'/'+((_imagesarray$7=imagesarray[0])===null||_imagesarray$7===void 0?void 0:_imagesarray$7.bgsection_image):'/tr:w-'+sectionproperties.imagetr_w+',h-'+sectionproperties.imagetr_h+'/'+((_imagesarray$8=imagesarray[0])===null||_imagesarray$8===void 0?void 0:_imagesarray$8.bgsection_image_ar)// style={{
|
|
78540
78586
|
// transform:
|