301 status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.
The browser will automatically redirect the user to the new address, and search engines will update their indexes.
200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.
The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.
GET / HTTP/1.1 Host: maclb.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!doctype html > <html xmlns="http://www.w3.org/1999/xhtml" lang="en" class=""> <head> <meta charset="utf-8"> <script type="text/javascript"> window._currentDevice = 'desktop'; window.Parameters = window.Parameters || { HomeUrl: 'https://www.maclb.com/', AccountUUID: 'b3372e58521d4af793db584e55c1d535', SystemID: 'US_DIRECT_PRODUCTION', SiteAlias: 'a0f0d5e8', SiteType: atob('RFVEQU9ORQ=='), PublicationDate: 'Mon Nov 02 13:25:55 UTC 2020', ExternalUid: null, IsSiteMultilingual: false, InitialPostAlias: '', InitialPostPageUuid: '', InitialDynamicItem: '', DynamicPageInfo: { isDynamicPage: false, base64JsonRowData: 'null', }, InitialPageAlias: 'home', InitialPageUuid: '460574881f8a4fd29c425a69d9d0e391', InitialPageId: '791097660', InitialEncodedPageAlias: 'aG9tZQ==', InitialHeaderUuid: 'e3b12785e8a146eda8236aa386f1b0e3', CurrentPageUrl: '', IsCurrentHomePage: true, AllowAjax: false, AfterAjaxCommand: null, HomeLinkText: 'Back To Home', UseGalleryModule: false, CurrentThemeName: 'Layout Theme', ThemeVersion: '1750', DefaultPageAlias: '', RemoveDID: true, WidgetStyleID: null, IsHeaderFixed: false, IsHeaderSkinny: false, IsBfs: true, StorePageAlias: 'null', StorePagesUrls: 'e30=', IsNewStore: 'false', StorePath: '', StoreId: 'null', StoreVersion: 0, StoreBaseUrl: '', StoreCleanUrl: true, StoreDisableScrolling: true, IsStoreSuspended: false, HasCustomDomain: true, SimpleSite: false, showCookieNotification: false, cookiesNotificationMarkup: 'null', translatedPageUrl: '', isFastMigrationSite: false, sidebarPosition: 'NA', currentLanguage: 'en', currentLocale: 'en', NavItems: '{}', errors: { general: 'There was an error connecting to the page.<br/> Make sure you are not offline.', password: 'Incorrect name/password combination', tryAgain: 'Try again' }, NavigationAreaParams: { ShowBackToHomeOnInnerPages: true, NavbarSize: -1, NavbarLiveHomePage: 'https://www.maclb.com/', BlockContainerSelector: '.dmBody', NavbarSelector: '#dmNav:has(a)', SubNavbarSelector: '#subnav_main' }, hasCustomCode: false, planID: '7', customTemplateId: 'null', siteTemplateId: 'null', productId: 'DM_DIRECT', disableTracking: false, pageType: 'FROM_SCRATCH', isRuntimeServer: true, isInEditor: false, hasNativeStore: false, defaultLang: 'en', hamburgerMigration: null, isFlexSite : false }; window.Parameters.LayoutID = {}; window.Parameters.LayoutID[window._currentDevice] = 6; window.Parameters.LayoutVariationID = {}; window.Parameters.LayoutVariationID[window._currentDevice] = 5; </script> <!-- Injecting site-wide to the head --> <!-- End Injecting site-wide to the head --> <!-- Inject secured cdn script --> <!-- ========= Meta Tags ========= --> <!-- PWA settings --> <script> function toHash(str) { var hash = 5381, i = str.length; while (i) { hash = hash * 33 ^ str.charCodeAt(--i) } return hash >>> 0 } </script> <script> (function (global) { //const cacheKey = global.cacheKey; const isOffline = 'onLine' in navigator && navigator.onLine === false; const hasServiceWorkerSupport = 'serviceWorker' in navigator; if (isOffline) { console.log('offline mode'); } if (!hasServiceWorkerSupport) { console.log('service worker is not supported'); } if (hasServiceWorkerSupport && !isOffline) { window.addEventListener('load', function () { const serviceWorkerPath = '/runtime-service-worker.js?v=3'; navigator.serviceWorker .register(serviceWorkerPath, { scope: './' }) .then( function (registration) { // Registration was successful console.log( 'ServiceWorker registration successful with scope: ', registration.scope ); }, function (err) { // registration failed :( console.log('ServiceWorker registration failed: ', err); } ) .catch(function (err) { console.log(err); }); }); // helper function to refresh the page var refreshPage = (function () { var refreshing; return function () { if (refreshing) return; // prevent multiple refreshes var refreshkey = 'refreshed' + location.href; var prevRefresh = localStorage.getItem(refreshkey); if (prevRefresh) { localStorage.removeItem(refreshkey); if (Date.now() - prevRefresh < 30000) { return; // dont go into a refresh loop } } refreshing = true; localStorage.setItem(refreshkey, Date.now()); console.log('refereshing page'); window.location.reload(); }; })(); function messageServiceWorker(data) { return new Promise(function (resolve, reject) { if (navigator.serviceWorker.controller) { var worker = navigator.serviceWorker.controller; var messageChannel = new MessageChannel(); messageChannel.port1.onmessage = replyHandler; worker.postMessage(data, [messageChannel.port2]); function replyHandler(event) { resolve(event.data); } } else { resolve(); } }); } } })(window); </script> <!-- Add manifest --> <!-- End PWA settings --> <link rel="canonical" href="https://www.maclb.com/"> <meta id="view" name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=5, viewport-fit=cover"> <meta name="apple-mobile-web-app-capable" content="yes"> <title>Home </title> <!--Add favorites icons--> <link rel="icon" type="image/x-icon" href="https://irp-cdn.multiscreensite.com/a0f0d5e8/site_favicon_16_1582631211510.ico"/> <!-- End favorite icons --> <link rel="preconnect" href="https://lirp.cdn-website.com/"/> <!-- render the required CSS and JS in the head section --> <script id='d-js-dmapi'> window.SystemID = 'US_DIRECT_PRODUCTION'; if (!window.dmAPI) { window.dmAPI = { registerExternalRuntimeComponent: function () { }, getCurrentDeviceType: function () { return window._currentDevice; }, runOnReady: (ns, fn) => { const safeFn = dmAPI.toSafeFn(fn); ns = ns || 'global_' + Math.random().toString(36).slice(2, 11); const eventName = 'afterAjax.' + ns; if (document.readyState === 'complete') { $.DM.events.off(eventName).on(eventName, safeFn); setTimeout(function () { safeFn({ isAjax: false, }); }, 0); } else { window?.waitForDeferred?.('dmAjax', () => { $.DM.events.off(eventName).on(eventName, safeFn); safeFn({ isAjax: false, }); }); } }, toSafeFn: (fn) => { if (fn?.safe) { return fn; } const safeFn = function (...args) { try { return fn?.apply(null, args); } catch (e) { console.log('function failed ' + e.message); } }; safeFn.safe = true; return safeFn; } }; } if (!window.requestIdleCallback) { window.requestIdleCallback = function (fn) { setTimeout(fn, 0); } } </script> <!-- loadCSS function header.jsp--> <script id="d-js-load-css"> /** * There are a few <link> tags with CSS resource in them that are preloaded in the page * in each of those there is a "onload" handler which invokes the loadCSS callback * defined here. * We are monitoring 3 main CSS files - the runtime, the global and the page. * When each load we check to see if we can append them all in a batch. If threre * is no page css (which may happen on inner pages) then we do not wait for it */ (function () { let cssLinks = {}; function loadCssLink(link) { link.onload = null; link.rel = "stylesheet"; link.type = "text/css"; } function checkCss() { const pageCssLink = document.querySelector("[id*='CssLink']"); const widgetCssLink = document.querySelector("[id*='widgetCSS']"); if (cssLinks && cssLinks.runtime && cssLinks.global && (!pageCssLink || cssLinks.page) && (!widgetCssLink || cssLinks.widget)) { const storedRuntimeCssLink = cssLinks.runtime; const storedPageCssLink = cssLinks.page; const storedGlobalCssLink = cssLinks.global; const storedWidgetCssLink = cssLinks.widget; storedGlobalCssLink.disabled = true; loadCssLink(storedGlobalCssLink); if (storedPageCssLink) { storedPageCssLink.disabled = true; loadCssLink(storedPageCssLink); } if(storedWidgetCssLink) { storedWidgetCssLink.disabled = true; loadCssLink(storedWidgetCssLink); } storedRuntimeCssLink.disabled = true; loadCssLink(storedRuntimeCssLink); requestAnimationFrame(() => { setTimeout(() => { storedRuntimeCssLink.disabled = false; storedGlobalCssLink.disabled = false; if (storedPageCssLink) { storedPageCssLink.disabled = false; } if (storedWidgetCssLink) { storedWidgetCssLink.disabled = false; } // (SUP-4179) Clear the accumulated cssLinks only when we're // sure that the document has finished loading and the document // has been parsed. if(document.readyState === 'interactive') { cssLinks = null; } }, 0); }); } } function loadCSS(link) { try { var urlParams = new URLSearchParams(window.location.search); var noCSS = !!urlParams.get("nocss"); var cssTimeout = urlParams.get("cssTimeout") || 0; if (noCSS) { return; } if (link.href && link.href.includes("d-css-runtime")) { cssLinks.runtime = link; checkCss(); } else if (link.id === "siteGlobalCss") { cssLinks.global = link; checkCss(); } else if (link.id && link.id.includes("CssLink")) { cssLinks.page = link; checkCss(); } else if (link.id && link.id.includes("widgetCSS")) { cssLinks.widget = link; checkCss(); } else { requestIdleCallback(function () { window.setTimeout(function () { loadCssLink(link); }, parseInt(cssTimeout, 10)); }); } } catch (e) { throw e } } window.loadCSS = window.loadCSS || loadCSS; })(); </script> <script data-role="deferred-init" type="text/javascript"> /* usage: window.getDeferred(<deferred name>).resolve() or window.getDeferred(<deferred name>).promise.then(...)*/ function Def() { this.promise = new Promise((function (a, b) { this.resolve = a, this.reject = b }).bind(this)) } const defs = {}; window.getDeferred = function (a) { return null == defs[a] && (defs[a] = new Def), defs[a] } window.waitForDeferred = function (b, a, c) { let d = window?.getDeferred?.(b); d ? d.promise.then(a) : c && ["complete", "interactive"].includes(document.readyState) ? setTimeout(a, 1) : c ? document.addEventListener("DOMContentLoaded", a) : console.error(`Deferred does not exist`); }; </script> <style id="forceCssIncludes"> /* This file is auto-generated from a `scss` file with the same name */ .videobgwrapper{overflow:hidden;position:absolute;z-index:0;width:100%;height:100%;top:0;left:0;pointer-events:none;border-radius:inherit}.videobgframe{position:absolute;width:101%;height:100%;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);object-fit:fill}#dm video.videobgframe{margin:0}@media (max-width:767px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:80vh}}@media (min-width:1025px){.dmRoot .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}@media (min-width:768px) and (max-width:1024px){.responsiveTablet .dmPhotoGallery.newPhotoGallery:not(.photo-gallery-done){min-height:45vh}}#dm [data-show-on-page-only]{display:none!important}#dmRoot div.stickyHeaderFix div.site_content{margin-top:0!important}#dmRoot div.stickyHeaderFix div.hamburger-header-container{position:relative} </style> <style id="cssVariables" type="text/css"> </style> <style id="hideAnimFix"> .dmDesktopBody:not(.editGrid) [data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) [data-anim-extended] { visibility: hidden; } .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-desktop]:not([data-anim-desktop='none']), .dmDesktopBody:not(.editGrid) .dmNewParagraph[data-anim-extended] { visibility: hidden !important; } #dmRoot:not(.editGrid) .flex-element [data-anim-extended] { visibility: hidden; } </style> <style id="criticalCss"> @charset "UTF-8";@font-face{font-family:'Old Standard TT';font-style:italic;font-weight:400;font-display:swap;src:local('Old Standard TT Italic'),local('OldStandardTT-Italic'),url(https://irp.cdn-website.com/fonts/s/oldstandardtt/v13/MwQsbh3o1vLImiwAVvYawgcf2eVer2q6bHM.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap}@font-face{font-family:'Old Standard TT';font-style:normal;font-weight:400;font-display:swap;src:local('Old Standard TT Regular'),local('OldStandardTT-Regular'),url(https://irp.cdn-website.com/fonts/s/oldstandardtt/v13/MwQubh3o1vLImiwAVvYawgcf2eVeqlq4.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap}@font-face{font-family:Roboto;font-style:italic;font-weight:300;font-display:swap;src:local('Roboto Light Italic'),local('Roboto-LightItalic'),url(https://irp.cdn-website.com/fonts/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap}@font-face{font-family:Roboto;font-style:italic;font-weight:400;font-display:swap;src:local('Roboto Italic'),local('Roboto-Italic'),url(https://irp.cdn-website.com/fonts/s/roboto/v20/KFOkCnqEu92Fr1Mu51xIIzI.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap}@font-face{font-family:Roboto;font-style:normal;font-weight:300;font-display:swap;src:local('Roboto Light'),local('Roboto-Light'),url(https://irp.cdn-website.com/fonts/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBBc4.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:local('Roboto'),local('Roboto-Regular'),url(https://irp.cdn-website.com/fonts/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap}#dm div.dmContent [class*=' icon-'],[class*=' icon-']{font-family:FontAwesome!important;font-weight:400;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased}[class*=' icon-']:before{text-decoration:none;display:inline-block;speak:none}a [class*=' icon-']{display:inline}[class*=' icon-']{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0}.icon-star:before{content:'\f005'}.icon-angle-down:before{content:'\f107'}[class*=' dm-common-icons-']{speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:dm-common-icons!important}.dm-common-icons-close:before{content:'\e901'}.dmInner{min-height:100vh!important;position:relative;min-width:768px!important}.dmPopup,.dmPopupMask{position:fixed;left:0}@media (hover:none) and (pointer:coarse){#dmRoot #dm .dmOuter :not(.dmInner){background-attachment:scroll!important}}.display_None{display:none}.dmDisplay_None{display:none!important}.clearfix:after{clear:both;visibility:hidden;line-height:0;height:0}.clearfix:after,.clearfix:before{content:' ';display:table}.clearfix{display:inline-block}.dmDesktopBody .shadowEffectToChildren li{box-shadow:none!important}#dm .dmWidget .icon{font-size:26px}body:not(.noFontIcons) #dm .dmOuter .dmInner .dmWidget .icon.hasFontIcon{height:26px;margin-top:-13px;line-height:normal;text-align:center;background-image:none}.supportsFontIcons .hasFontIcon{background-image:none!important}#dm .dmNav.dmNavCustom .dmHideFromNav,#dm .dmn .dmHideFromNav{display:none!important}.dmPopupMask{margin:0;display:none;width:10px;z-index:1000000999;top:0}#dmRoot .dmPopup,.dmPopup,.dmPopupClose:before,[data-display-type=block]{display:block}.dmPopup{padding:10px;text-align:left;margin:0 10px;top:10px;width:93%;z-index:1000009999!important;box-sizing:border-box;background:#f5f5f5;overflow-y:auto;height:100%}.dmPopup .dmPopupTitle{text-align:left;font:700 19px Helvetica,Arial;margin:20px 20px 35px;color:#999}.lh-1,button,input{line-height:normal}#dmPopup{opacity:0}.dmPopupClose,.dmPopupClose:before{position:absolute;visibility:visible}.dmPopupClose{border-radius:25px;width:27px;height:27px;z-index:1;background-color:rgba(255,255,255,.4);top:12px;right:12px}.dmPopupClose:before{font-size:20px;color:#000;top:3px;right:3px}body.dmDesktopBody:not(.mac) .data::-webkit-scrollbar{width:5px;height:5px}body.dmDesktopBody:not(.mac) .data::-webkit-scrollbar-track{background:rgba(0,0,0,.1)}body.dmDesktopBody:not(.mac) .data::-webkit-scrollbar-thumb{background:#c8c8c8;box-shadow:inset 0 1px 2px #454545;border-radius:45px}.dmRespRow.fullBleedMode>.dmRespColsWrapper{width:100%!important;max-width:100%!important}.dmRespRow.fullBleedMode{padding-left:0!important;padding-right:0!important}#dm .dmRespRow .dmRespColsWrapper{display:-webkit-flex;display:flex}.pswp{z-index:9999999999!important}#dm .dmInner .dmWidget.align-center,.align-center{margin-left:auto;margin-right:auto}body.fix-mobile-scrolling{overflow:initial}p.rteBlock{margin:0}#dmRoot{text-decoration-skip-ink:none}#dm .sticky-widgets-container-global [data-element-type]{position:fixed!important}.dmform-title{padding-right:15px;padding-left:15px}body{-webkit-overflow-scrolling:touch}nav{display:block}html{font-family:Source Sans Pro;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}img{border:0;max-width:100%;-ms-interpolation-mode:bicubic;display:inline-block}button,input{font-family:inherit;font-size:100%;margin:0}button{text-transform:none;-webkit-appearance:button}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}*,:after,:before{box-sizing:border-box}.dmRespRow.dmRespRowNoPadding{padding:0}.dmRespRow{padding-top:15px;padding-bottom:15px}.dmRespRow:after,.dmRespRow:before{content:' ';display:table}.dmRespRow:after{clear:both}.dmRespRow,.dmRespRow .dmRespColsWrapper{max-width:960px;position:relative;margin:0 auto;width:100%}.dmRespRow .dmRespCol{position:relative;width:100%;display:inline-block;vertical-align:top;float:left}.dmRespRow .dmRespCol>*{max-width:100%}.dmDesktopBody .dmRespRow .large-2{position:relative;width:16.66667%}.dmDesktopBody .dmRespRow .large-6{position:relative;width:50%}.dmDesktopBody .dmRespRow .large-8{position:relative;width:66.66667%}.dmDesktopBody .dmRespRow .large-12{position:relative;width:100%}#dm .dmRespRow .dmRespCol>.dmWidget{overflow:initial}.dmLargeBody #dm .dmRespRow .dmRespCol>.dmWidget{width:280px;max-width:100%}.dmLargeBody #dm .sticky-widgets-container-global .dmWidget{width:230px;max-width:100%}#dm .dmInner .dmWidget:not(.displayNone){display:inline-block}#dm .dmInner .dmWidget:not(.displayNone)[data-display-type=block]{display:block}#dm .dmInner .dmWidget{text-decoration:none;margin:10px 0;clear:both;position:relative;text-align:center;line-height:22px;box-shadow:none;background-image:none;padding:0 0 0 40px;height:auto;border:0;white-space:nowrap}.pswp,.pswp__bg,.pswp__scroll-wrap{height:100%;width:100%}#dm .dmInner .dmWidget:after{content:'';display:inline-block;height:100%;vertical-align:middle;width:0;margin-right:-.25em}#dm .dmInner .dmWidget .iconBg{position:absolute;left:0;width:50px;top:50%;margin-top:-13px}#dm .dmWidget .text{display:inline-block;vertical-align:middle;font-size:1.125em;line-height:normal;white-space:normal;padding:10px 7px;max-width:98%}#dm .dmNav.dmNavCustom .dmHideFromNav-desktop,#dm .dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs img,#dm .dmn .dmHideFromNav-desktop,#dm [data-buttonstyle=ROUND_SIDES]:not([data-buttonstyle*=_ICON]) .dmWidget:not([data-buttonstyle]):not([data-buttonstyle*=_ICON]) .iconBg{display:none!important}#dm [data-buttonstyle=ROUND_SIDES] .dmWidget:not([data-buttonstyle]){border-radius:50px;padding:0}#dm [data-buttonstyle=ROUND_SIDES]:not([data-buttonstyle*=_ICON]) .dmWidget:not([data-buttonstyle]):not([data-buttonstyle*=_ICON]) .text{padding-left:0;padding-right:0}html:not(.ios-preview) #dm .hasStickyHeader .dmInner div.dmHeaderContainer{position:fixed!important;z-index:101;width:100%;min-width:768px}#dm .sticky-widgets-container-global [data-element-type].sticky-desktop-position-bottom-left{top:initial!important;bottom:0!important;margin-bottom:40px;right:initial!important;left:0!important;margin-left:40px}.pswp,.pswp__bg,.pswp__container,.pswp__item,.pswp__scroll-wrap{position:absolute;top:0}.imageWidget a{font-style:italic;text-align:center}.pswp{display:none;left:0;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-webkit-backface-visibility:hidden;outline:0}.pswp *{-webkit-box-sizing:border-box;box-sizing:border-box}.pswp__scroll-wrap{left:0;overflow:hidden}.pswp__bg{left:0;background:#000;opacity:0;-webkit-backface-visibility:hidden;will-change:opacity}.pswp__container{-webkit-touch-callout:none;-ms-touch-action:none;touch-action:none;left:0;right:0;bottom:0;-webkit-backface-visibility:hidden;will-change:transform}.pswp__item{left:0;right:0;bottom:0;overflow:hidden}.pswp__button{position:relative;overflow:visible;-webkit-appearance:none;display:block;border:0;padding:0;margin:0;float:right;opacity:.75;-webkit-box-shadow:none;box-shadow:none}.pswp__button::-moz-focus-inner{padding:0;border:0}.pswp__button,.pswp__button--arrow--left:before,.pswp__button--arrow--right:before{background:url(/_dm/s/rt/scripts/vendor/photoswipe4/icons/default-skin.png) no-repeat;background-size:264px 88px;width:44px;height:44px}.pswp__button--close{background-position:0 -44px}.pswp__button--share{background-position:-44px -44px}.pswp__button--fs{display:none}.pswp__button--zoom{display:none;background-position:-88px 0}.pswp__button--arrow--left,.pswp__button--arrow--right{background:0 0;top:50%;margin-top:-50px;width:70px;height:100px;position:absolute}.pswp__button--arrow--left{left:0}.pswp__button--arrow--right{right:0}.pswp__button--arrow--left:before,.pswp__button--arrow--right:before{content:'';top:35px;background-color:rgba(0,0,0,.3);height:30px;width:32px;position:absolute}.pswp__button--arrow--left:before{left:6px;background-position:-138px -44px}.pswp__button--arrow--right:before{right:6px;background-position:-94px -44px}.pswp__share-modal{display:block;background:rgba(0,0,0,.5);width:100%;height:100%;top:0;left:0;padding:10px;position:absolute;z-index:1600;opacity:0;-webkit-backface-visibility:hidden;will-change:opacity}.pswp__share-modal--hidden{display:none}.pswp__share-tooltip{z-index:1620;position:absolute;background:#FFF;top:56px;border-radius:2px;display:block;width:auto;right:44px;-webkit-box-shadow:0 2px 5px rgba(0,0,0,.25);box-shadow:0 2px 5px rgba(0,0,0,.25);-webkit-transform:translateY(6px);-ms-transform:translateY(6px);transform:translateY(6px);-webkit-backface-visibility:hidden;will-change:transform}.pswp__counter,.pswp__preloader{height:44px;position:absolute;top:0}.pswp__counter{left:0;font-size:13px;line-height:44px;color:#FFF;opacity:.75;padding:0 10px}.pswp__caption{position:absolute;left:0;bottom:0;width:100%;min-height:44px}.pswp__caption__center{max-width:95%;margin:0 auto;font-size:16px;padding:10px;line-height:20px;color:#CCC;width:960px;font-weight:700;text-align:center}.pswp__preloader{width:44px;left:50%;margin-left:-22px;opacity:0;will-change:opacity}.pswp__preloader__icn{width:20px;height:20px;margin:12px}@media screen and (max-width:1024px){.pswp__preloader{position:relative;left:auto;top:auto;margin:0;float:right}}.pswp__ui{-webkit-font-smoothing:auto;visibility:visible;opacity:1;z-index:1550}.pswp__top-bar{position:absolute;left:0;top:0;height:44px;width:100%}.pswp__caption,.pswp__top-bar{-webkit-backface-visibility:hidden;will-change:opacity;background-color:rgba(0,0,0,.5)}.pswp__ui--hidden .pswp__button--arrow--left,.pswp__ui--hidden .pswp__button--arrow--right,.pswp__ui--hidden .pswp__caption,.pswp__ui--hidden .pswp__top-bar{opacity:.001}.dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs .image-container{height:100%}.dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs{width:58px;height:58px;margin:2px;display:inline-block;vertical-align:middle;text-align:center;overflow:hidden}.dmPhotoGalleryResp.dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs img{box-shadow:0 0 3px #888}.dmPhotoGalleryResp.dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs{margin:0;padding:10px}.dmPhotoGalleryHolder{text-align:center}.dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs img{display:inline!important;margin:0!important;vertical-align:middle;text-align:center;position:relative}.dmPhotoGallery .image-container{position:relative}.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner h3{margin:0;line-height:normal;text-align:center;font-size:21px}.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner .caption-text,.dmPhotoGallery.newPhotoGallery .photoGalleryThumbs .caption-container .caption-inner .caption-title{max-width:100%}#dm .dmPhotoGallery.newPhotoGallery li{list-style:none}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .caption-container .caption-inner{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;position:relative;overflow:hidden;z-index:1;background-color:rgba(255,255,255,.9);color:#333;padding:15px;height:100%;box-sizing:border-box;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .caption-container .caption-inner h3{text-align:center}#dm .dmPhotoGallery.newPhotoGallery .photoGalleryViewAll{box-shadow:0 0!important;font-size:inherit!important;margin:0!important}#dm .dmPhotoGallery.newPhotoGallery .dmPhotoGalleryHolder{width:100%;padding:0;display:none}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs{position:relative}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .image-container{overflow:hidden}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .image-container a{background-repeat:no-repeat;background-position:center}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .caption-container .caption-inner .caption-button{margin:10px auto;max-width:100%}#dm .dmPhotoGallery.newPhotoGallery li.photoGalleryThumbs .caption-container .caption-inner .caption-button .text{padding:10px 20px!important}#dm .dmPhotoGallery.newPhotoGallery[data-image-hover-effect=zoomout] .photoGalleryThumbs .image-container{-webkit-mask-image:-webkit-radial-gradient(#fff,#000)}#dm .dmPhotoGallery.newPhotoGallery[data-link-gallery=true] .image-container a.has-link{z-index:1px}*{border:0 solid #333;scrollbar-arrow-color:#fff;scrollbar-track-color:#F2F2F2;scrollbar-face-color:silver;scrollbar-highlight-color:silver;scrollbar-3dlight-color:silver;scrollbar-shadow-color:silver;scrollbar-darkshadow-color:silver;scrollbar-width:12px}body{width:100%;overflow:hidden;-webkit-text-size-adjust:100%!important;-ms-text-size-adjust:100%!important}A IMG{border:none}h1,h2,h3,ul{margin-left:0;margin-right:0}.dmInner *{-webkit-font-smoothing:antialiased}.clearfix,a,img,li,ul{vertical-align:top}#iscrollBody,#site_content{position:relative}.dmOuter{word-wrap:break-word}.dmInner{font-size:16px;background:#fff;color:#666}.dmDesktopBody .dmInner{min-width:960px}.dmInner a{color:#463939}.dmInner ul:not(.defaultList){padding:0}.dmHeader{background:#68ccd1;color:#666;text-align:center;position:relative;width:100%;max-width:100%}DIV.dmBody{padding:0;clear:both}.dmContent{margin:0;padding:0}#site_content ul:not(.defaultList){-webkit-padding-start:0;-moz-padding-start:0;list-style-position:inside}#innerBar{position:relative;height:36px;width:100%;font-size:20px;margin:0;z-index:80}#dm .dmRespRow.dmRespRowNoPadding{padding:0}.dmRespRowsWrapper{max-width:960px;margin:0 auto}.dmNav{margin-top:20px}.dmNav li{position:relative}.dmNav li a{height:100%;display:block;padding:17px 10px;text-decoration:none}.dmLargeBody .imageWidget:not(.displayNone){display:inline-block;max-width:100%}.imageWidget:not(.displayNone) img{width:100%}h3{font-weight:400;font-size:23px}#dm .dmRespColsWrapper{display:block}.dmNewParagraph{text-align:left;margin:8px 0;padding:2px 0}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol,.dmLargeBody .fHeader .dmRespRow .dmRespCol{padding-left:.75%;padding-right:.75%}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol:first-child,.dmLargeBody .fHeader .dmRespRow .dmRespCol:first-child{padding-left:0;padding-right:1.5%}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol:last-child,.dmLargeBody .fHeader .dmRespRow .dmRespCol:last-child{padding-right:0;padding-left:1.5%}.dmLargeBody .dmRespRowsWrapper>.dmRespRow .dmRespCol:only-child{padding-left:0;padding-right:0}#innerBar.lineInnerBar{display:table;width:100%;box-shadow:none;-webkit-box-shadow:none;-moz-box-shadow:none;font-size:20px;margin-top:30px;margin-bottom:30px;background-color:transparent;color:#666}#innerBar .titleLine{display:table-cell;vertical-align:middle;width:50%}.dmPageTitleRow:not(#innerBar){display:none}.titleLine hr{min-height:1px;background-color:rgba(102,102,102,.2)}.standardHeaderLayout .dmHeader{float:none}.dmInner a{outline:0;vertical-align:inherit}.dmLinksMenu>ul{display:block;margin:0;font-size:inherit}.dmStandardDesktop{display:block;margin:0 auto}#dm .dmInner .dmWidget{color:#f7f7f7;background-color:#f95759}#dm h3.dmwidget-title[hide=true]{display:none}#dm .dmwidget-title{margin:10px 0;font-size:23px;text-shadow:none;text-align:left;text-transform:capitalize;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;word-wrap:normal}.dmSpacer{border:0;height:15px}.dmPhotoGalleryHolder{font-size:medium!important;margin:0;list-style:none}#dm .dmPhotoGallery .dmPhotoGalleryHolder,#dm .dmPhotoGallery .dmPhotoGalleryHolder>li{width:100%;padding:0}#dm .dmPhotoGallery .dmPhotoGalleryHolder .photoGalleryThumbs{background:url(https://dd-cdn.multiscreensite.com/runtime-img/galleryLoader.gif) 50% 50% no-repeat #eee;float:left;clear:none;padding:0;margin:0;width:100%}.dmDesktopBody .dmPhotoGallery .photoGalleryViewAll{background:0 0;border:none;padding:3px 0;font-size:16px;width:auto;height:auto;line-height:normal;box-shadow:0 -2px 0 0;display:block;margin:40px 0;text-align:left}body{background-color:#eee}.dmPhotoGallery:not(.dmFacebookGallery) .dmPhotoGalleryHolder:not(.ready) li.photoGalleryThumbs{display:inline!important;visibility:hidden}#dm [data-buttonstyle] .dmWidget span.iconBg,#dm [data-buttonstyle] .dmWidget span.text{color:#f7f7f7}.main-navigation.unifiednav{display:flex;justify-content:flex-start;align-items:stretch;overflow:visible}.main-navigation.unifiednav ul{list-style:none;padding:0;margin:0;font-size:1rem}.main-navigation.unifiednav .unifiednav__container{display:flex;justify-content:flex-start;list-style:none}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap{display:flex;justify-content:flex-start;position:relative;font-weight:400}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap::after,.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap::before{content:'';align-self:center;font-weight:700}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap>.unifiednav__item{display:flex;justify-content:flex-start;align-items:center;flex-direction:row;color:inherit;text-decoration:none;position:relative;padding:12px 15px;margin:0;font-weight:inherit;letter-spacing:.03em}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{padding:0 15px}.main-navigation.unifiednav .unifiednav__container>.unifiednav__item-wrap>.unifiednav__item .nav-item-text{white-space:nowrap}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::after,.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item .nav-item-text::before{content:'';width:100%;height:0;border:0 solid transparent;border-top-color:currentColor;display:block;opacity:0}.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected .nav-item-text::after,.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected .nav-item-text::before{opacity:1}.main-navigation.unifiednav.effect-text-color{padding:12px 15px}.main-navigation.unifiednav.effect-text-color .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected{color:#9a9a9a}.main-navigation.unifiednav .unifiednav__container .unifiednav__item:not(.unifiednav__item_has-sub-nav) .icon{display:none}.main-navigation.unifiednav:not(.unifiednav_vertical)>.unifiednav__container{justify-content:inherit}#dm .p_hfcontainer nav.main-navigation.unifiednav{min-width:9em!important;text-align:initial!important}#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL])>.unifiednav__container{flex-wrap:wrap;justify-content:inherit}#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL])>.unifiednav__container .nav-item-text::before{text-align:left}#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before{content:''}#dm .dmBody .dmRespRowsWrapper{max-width:none;background-color:transparent}.dmLargeBody .dmRespRow{width:100%;max-width:none;margin-left:0;margin-right:0;padding-left:40px;padding-right:40px}.dm-bfs.dm-layout-home div.dmInner{background-color:#fff}.dmStandardDesktop .dmHeader{background-color:#68ccd1;max-width:100%}.standardHeaderLayout .dmHeader{display:block;height:auto}.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespColsWrapper .dmRespCol:not(.content-removed).empty-column{min-height:100px}.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespCol:not(.content-removed).empty-column,.dmRespRow:not(.dmPlaceHolderRespRow) .dmRespCol:not(.content-removed):empty{min-height:1px}#dm div.dmContent h1{color:#666}#dm div.dmRespCol>*{line-height:normal}#dm div.dmContent h1,#dm div.dmContent h1 *,#dm div.dmContent h2,#dm div.dmContent h2 *,#dm div.dmContent h3,#dm div.dmContent h3 *,#dm div.dmInner{line-height:initial}#dm [data-buttonstyle] div.dmInner .dmWidget span.text,#dm div.dmContent h3{color:#fff}#dm [data-buttonstyle] div.dmInner .dmWidget{-webkit-box-shadow:none;box-shadow:none;-moz-box-shadow:none;border-style:solid;border-width:0;border-color:transparent;background-color:#efe719}#dm div.dmInner h1,#dm div.dmInner h2,#dm div.dmInner h3{font-family:Montserrat}#dm [data-buttonstyle] div.dmInner .dmWidget span.text,#dm div.dmContent h2{color:#333}#dm div.dmOuter div.dmInner{background-position:center center;background-repeat:repeat;background-size:auto}#dm [data-buttonstyle] div.dmInner #site_content .dmWidget span.text{font-weight:400}#dm div.dmInner,#dm div.dmInner .dmRespCol{font-weight:300;color:rgba(0,0,0,1);font-family:Roboto;font-size:16px}#dm [data-buttonstyle] div.dmInner #site_content .dmWidget .iconBg{display:none}.dmLargeBody .dmBody .dmRespRowsWrapper{background-color:transparent}.newPhotoGallery .photoGalleryViewAll.link{color:rgba(65,67,69,1)}#dm div.dmContent h1{color:rgba(0,0,0,1);font-weight:400;font-family:'Old Standard TT';font-size:65px}#dm div.dmContent h2{color:rgba(0,0,0,1);font-weight:400;font-family:Roboto;font-size:45px}#dm div.dmContent h3{color:rgba(0,0,0,1);font-family:'Old Standard TT';font-size:30px}#dm [data-buttonstyle] div.dmInner #site_content .dmWidget{border-radius:50px;-webkit-border-radius:50px;-moz-border-radius:50px;text-align:CENTER;border-width:0;border-style:solid;background-color:rgba(255,255,255,1);-webkit-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;-moz-box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;box-shadow:rgba(0,0,0,.25) 0 3px 11px 0;border-color:rgba(255,255,255,1)}#dm [data-buttonstyle] div.dmInner #site_content .dmWidget span.text{color:rgba(0,0,0,1);font-size:16px}#dm .p_hfcontainer .main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .p_hfcontainer .main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before,#dm .p_hfcontainer .u_1783404857.main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .p_hfcontainer .u_1783404857.main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before{font-size:14px!important}#dm DIV.dmInner{background-repeat:no-repeat;background-image:url(https://irt-cdn.multiscreensite.com/ce0bb35f932b47bb809d0e37905542ba/dms3rep/multi/site_background_education-2087x1173.jpg);background-size:cover;background-position:50% 0;background-attachment:fixed}@media all and (min-width:1920px),all and (-webkit-min-device-pixel-ratio:1.5),all and (min--moz-device-pixel-ratio:1.5),all and (min-device-pixel-ratio:1.5){#dm DIV.dmInner{background-repeat:no-repeat;background-image:url(https://irt-cdn.multiscreensite.com/ce0bb35f932b47bb809d0e37905542ba/dms3rep/multi/site_background_education-2087x1173.jpg);background-size:cover;background-position:50% 0;background-attachment:fixed}}#dm DIV.dmOuter DIV.dmInner{background-image:none;background-color:rgba(255,255,255,1)}#dm .dmContent .dmRespRow{padding-top:15px}#dm .dmContent .dmRespRow .dmRespCol{padding-top:0}#dm .p_hfcontainer div.u_1623205752 img{border-radius:0!important;-moz-border-radius:0!important;-webkit-border-radius:0!important}#dm .p_hfcontainer .u_1783404857.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{padding-right:15px!important;padding-left:15px!important}#dm .dmInner div.dmHeader,#dm .dmInner div.dmHeader.u_hcontainer,#dm .dmInner div.u_hcontainer{background-color:rgba(0,0,0,.3)!important;box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}a.u_1851278315 span.text{color:rgba(0,0,0,1)!important}#dm .p_hfcontainer nav.u_1783404857{color:#fff!important}#dm .p_hfcontainer nav.u_1783404857.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item.dmNavItemSelected{color:rgba(255,255,255,1)!important}#dm .p_hfcontainer .u_1783404857.main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .p_hfcontainer .u_1783404857.main-navigation.unifiednav:not([data-nav-structure=VERTICAL]) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before{font-size:18px!important}#dm .p_hfcontainer nav.u_1783404857.main-navigation.unifiednav .unifiednav__container:not([data-depth])>.unifiednav__item-wrap>.unifiednav__item{color:rgba(200,234,155,1)!important;font-weight:400!important;text-decoration:none!important;font-style:normal!important;font-size:18px!important}#dm .dmInner div.u_hcontainer{float:none!important;top:0!important;left:0!important;width:100%!important;position:relative!important;height:auto!important;max-width:100%!important;min-width:0!important;text-align:center!important;padding:25px 0 20px!important;margin:0 auto!important}#dm .dmInner div.dmHeader.u_hcontainer{padding-bottom:20px!important;padding-top:25px!important}#dm .p_hfcontainer div.u_1952458124{padding:0!important}#dm .p_hfcontainer nav.u_1783404857.main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::after,#dm .p_hfcontainer nav.u_1783404857.main-navigation.unifiednav:not(.unifiednav_vertical) .unifiednav__container:not([data-depth])>.unifiednav__item-wrap:not(:last-child)::before{padding-top:0!important;padding-bottom:0!important;margin-top:0!important;margin-bottom:0!important}#dm .p_hfcontainer div.u_1068781528{padding-left:10px!important}#dm .p_hfcontainer div.u_1467130560{padding-left:0!important}#dm .p_hfcontainer div.u_1783767067{margin-top:0!important;padding:0 15px!important}#dm .dmInner div.fHeader .dmHeader[freeheader=true]{padding-bottom:10px!important;padding-top:10px!important}#dm .p_hfcontainer nav.u_1783404857{float:none!important;top:0!important;left:0!important;width:804px!important;position:relative!important;height:auto!important;max-width:calc(100% - 53px)!important;justify-content:center!important;align-items:stretch!important;min-width:25px!important;text-align:start!important;padding:6.8px 15px!important;margin:15px auto 0!important}#dm .p_hfcontainer div.u_1623205752,a.u_1851278315{padding:0!important;float:none!important;top:0!important;position:relative!important;min-width:25px!important;left:0!important}a.u_1851278315{background-color:rgba(193,204,63,1)!important;border-style:solid!important;border-width:1px!important;border-color:rgba(201,211,86,1)!important;width:220px!important;height:63px!important;max-width:calc(100% - 604px)!important;text-align:center!important;margin:0 0 40px 40px!important}#dm .p_hfcontainer div.u_1623205752{width:calc(100% - 79px)!important;max-width:74px!important;text-align:center!important;display:block!important;margin:.01px auto 0!important}.stickyHeaderSpacer{height:120px!important}#dm .dmBody div.u_1414742659{background-color:rgba(0,0,0,0)!important;background-image:none!important}#dm .dmBody a.u_1402979035,#dm .dmBody div.u_1003553778 input:not([type=submit]){background-color:rgba(255,255,255,1)!important;border-style:solid!important;border-width:1px!important}#dm .dmBody a.u_1402979035{border-color:rgba(255,255,255,1)!important}#dm .dmBody div.dmform-error{font-style:normal!important}#dm .dmBody div.u_1275707818 img{border-radius:0!important;-moz-border-radius:0!important;-webkit-border-radius:0!important}#dm .dmBody .u_1353414862 .caption-inner,#dm .dmBody .u_1454595780 .caption-inner{border-radius:100%!important;-webkit-border-top-right-radius:100%!important;-webkit-border-bottom-right-radius:100%!important;-webkit-border-bottom-left-radius:100%!important;-webkit-border-top-left-radius:100%!important}#dm .dmBody div.u_1003553778 input:not([type=submit]){border-color:transparent!important}#dm .dmBody .u_pa_8552430:before{opacity:.5!important;background-color:#000!important}#dm .dmBody div.u_pa_8552430:before{background-color:rgba(0,0,0,1)!important;opacity:.5!important}#dm .dmBody div.u_1454595780 .caption-inner{background-color:rgba(0,0,0,.4)!important}#dm .dmBody div.u_OurStory{background-color:rgba(255,255,255,1)!important}#dm .dmBody div.u_1454595780 .caption-container .caption-title{color:rgba(236,246,120,1)!important;font-size:30px!important}#dm .dmBody .u_1454595780 .caption-inner{-moz-border-radius:100%!important;-webkit-border-radius:100%!important}#dm .dmBody a.u_1402979035 span.text{color:rgba(0,0,0,1)!important}#dm .dmBody div.u_1231395195 .caption-container .caption-title,#dm .dmBody div.u_1353414862 .caption-container .caption-title{color:rgba(236,246,120,1)!important;font-size:30px!important}#dm .dmBody div.u_pa_8552430{background-image:none!important;background-color:rgba(0,0,0,.3)!important;box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}#dm .dmBody div.u_1231395195 .caption-inner,#dm .dmBody div.u_1353414862 .caption-inner{background-color:rgba(0,0,0,.4)!important}#dm .dmBody .u_1353414862 .caption-inner{-moz-border-radius:100%!important;-webkit-border-radius:100%!important}#dm .dmBody .u_1725378871{display:block!important}#dm .dmBody .u_1646993961,#dm .dmBody .u_1866100292{display:none!important}#dm .dmBody .u_1544245441{display:block!important}#dm .dmBody .u_1109421419,#dm .dmBody .u_1475874387{display:none!important}#dm .dmBody .u_1092856495{display:block!important}#dm .dmBody .u_1023375414,#dm .dmBody .u_1831232375{display:none!important}#dm .dmBody .u_1857227504{display:block!important}#dm .dmBody .u_1173495934,#dm .dmBody .u_1801552278{display:none!important}#dm .dmBody .u_1372518800{display:block!important}#dm .dmBody .u_1058611277,#dm .dmBody .u_1406367700{display:none!important}#dm .dmBody .u_1399600173{display:block!important}#dm .dmBody .u_1477535599,#dm .dmBody .u_1910891194{display:none!important}#dm .dmBody .u_1909506418{display:block!important}#dm .dmBody .u_1039829848,#dm .dmBody .u_1814853877{display:none!important}#dm .dmBody .u_1698562067{display:block!important}#dm .dmBody .u_1065670111,#dm .dmBody .u_1086848352{display:none!important}#dm .dmBody .u_1205856974{display:block!important}#dm .dmBody .u_1429026584,#dm .dmBody .u_1917170142{display:none!important}#dm .dmBody .u_1334086160{display:block!important}#dm .dmBody .u_1168052974,#dm .dmBody .u_1617873674{display:none!important}#dm .dmBody .u_1290930837{display:block!important}#dm .dmBody .u_1279959457,#dm .dmBody .u_1370608675{display:none!important}#dm .dmBody .u_1406592350{display:block!important}#dm .dmBody .u_1408064921,#dm .dmBody .u_1685509046{display:none!important}#dm .dmBody .u_1501646832{display:block!important}#dm .dmBody .u_1465891439,#dm .dmBody .u_1782094042{display:none!important}#dm .dmBody .u_1934092553{display:block!important}#dm .dmBody .u_1005872608,#dm .dmBody .u_1052986845{display:none!important}#dm .dmBody .u_1703309019{display:block!important}#dm .dmBody .u_1451773876,#dm .dmBody .u_1671824844{display:none!important}#dm .dmBody .u_1507941765{display:block!important}#dm .dmBody .u_1633727484,#dm .dmBody .u_1902065693{display:none!important}#dm .dmBody .u_1231395195 .caption-inner{-webkit-border-top-right-radius:100%!important;-webkit-border-bottom-right-radius:100%!important;-webkit-border-bottom-left-radius:100%!important;-webkit-border-top-left-radius:100%!important;border-radius:100%!important;-moz-border-radius:100%!important;-webkit-border-radius:100%!important}#dm .dmBody .u_1009760948{display:block!important}#dm .dmBody .u_1385700907,#dm .dmBody .u_1886571756{display:none!important}#dm .dmBody .u_1983478500{display:block!important}#dm .dmBody .u_1877224640,#dm .dmBody .u_1894853811{display:none!important}#dm .dmBody .u_1186578922{display:block!important}#dm .dmBody .u_1060025910,#dm .dmBody .u_1451836569{display:none!important}#dm .dmBody .u_1612485727{display:block!important}#dm .dmBody .u_1429394664,#dm .dmBody .u_1662356797{display:none!important}#dm .dmBody .u_1454595780 .photoGalleryThumbs{padding:10px!important}#dm .dmBody .u_1454595780 .photoGalleryViewAll{padding:0 20px!important}#dm .dmBody h1.u_1978734296{float:none!important;top:0!important;left:0!important;width:100%!important;position:relative!important;height:auto!important;max-width:calc(100% - 0px)!important;min-width:25px!important;text-align:center!important;display:block!important;padding:2px 0!important;margin:55px auto 8px!important}#dm .dmBody div.u_1414742659{background-repeat:repeat!important;background-size:auto!important;background-position:center center!important;margin-bottom:0!important;padding:0!important}#dm .dmBody div.u_1260348125,#dm .dmBody h2.u_1289503476{float:none!important;top:0!important;height:auto!important;max-width:calc(100% - 0px)!important;min-width:25px!important;text-align:left!important;padding:2px 0!important;position:relative!important}#dm .dmBody div.u_1457037502{margin-top:-56px!important}#dm .dmBody h2.u_1289503476{left:0!important;width:100%!important;margin:-8px 0 8px!important}#dm .dmBody div.u_1260348125{line-height:200%!important;left:0!important;width:415.99px!important;display:block!important;margin:10px 85.63px 0 0!important}#dm .dmBody div.u_OurStory{padding-top:0!important;padding-bottom:0!important}#dm .dmBody h3.u_1323282280,#dm .dmBody h3.u_1381759823{padding:2px 0!important;float:none!important;top:0!important;left:0!important;height:auto!important;display:block!important}#dm .dmBody h3.u_1381759823{width:100%!important;position:relative!important;max-width:100%!important;min-width:0!important;text-align:center!important;margin:8px auto!important}#dm .dmBody h3.u_1323282280{width:300px!important;position:relative!important;max-width:calc(100% - 0px)!important;min-width:25px!important;text-align:left!important;margin:46px 0 8px!important}#dm .dmBody a.u_1402979035{float:none!important;top:0!important;left:0!important;width:220px!important;position:relative!important;height:63px!important;max-width:calc(100% - 604px)!important;min-width:25px!important;text-align:center!important;padding:0!important;margin:42px auto 10px!important}#dm .dmBody div.u_1275707818,#dm .dmBody div.u_pa_8552430{width:100%!important;float:none!important;top:0!important;left:0!important;position:relative!important;text-align:center!important}#dm .dmBody div.u_1275707818{max-width:calc(100% - 0px)!important;min-width:25px!important;padding:0!important;margin:71px auto -1px!important}#dm .dmBody div.u_pa_8552430{max-width:none!important;min-width:0!important;height:auto!important;background-repeat:no-repeat!important;background-size:cover!important;background-attachment:initial!important;background-position:0 50%!important;padding:100px 0 0!important;margin:0 auto!important}#dm .d-page-1716942098 DIV.dmInner{background-repeat:no-repeat!important;background-image:url(https://lirp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/opt/Green+Building-1920w.jpg)!important;background-size:cover!important;background-attachment:fixed!important;background-position:50% 100%!important}#dm .dmBody div.u_1717300668{height:119px!important;float:none!important;top:0!important;left:0!important;width:calc(100% - 0px)!important;position:relative!important;max-width:100%!important;min-width:25px!important;text-align:center!important;padding:0!important;margin:0!important}#dm .dmBody .u_1353414862 .photoGalleryThumbs{padding:10px!important}#dm .dmBody .u_1353414862 .photoGalleryViewAll{padding:0 20px!important}#dm .dmBody div.u_1030023341{float:none!important;top:0!important;left:0!important;width:calc(100% - 137px)!important;position:relative!important;max-width:327.98px!important;min-width:25px!important;text-align:center!important;display:block!important;height:auto!important;padding:0!important;margin:0 0 0 137.61px!important}#dm .dmBody .u_1231395195 .photoGalleryThumbs{padding:10px!important}#dm .dmBody .u_1231395195 .photoGalleryViewAll{padding:0 20px!important}.font-size-36{font-size:36px!important}:root{--button-color:#F66035;--button-hover-color:#F86F4C;--text-on-light:#F66035;--text-on-dark:#F66035;--text-on-button:#FFF;--header-color:#313131;--header-border-color:#222222;--header-text-color:#ffffff}#imageZone{position:absolute;margin:auto}.coloumns{border-radius:3px;background-color:#f9980d;height:18px;width:6px;-webkit-animation-name:loader;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-direction:linear;-moz-animation-name:loader;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-direction:linear;opacity:.25;-webkit-transform:scale(.7);-webkit-transform-origin:50% 180%;-moz-transform:scale(.7);-moz-transform-origin:50% 180%;position:absolute}#coloumn1{-webkit-transform:rotate(0);-webkit-animation-delay:-.914s;-moz-transform:rotate(0);-moz-animation-delay:-.914s}#coloumn2{-webkit-transform:rotate(30deg);-webkit-animation-delay:-.831s;-moz-transform:rotate(30deg);-moz-animation-delay:-.831s}#coloumn3{-webkit-transform:rotate(60deg);-webkit-animation-delay:-.747s;-moz-transform:rotate(60deg);-moz-animation-delay:-.747s}#coloumn4{-webkit-transform:rotate(90deg);-webkit-animation-delay:-.664s;-moz-transform:rotate(90deg);-moz-animation-delay:-.664s}#coloumn5{-webkit-transform:rotate(120deg);-webkit-animation-delay:-.581s;-moz-transform:rotate(120deg);-moz-animation-delay:-.581s}#coloumn6{-webkit-transform:rotate(150deg);-webkit-animation-delay:-.498s;-moz-transform:rotate(150deg);-moz-animation-delay:-.498s}#coloumn7{-webkit-transform:rotate(180deg);-webkit-animation-delay:-.415s;-moz-transform:rotate(180deg);-moz-animation-delay:-.415s}#coloumn8{-webkit-transform:rotate(210deg);-webkit-animation-delay:-.332s;-moz-transform:rotate(210deg);-moz-animation-delay:-.332s}#coloumn9{-webkit-transform:rotate(240deg);-webkit-animation-delay:-.249s;-moz-transform:rotate(240deg);-moz-animation-delay:-.249s}#coloumn10{-webkit-transform:rotate(270deg);-webkit-animation-delay:-.166s;-moz-transform:rotate(270deg);-moz-animation-delay:-.166s}#coloumn11{-webkit-transform:rotate(300deg);-webkit-animation-delay:-83ms;-moz-transform:rotate(300deg);-moz-animation-delay:-83ms}#coloumn12{-webkit-transform:rotate(330deg);-moz-transform:rotate(330deg)}@-webkit-keyframes loader{0%{opacity:1}100%{opacity:.25}}@-moz-keyframes loader{0%{opacity:1}100%{opacity:.25}} .dmDesktopBody [data-anim-desktop]:not([data-anim-desktop='none']) { visibility: hidden; } </style> <style id="fontFallbacks"> @font-face { font-family: "Roboto Fallback"; src: local('Arial'); ascent-override: 92.6709%; descent-override: 24.3871%; size-adjust: 100.1106%; line-gap-override: 0%; }@font-face { font-family: "Montserrat Fallback"; src: local('Arial'); ascent-override: 84.9466%; descent-override: 22.0264%; size-adjust: 113.954%; line-gap-override: 0%; }@font-face { font-family: "Assistant Fallback"; src: local('Arial'); ascent-override: 109.3873%; descent-override: 30.7484%; size-adjust: 93.3381%; line-gap-override: 0%; }@font-face { font-family: "Old Standard TT Fallback"; src: local('Arial'); ascent-override: 78.2213%; descent-override: 24.4313%; line-gap-override: 24.226%; size-adjust: 97.4159%; } </style> <!-- End render the required css and JS in the head section --> <meta property="og:type" content="website"> <meta property="og:url" content="https://www.maclb.com/"> <meta name="twitter:card" content="summary"/> <!-- SYS- VVNfRElSRUNUX1BST0RVQ1RJT04= --> </head> <body id="dmRoot" data-page-alias="home" class="dmRoot dmDesktopBody fix-mobile-scrolling addCanvasBorder dmLargeBody " style="padding:0;margin:0;" > <!-- ========= Site Content ========= --> <div id="dm" class='dmwr'> <div class="dm_wrapper standard-var5 widgetStyle-3 standard"> <div dmwrapped="true" id="1901957768" class="dm-home-page" themewaschanged="true"> <div dmtemplateid="StandardLayoutMultiD" class="standardHeaderLayout dm-bfs dm-layout-home hasAnimations hasStickyHeader inMiniHeaderMode dmPageBody d-page-1716942098 dmFreeHeader" id="dm-outer-wrapper" data-page-class="1716942098" data-buttonstyle="ROUND_SIDES" data-soch="true" data-background-parallax-selector=".dmHomeSection1, .dmSectionParallex"> <div id="dmStyle_outerContainer" class="dmOuter"> <div id="dmStyle_innerContainer" class="dmInner"> <div class="dmLayoutWrapper standard-var dmStandardDesktop"> <div> <div id="iscrollBody"> <div id="site_content"> <div class="dmHeaderContainer fHeader d-header-wrapper"> <div id="hcontainer" class="u_hcontainer dmHeader p_hfcontainer" freeheader="true" headerlayout="b58ba5b5703b4cd7b5f5f7951565dc87===horizontal-layout-5" data-scrollable-target="body" data-scrollable-target-threshold="1" data-scroll-responder-id="1" preserve-sticky-header="true" logo-size-target="79%"> <div dm:templateorder="85" class="dmHeaderResp dmHeaderStack noSwitch" id="1709005236"> <div class="dmRespRow dmDefaultListContentRow u_1783767067 fullBleedChanged fullBleedMode" style="text-align:center" id="1783767067"> <div class="dmRespColsWrapper" id="1527230018"> <div class="u_1952458124 small-12 dmRespCol large-2 medium-2" id="1952458124"> <div class="u_1623205752 imageWidget align-center" data-widget-type="image" id="1623205752" data-element-type="image"> <a href="/" id="1829253137" file="false"><img src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Mac+Logo-480w.png" id="1359157006" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/Mac+Logo.png" onerror="handleImageLoadError(this)" height="60.09375" width="74.0"/></a> </div> </div> <div class="u_1068781528 dmRespCol small-12 large-8 medium-8" id="1068781528"> <nav class="u_1783404857 effect-text-color main-navigation unifiednav dmLinksMenu" role="navigation" layout-main="horizontal_nav_layout_1" layout-sub="submenu_horizontal_2" data-show-vertical-sub-items="HOVER" id="1783404857" dmle_extension="onelinksmenu" data-element-type="onelinksmenu" wr="true" icon="true" surround="true" adwords="" navigation-id="unifiedNav"> <ul role="menubar" class="unifiednav__container " data-auto="navigation-pages"> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/" class="unifiednav__item dmNavItemSelected dmUDNavigationItem_00 " target="" data-target-page-alias="" data-auto="selected-page"> <span class="nav-item-text " data-link-text=" Home " data-auto="page-text-style">Home<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/#OurStory" class="unifiednav__item dmUDNavigationItem_010101161391 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Discover " data-auto="page-text-style">Discover<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/#Flavor" class="unifiednav__item dmUDNavigationItem_010101983334 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Shipments " data-auto="page-text-style">Shipments<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/#Visitus" class="unifiednav__item dmUDNavigationItem_010101107949 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Visit " data-auto="page-text-style">Visit<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/about-us" class="unifiednav__item dmUDNavigationItem_010101385793 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" About Us " data-auto="page-text-style">About Us<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/our-activities" class="unifiednav__item dmUDNavigationItem_010101423255 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Our Activities " data-auto="page-text-style">Our Activities<span class="icon icon-angle-down"></span> </span> </a> </li> <li role="menuitem" class=" unifiednav__item-wrap " data-auto="more-pages" data-depth="0"> <a href="/contact-us" class="unifiednav__item dmUDNavigationItem_010101936721 " target="" data-target-page-alias=""> <span class="nav-item-text " data-link-text=" Contact Us " data-auto="page-text-style">Contact Us<span class="icon icon-angle-down"></span> </span> </a> </li> </ul> </nav> </div> <div class="u_1467130560 dmRespCol small-12 large-2 medium-2 empty-column" id="1467130560"></div> </div> </div> </div> </div> </div> <div class="stickyHeaderSpacer" id="stickyHeaderSpacer" data-new="true"></div> <div class="dmRespRow dmRespRowStable dmRespRowNoPadding dmPageTitleRow "> <div class="dmRespColsWrapper"> <div class="large-12 dmRespCol"> <div id="innerBar" class="innerBar lineInnerBar dmDisplay_None"> <div class="titleLine display_None"><hr/></div> <!-- Page title is hidden in css for new responsive sites. It is left here only so we don't break old sites. Don't copy it to new layouts --> <div id="pageTitleText"></div> <div class="titleLine display_None"><hr/></div> </div> </div> </div> </div> <div dmwrapped="true" id="dmFirstContainer" class="dmBody u_dmStyle_template_home dm-home-page" themewaschanged="true"> <div id="allWrapper" class="allWrapper"><!-- navigation placeholders --> <div id="dm_content" class="dmContent" role="main"> <div dm:templateorder="170" class="dmHomeRespTmpl mainBorder dmRespRowsWrapper dmFullRowRespTmpl" id="1716942098"> <div class="u_pa_8552430 dmRespRow fullBleedChanged fullBleedMode dmSectionNoParallax" style="text-align: center;" id="pa_8552430" mode="1"> <div class="dmRespColsWrapper u_1568127116" id="1568127116"> <div class="u_1414742659 dmRespCol small-12 medium-12 large-12" id="1414742659"> <h1 class="u_1978734296 dmNewParagraph" id="1978734296" style="transition: none; display: block;" data-element-type="paragraph"><font><span style=""><span style=""><span style=""><span style=""><span style="font-family:Assistant, 'Assistant Fallback';"><font style="color: rgb(200, 234, 155);">MULTI ASSETS CORPORATION</font></span></span></span></span></span></font></h1> <h3 class="u_1381759823 dmNewParagraph" data-element-type="paragraph" id="1381759823" style="transition-duration: initial; transition-timing-function: initial; transition-delay: initial; transition-property: none;"><font style=""><i style=""><span style="font-family:Assistant, 'Assistant Fallback';"><font style="color: rgb(200, 234, 155);">- MAC (OFFSHORE) SAL -</font></span></i></font></h3> <a data-display-type="block" class="u_1402979035 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient" file="false" href="/#OurStory" id="1402979035" data-element-type="dButtonLinkId" target="_blank"> <span class="iconBg" id="1200363342"> <span class="icon hasFontIcon icon-star" id="1772035424"></span> </span> <span class="text" id="1874221301">Let's go</span> </a> <div class="u_1275707818 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1275707818"><img src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/white_diagonale_1-2880w.png" id="1259379824" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/white_diagonale_1.png" onerror="handleImageLoadError(this)" height="178.0" width="1920.0"/></div> </div> </div> </div> <div class="dmRespRow u_OurStory mobile-columns-reversed" style="text-align: center;" id="OurStory" data-anchor="Our Story"> <div class="dmRespColsWrapper" id="1746736087"> <div class="u_1120506197 dmRespCol small-12 medium-6 large-6" id="1120506197" data-anim-desktop="fadeInLeft"> <h3 class="u_1323282280 dmNewParagraph" id="1323282280" style="display: block; transition: none;" data-element-type="paragraph"><div><span><font style="color: rgb(193, 204, 63);">Discover</font></span></div></h3> <h2 class="u_1289503476 dmNewParagraph" data-element-type="paragraph" id="1289503476" style="transition: none; display: block;"><span style="" class="font-size-36 lh-1">Multi Assets Corporation</span></h2> <div class="u_1260348125 dmNewParagraph" id="1260348125" style="transition: none; display: block;"><div style="">MAC (OFFSHORE) SAL, is a company located in Beirut, Lebanon supplying products to companies in Africa, mostly in Angola and the Democratic Republic of Congo (DRC). </div></div></div> <div class="u_1457037502 dmRespCol small-12 medium-6 large-6" id="1457037502" data-anim-desktop="fadeInRight"> <div data-element-type="spacer" class="u_1717300668 dmSpacer" id="1717300668"></div> <div class="u_1030023341 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1030023341" data-anim-desktop="fadeInRight"> <a href="/about-us" id="1267398699" file="false"><img src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Half+Logo-480w.png" id="1045688450" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/Half+Logo.png" data-hover-effect="zoomout" onerror="handleImageLoadError(this)" height="148.234375" width="327.96875"/></a> </div> </div> </div> </div> <div class="dmRespRow fullBleedChanged fullBleedMode u_1005761761" style="text-align: center;" id="1005761761"> <div class="dmRespColsWrapper" id="1488490317"> <div class="dmRespCol small-12 medium-12 large-12 u_1526558041" id="1526558041"> <div data-element-type="spacer" class="dmSpacer u_1466545921" id="1466545921"></div> <a data-display-type="block" class="u_1498465738 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient" file="false" href="/about-us" data-element-type="dButtonLinkId" id="1498465738"> <span class="iconBg" id="1749510073"> <span class="icon hasFontIcon icon-star" id="1776397929"></span> </span> <span class="text" id="1941258789">Learn more</span> </a> <div class="u_1596665303 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1596665303"><img src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/green_diagonale_top-2880w.png" id="1986769924" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/green_diagonale_top.png" onerror="handleImageLoadError(this)" height="178.0" width="1920.0"/></div> </div> </div> </div> <div class="u_Info dmRespRow" style="text-align: center;" id="Info" data-anchor="Info"> <div class="dmRespColsWrapper" id="1978649141"> <div class="u_1482022279 dmRespCol small-12 large-3 medium-3" id="1482022279" data-anim-desktop="zoomIn"> <div class="u_1485501750 graphicWidget" data-element-type="graphic" data-widget-type="graphic" id="1485501750" data-layout="graphic-style-2"> <a href="/our-activities" id="1103155976" file="false"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 100 100" id="1225417670" class="svg u_1225417670" data-hover-effect="zoomout" data-icon-name="general_closed_file_box"> <path d="M80,20.73H20a1.3,1.3,0,0,0-1.3,1.3V40.5A1.3,1.3,0,0,0,20,41.8h2.72V78a1.3,1.3,0,0,0,1.3,1.3H76a1.3,1.3,0,0,0,1.3-1.3V41.8H80a1.3,1.3,0,0,0,1.3-1.3V22A1.3,1.3,0,0,0,80,20.73Zm-5.31,56H25.31V41.8H74.69Zm4-37.47H21.3V23.32H78.7Z" id="1987458373"></path> <path d="M59.27,59H40.73a6,6,0,1,1,0-11.9H59.27a6,6,0,1,1,0,11.9ZM40.73,49.7a3.36,3.36,0,1,0,0,6.71H59.27a3.36,3.36,0,1,0,0-6.71Z" id="1964925972"></path> </svg> </a> </div> <div class="u_1317439155 dmNewParagraph" id="1317439155" style="transition: none; display: block;"><span style="font-weight: 300;"><div>We import & export all types of general goods & equipment</div></span><div></div></div></div> <div class="u_1340327977 dmRespCol small-12 large-3 medium-3" id="1340327977" data-anim-desktop="zoomIn"> <div class="u_1080808769 graphicWidget" data-element-type="graphic" data-widget-type="graphic" id="1080808769" data-layout="graphic-style-2"> <a href="/our-activities" id="1953470837" file="false"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 100 100" id="1143103689" class="svg u_1143103689" data-hover-effect="zoomout" data-icon-name="food_and_drinks_fork_knife"> <path d="M23.22,10.47c1.24-1.53,1.9-1.82,3.11.09,6.36,10,12.63,20.07,19.27,29.89,5.75,8.5,11.95,16.7,18,25q6.1,8.46,12.21,16.91c1.58,2.18,1.27,3.79-1,5.24L71.12,90c-2.12,1.34-3.61,1-4.86-1.17q-5-8.73-10-17.49C52.15,64.24,48.06,57.16,44,50c-.55-1-1-1.09-2-.64-4.29,1.92-7-2.85-9.14-7-3.43-6.61-6.73-13.28-10-20C21.84,20.33,21.17,13,23.22,10.47Z" id="1006944507"></path> <path d="M55.11,50.37c-1-1.43-2.73-4.34-3.82-5.73,0-1.09,1.39-2.2,1.93-2.72a2.41,2.41,0,0,0,.56-2.59c-.65-2.5-1.33-5-.43-7.63a23,23,0,0,1,2.93-5.21c3.61-5.4,7.26-10.78,10.9-16.16a1.61,1.61,0,0,1,2.39-.6,1.55,1.55,0,0,1,.5,2.37q-5,8.13-10,16.25c-.37.6-.93,1.21-.07,1.89s1.52.61,2.2-.41c3.53-5.34,7.18-10.61,10.67-16,.87-1.33,1.51-1.35,2.43-.84a1.79,1.79,0,0,1,.48,2.72C72.37,21.13,69,26.61,65.66,32c-.58.93-.57,1.55.45,2.09s1.3-.05,1.74-.71Q73,25.66,78.26,17.92c1.18-1.76,1.76-2.33,3-1.38a1.43,1.43,0,0,1,.3,2.22c-4.23,6.78-8.4,13.6-12.7,20.35a9,9,0,0,1-6.52,4.3c-.09,0-4,1.24-5.35,3.44C56.9,47.2,55.54,50.14,55.11,50.37Z" id="1975432495"></path> <path d="M44.28,54.74c1.44,2.5,2.73,4.79,4.06,7.06a1.19,1.19,0,0,1,0,1.37c-4.64,8.06-10.88,18-15.53,26.1a2.72,2.72,0,0,1-4,1c-1.48-.88-2.93-1.82-4.37-2.76-1.82-1.18-2.11-2.69-.81-4.49q8.43-11.72,16.88-23.41C41.2,58.64,43.5,55.82,44.28,54.74Z" id="1376337240"></path> </svg> </a> </div> <div class="u_1209250620 dmNewParagraph" id="1209250620" style="transition: none; display: block;">We import & export all types of foodstuff & raw materials</div></div> <div class="u_1183665547 dmRespCol small-12 large-3 medium-3" id="1183665547" data-anim-desktop="zoomIn"> <div class="u_1333933711 graphicWidget" data-element-type="graphic" data-widget-type="graphic" id="1333933711" data-layout="graphic-style-2"> <a href="/our-activities" id="1492523137" file="false"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 70 70" id="1873064478" class="svg u_1873064478" data-hover-effect="zoomout" data-icon-name="wp-syringe"> <path d="M59.7,17.3l-7-7c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l2.8,2.8l-5.6,5.6l-2.4-2.4c-1.2-1.2-3.1-1.2-4.2,0L22.6,37 c-0.4,0.4-0.6,0.9-0.6,1.4v6.2l-2.7,2.7c-0.4,0.4-0.4,1,0,1.4l0.3,0.3l-9.3,9.3c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.5,0.3,0.7,0.3 c0.3,0,0.5-0.1,0.7-0.3l9.3-9.3l0.3,0.3c0.2,0.2,0.5,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l2.7-2.7h6.2c0.5,0,1-0.2,1.4-0.6l19.3-19.3 c1.2-1.2,1.2-3.1,0-4.2l-2.4-2.4l5.6-5.6l2.8,2.8c0.2,0.2,0.5,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3C60.1,18.3,60.1,17.7,59.7,17.3z M30.3,37.7l-2.8-2.8l1.4-1.4l2.8,2.8L30.3,37.7z M34.3,33.7l-2.8-2.8l1.4-1.4l2.8,2.8L34.3,33.7z M38.3,29.7l-2.8-2.8l1.4-1.4 l2.8,2.8L38.3,29.7z M50.9,25.3c0.4,0.4,0.4,1,0,1.4l-3.1,3.1l-7.6-7.6l3.1-3.1c0.4-0.4,1-0.4,1.4,0L50.9,25.3z" id="1329600629"></path> </svg> </a> </div> <div class="u_1958835841 dmNewParagraph" id="1958835841" style="transition: none;">We import & export pharmaceutical products</div></div> <div class="dmRespCol large-3 medium-3 small-12" id="1449875659"> <div class="u_1356162234 graphicWidget" data-element-type="graphic" data-widget-type="graphic" id="1356162234" data-layout="graphic-style-2"> <a href="/our-activities" id="1361649519" file="false"> <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 1792 1792" id="1795138426" class="svg u_1795138426" data-hover-effect="zoomout" data-icon-name="fa-truck"> <path fill="inherit" d="M640 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM256 896h384v-256h-158q-13 0-22 9l-195 195q-9 9-9 22v30zM1536 1408q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM1792 320v1024q0 15-4 26.5t-13.5 18.5-16.5 11.5-23.5 6-22.5 2-25.5 0-22.5-0.5q0 106-75 181t-181 75-181-75-75-181h-384q0 106-75 181t-181 75-181-75-75-181h-64q-3 0-22.5 0.5t-25.5 0-22.5-2-23.5-6-16.5-11.5-13.5-18.5-4-26.5q0-26 19-45t45-19v-320q0-8-0.5-35t0-38 2.5-34.5 6.5-37 14-30.5 22.5-30l198-198q19-19 50.5-32t58.5-13h160v-192q0-26 19-45t45-19h1024q26 0 45 19t19 45z" id="1761040497"></path> </svg> </a> </div> <div class="u_1856152463 dmNewParagraph" id="1856152463" style="transition: none;">We import & export vehicles & trucks</div></div> </div> </div> <div class="dmRespRow fullBleedChanged fullBleedMode u_1028366005" style="text-align: center;" id="1028366005"> <div class="dmRespColsWrapper" id="1093308305"> <div class="dmRespCol small-12 medium-12 large-12 u_1601690868" id="1601690868"> <div class="u_1481601282 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1481601282"><img src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/green_diagonale_bottom-2880w.png" id="1767201581" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/green_diagonale_bottom.png" onerror="handleImageLoadError(this)" height="178.0" width="1920.0"/></div> </div> </div> </div> <div class="dmRespRow u_Flavor" style="text-align: center;" id="Flavor" data-anchor="Flavor"> <div class="dmRespColsWrapper" id="1637763980"> <div class="dmRespCol small-12 medium-12 large-12 u_1637629881" id="1637629881"> <h3 class="u_1933616604 dmNewParagraph" id="1933616604" style="transition: none;" data-element-type="paragraph"><div><span><font style="color: rgb(193, 204, 63);">Meet </font></span></div></h3> <h2 class="u_1736061599 dmNewParagraph" data-element-type="paragraph" id="1736061599" style="transition: none; display: block;">Some Examples of our Shipments</h2> <div class="dmDividerWrapper clearfix" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1900043514"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1688832926"/></div> <h3 class="dmNewParagraph" data-element-type="paragraph" id="1494865824" style="text-align: center; " data-styletopreserve="{"background-image":""}" background-image="" :="">Raw Material, Pharmaceutical Products, Automobile and others...</h3> <div class="u_1231395195 dmPhotoGallery newPhotoGallery dmPhotoGalleryResp photo-gallery-done text-layout-over captionAlignment-center_center photoGallery" galleryoptionsparams="{thumbnailsPerRow: 3, rowsToShow: 3, imageScaleMethod: true}" data-desktop-layout="classic-rounded" data-desktop-columns="4" data-element-type="dPhotoGalleryId" data-desktop-text-layout="over" id="1231395195" data-placeholder="false" data-rows-to-show="100" data-image-hover-effect="zoomout" data-tablet-text-layout="fixed" data-tablet-caption-alignment="center_center" data-mobile-text-layout="fixed" data-mobile-caption-alignment="center_center" data-image-animation="rotateInDownRight" data-link-gallery="true"> <div class="dmPhotoGalleryHolder clearfix gallery shadowEffectToChildren gallery4inArow" id="1362986591"></div> <div class="layout-container classic-rounded"> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-4" data-index="0"> <div index="0" class="photoGalleryThumbs animated " data-index="0"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1424324560 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/Complete-Production-Line-for-Flavours-Juice-Factory-Equipment-Fruit-Juice-Processing-Plant.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Complete-Production-Line-for-Flavours-Juice-Factory-Equipment-Fruit-Juice-Processing-Plant-640w.jpg');"><img id="1010252587" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Complete-Production-Line-for-Flavours-Juice-Factory-Equipment-Fruit-Juice-Processing-Plant-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1009760948" class="caption-container u_1009760948" style="display:none"> <span class="caption-inner"> <h3 id="1592636866" class="caption-title u_1592636866">Raw Material for Juice Factory</h3> <a id="1886571756" class="caption-button dmWidget clearfix u_1886571756" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="1"> <div index="1" class="photoGalleryThumbs animated " data-index="1"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1927226464 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/Pharma-96e8b43e.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Pharma-96e8b43e-640w.jpg');"><img id="1455807672" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Pharma-96e8b43e-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1983478500" class="caption-container u_1983478500" style="display:none"> <span class="caption-inner"> <h3 id="1333703993" class="caption-title u_1333703993">Pharmaceutical Products</h3> <a id="1877224640" class="caption-button dmWidget clearfix u_1877224640" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="2"> <div index="2" class="photoGalleryThumbs animated " data-index="2"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1280121390 has-link" href="/" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/Picjup3.png" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Picjup3-640w.png');"><img id="1465912572" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Picjup3-1920w.png" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1186578922" class="caption-container u_1186578922" style="display:none"> <span class="caption-inner"> <h3 id="1844958212" class="caption-title u_1844958212">Trucks</h3> <a id="1060025910" class="caption-button dmWidget clearfix u_1060025910" href="/" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="3"> <div index="3" class="photoGalleryThumbs animated " data-index="3"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1757902909 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/New+Type+truck+%287%29.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/New+Type+truck+%287%29-640w.jpg');"><img id="1536660509" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/New+Type+truck+%287%29-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1612485727" class="caption-container u_1612485727" style="display:none"> <span class="caption-inner"> <h3 id="1271443061" class="caption-title u_1271443061">Vehicles</h3> <a id="1662356797" class="caption-button dmWidget clearfix u_1662356797" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> </div> </div> <h3 class="dmNewParagraph" data-element-type="paragraph" id="1977562420" style="text-align: center; " data-styletopreserve="{"background-image":""}" background-image="" :="">Foodstuff & Raw Material</h3> <div class="u_1353414862 dmPhotoGallery newPhotoGallery dmPhotoGalleryResp photo-gallery-done text-layout-over captionAlignment-center_center photoGallery" galleryoptionsparams="{thumbnailsPerRow: 3, rowsToShow: 3, imageScaleMethod: true}" data-desktop-layout="classic-rounded" data-desktop-columns="4" data-element-type="dPhotoGalleryId" data-desktop-text-layout="over" id="1353414862" data-placeholder="false" data-rows-to-show="100" data-image-hover-effect="zoomout" data-tablet-text-layout="fixed" data-tablet-caption-alignment="center_center" data-mobile-text-layout="fixed" data-mobile-caption-alignment="center_center" data-image-animation="rotateInDownRight" data-link-gallery="true"> <div class="dmPhotoGalleryHolder clearfix gallery shadowEffectToChildren gallery4inArow" id="1362986591"></div> <div class="layout-container classic-rounded"> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-4" data-index="0"> <div index="0" class="photoGalleryThumbs animated " data-index="0"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1904438765 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/SUGAR-CUBES.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/SUGAR-CUBES-640w.jpg');"><img id="1883893958" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/SUGAR-CUBES-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1205856974" class="caption-container u_1205856974" style="display:none"> <span class="caption-inner"> <h3 id="1186465906" class="caption-title u_1186465906">Sugar</h3> <a id="1429026584" class="caption-button dmWidget clearfix u_1429026584" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="1"> <div index="1" class="photoGalleryThumbs animated " data-index="1"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1568503905 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/white-rice-on-a-table.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/white-rice-on-a-table-640w.jpg');"><img id="1873335546" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/white-rice-on-a-table-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1290930837" class="caption-container u_1290930837" style="display:none"> <span class="caption-inner"> <h3 id="1539223631" class="caption-title u_1539223631">Rice</h3> <a id="1279959457" class="caption-button dmWidget clearfix u_1279959457" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="2"> <div index="2" class="photoGalleryThumbs animated " data-index="2"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1593918329 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/Pasta_-_tips_from_chef_neil_e35db67b-7229-40c1-a2a5-f1886540cacf_1024x1024.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Pasta_-_tips_from_chef_neil_e35db67b-7229-40c1-a2a5-f1886540cacf_1024x1024-640w.jpg');"><img id="1236875312" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Pasta_-_tips_from_chef_neil_e35db67b-7229-40c1-a2a5-f1886540cacf_1024x1024-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1703309019" class="caption-container u_1703309019" style="display:none"> <span class="caption-inner"> <h3 id="1828347691" class="caption-title u_1828347691">Spaghetti</h3> <a id="1451773876" class="caption-button dmWidget clearfix u_1451773876" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="3"> <div index="3" class="photoGalleryThumbs animated " data-index="3"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1873147903 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/WholeWheatFlour_Lead.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/WholeWheatFlour_Lead-640w.jpg');"><img id="1413364663" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/WholeWheatFlour_Lead-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1334086160" class="caption-container u_1334086160" style="display:none"> <span class="caption-inner"> <h3 id="1079305509" class="caption-title u_1079305509">Wheat Flour</h3> <a id="1617873674" class="caption-button dmWidget clearfix u_1617873674" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-4" data-index="4"> <div index="4" class="photoGalleryThumbs animated " data-index="4"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1021573363 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/cooking-oil-being-poured-into-a-bowl.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/cooking-oil-being-poured-into-a-bowl-640w.jpg');"><img id="1628227740" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/cooking-oil-being-poured-into-a-bowl-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1934092553" class="caption-container u_1934092553" style="display:none"> <span class="caption-inner"> <h3 id="1424878467" class="caption-title u_1424878467">Oil</h3> <a id="1052986845" class="caption-button dmWidget clearfix u_1052986845" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="5"> <div index="5" class="photoGalleryThumbs animated " data-index="5"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1630824821 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/Tomato+Paset.png" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Tomato+Paset-640w.png');"><img id="1049957421" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Tomato+Paset-1920w.png" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1698562067" class="caption-container u_1698562067" style="display:none"> <span class="caption-inner"> <h3 id="1576057191" class="caption-title u_1576057191">Tomato Paste</h3> <a id="1065670111" class="caption-button dmWidget clearfix u_1065670111" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="6"> <div index="6" class="photoGalleryThumbs animated " data-index="6"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1647808694 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/713429.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/713429-640w.jpg');"><img id="1990248984" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/713429-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1406592350" class="caption-container u_1406592350" style="display:none"> <span class="caption-inner"> <h3 id="1666319051" class="caption-title u_1666319051">Garlic</h3> <a id="1408064921" class="caption-button dmWidget clearfix u_1408064921" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="7"> <div index="7" class="photoGalleryThumbs animated " data-index="7"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1159548074 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/shutterstock_568076731.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/shutterstock_568076731-640w.jpg');"><img id="1553370570" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/shutterstock_568076731-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1501646832" class="caption-container u_1501646832" style="display:none"> <span class="caption-inner"> <h3 id="1207567415" class="caption-title u_1207567415">Milk</h3> <a id="1782094042" class="caption-button dmWidget clearfix u_1782094042" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> </div> </div> <h3 class="dmNewParagraph" data-element-type="paragraph" id="1543176110" style="text-align: center; " data-styletopreserve="{"background-image":""}" background-image="" :="">General Goods & Equipment</h3> <div class="u_1454595780 dmPhotoGallery newPhotoGallery dmPhotoGalleryResp photo-gallery-done text-layout-over captionAlignment-center_center photoGallery" galleryoptionsparams="{thumbnailsPerRow: 3, rowsToShow: 3, imageScaleMethod: true}" data-desktop-layout="classic-rounded" data-desktop-columns="4" data-element-type="dPhotoGalleryId" data-desktop-text-layout="over" id="1454595780" data-placeholder="false" data-rows-to-show="100" data-image-hover-effect="zoomout" data-tablet-text-layout="fixed" data-tablet-caption-alignment="center_center" data-mobile-text-layout="fixed" data-mobile-caption-alignment="center_center" data-image-animation="rotateInDownRight" data-link-gallery="true"> <div class="dmPhotoGalleryHolder clearfix gallery shadowEffectToChildren gallery4inArow" id="1362986591"></div> <div class="layout-container classic-rounded"> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-4" data-index="0"> <div index="0" class="photoGalleryThumbs animated " data-index="0"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1104646896 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/Computer.png" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Computer-640w.png');"><img id="1833380449" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Computer-1920w.png" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1725378871" class="caption-container u_1725378871" style="display:none"> <span class="caption-inner"> <h3 id="1337008242" class="caption-title u_1337008242">Computers & Equipment</h3> <a id="1646993961" class="caption-button dmWidget clearfix u_1646993961" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="1"> <div index="1" class="photoGalleryThumbs animated " data-index="1"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1490963075 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/TV+2.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/TV+2-640w.jpg');"><img id="1836006463" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/TV+2-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1544245441" class="caption-container u_1544245441" style="display:none"> <span class="caption-inner"> <h3 id="1663131678" class="caption-title u_1663131678">TV</h3> <a id="1109421419" class="caption-button dmWidget clearfix u_1109421419" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="2"> <div index="2" class="photoGalleryThumbs animated " data-index="2"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1171324783 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/616qyqpa0wL._SL1200_.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/616qyqpa0wL._SL1200_-640w.jpg');"><img id="1628605361" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/616qyqpa0wL._SL1200_-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1092856495" class="caption-container u_1092856495" style="display:none"> <span class="caption-inner"> <h3 id="1031863534" class="caption-title u_1031863534">Showcases</h3> <a id="1831232375" class="caption-button dmWidget clearfix u_1831232375" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="3"> <div index="3" class="photoGalleryThumbs animated " data-index="3"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1589011285 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/donnybrook-piped-edge-duck-feather-pillow_3.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/donnybrook-piped-edge-duck-feather-pillow_3-640w.jpg');"><img id="1506377782" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/donnybrook-piped-edge-duck-feather-pillow_3-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1857227504" class="caption-container u_1857227504" style="display:none"> <span class="caption-inner"> <h3 id="1467132193" class="caption-title u_1467132193">Pillows</h3> <a id="1173495934" class="caption-button dmWidget clearfix u_1173495934" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> <div class="photogallery-row " data-index=""> <div class="photogallery-column column-4" data-index="4"> <div index="4" class="photoGalleryThumbs animated " data-index="4"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1323000613 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/03-17-gstires-01.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/03-17-gstires-01-640w.jpg');"><img id="1112566620" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/03-17-gstires-01-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1372518800" class="caption-container u_1372518800" style="display:none"> <span class="caption-inner"> <h3 id="1303723548" class="caption-title u_1303723548">Tires</h3> <a id="1406367700" class="caption-button dmWidget clearfix u_1406367700" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="5"> <div index="5" class="photoGalleryThumbs animated " data-index="5"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1177812810 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/96165_40000_home-to-kitchen-marble-white-porcelain-dinnerware-set-of-16.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/96165_40000_home-to-kitchen-marble-white-porcelain-dinnerware-set-of-16-640w.jpg');"><img id="1147099158" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/96165_40000_home-to-kitchen-marble-white-porcelain-dinnerware-set-of-16-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1399600173" class="caption-container u_1399600173" style="display:none"> <span class="caption-inner"> <h3 id="1207215201" class="caption-title u_1207215201">Porcelain</h3> <a id="1910891194" class="caption-button dmWidget clearfix u_1910891194" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="6"> <div index="6" class="photoGalleryThumbs animated " data-index="6"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1870962850 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/white-light-in-the-dark-candles-litd-t1-2h-64_1000.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/white-light-in-the-dark-candles-litd-t1-2h-64_1000-640w.jpg');"><img id="1553544446" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/white-light-in-the-dark-candles-litd-t1-2h-64_1000-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1909506418" class="caption-container u_1909506418" style="display:none"> <span class="caption-inner"> <h3 id="1656567243" class="caption-title u_1656567243">Candles</h3> <a id="1814853877" class="caption-button dmWidget clearfix u_1814853877" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> <div class="photogallery-column column-4" data-index="7"> <div index="7" class="photoGalleryThumbs animated " data-index="7"> <div class="thumbnailInnerWrapper" style="opacity: 1;"> <div class="image-container revealed"> <a data-dm-multisize-attr="temp" data-dm-force-device="mobile" class="u_1660553732 has-link" href="/our-activities" data-image-url="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/construction-site.jpg" style="background-image: url('https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/construction-site-640w.jpg');"><img id="1190742651" data-src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/construction-site-1920w.jpg" alt="" onerror="handleImageLoadError(this)"/></a> </div> <div id="1507941765" class="caption-container u_1507941765" style="display:none"> <span class="caption-inner"> <h3 id="1501562234" class="caption-title u_1501562234">Construction Material</h3> <a id="1902065693" class="caption-button dmWidget clearfix u_1902065693" href="/our-activities" style=""> <span class="iconBg"> <span class="icon hasFontIcon "></span> </span> <span class="text">Button</span> </a> </span> </div> </div> </div> </div> </div> </div> </div> <a data-display-type="block" class="u_1426017860 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient" file="false" href="/our-activities" data-element-type="dButtonLinkId" id="1426017860"> <span class="iconBg" id="1549805790"> <span class="icon hasFontIcon icon-star" id="1215500954"></span> </span> <span class="text" id="1098448109">Learn More Details</span> </a> </div> </div> </div> <div class="dmRespRow u_Contact dmSectionParallaxNew fullBleedChanged fullBleedMode" style="text-align: center;" id="Contact" data-anchor="Contact"> <div class="dmRespColsWrapper" id="1538994033"> <div class="dmRespCol small-12 medium-12 large-12 u_1151831321 dmSectionNoParallax hasBackgroundOverlay" id="1151831321" data-gallery-bg="eyJzbGlkZXMiOlsiaHR0cHM6Ly9saXJwLmNkbi13ZWJzaXRlLmNvbS9hMGYwZDVlOC9kbXMzcmVwL211bHRpL29wdC9GdXJuaXR1cmUtMTkyMHcuanBnIiwiaHR0cHM6Ly9saXJwLmNkbi13ZWJzaXRlLmNvbS9hMGYwZDVlOC9kbXMzcmVwL211bHRpL29wdC9TcGFnaGV0dGktMTkyMHcuanBnIiwiaHR0cHM6Ly9saXJwLmNkbi13ZWJzaXRlLmNvbS9hMGYwZDVlOC9kbXMzcmVwL211bHRpL29wdC9TdXBlck1hcmtldC0xOTIwdy5qcGciXX0="> <div class="u_1519231666 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1519231666"><img src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/white_diagonale_2-2880w.png" id="1558185070" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/white_diagonale_2.png" onerror="handleImageLoadError(this)" height="178.0" width="1920.0"/></div> <h2 class="u_1635366304 dmNewParagraph" id="1635366304" data-element-type="paragraph"><div style="text-align: center;"><font style="color: rgb(255, 255, 255);">Contact Us</font></div></h2> <div class="u_1169114784 dmNewParagraph" id="1169114784" style="display: block; transition: none;"><div style="text-align: center; "><font color="#ffffff">For any info, contact us anytime </font></div></div> <div class="u_1003553778 dmform default native-inputs" data-element-type="dContactUsRespId" id="1003553778"> <h3 class="dmform-title dmwidget-title" id="1037277497" hide="true"></h3> <div class="dmform-wrapper" id="1455977370" captcha-lang="en"> <form method="post" class="dmRespDesignRow" locale="ENGLISH" id="1348453160"> <div class="dmforminput required small-12 dmRespDesignCol medium-6 large-6" id="1675822772"> <label for="1799969398" id="1230750042" data-dm-for="dmform-0">NAME</label> <input type="text" class="" name="dmform-0" id="1799969398"/><input type="hidden" name="label-dmform-0" value="NAME" id="1549171647" class=""/></div> <div class="dmforminput required small-12 dmRespDesignCol medium-6 large-6" id="1967254789"> <label for="1270658822" id="1900830850" data-dm-for="dmform-2">PHONE</label> <input type="tel" class="" name="dmform-2" id="1270658822"/><input type="hidden" name="label-dmform-2" value="PHONE" id="1852399029" class=""/></div> <div class="dmforminput required small-12 dmRespDesignCol medium-12 large-12" id="1808607112"> <label for="1679972421" id="1753902616" data-dm-for="dmform-1">EMAIL</label> <input type="email" class="" name="dmform-1" id="1679972421"/><input type="hidden" name="label-dmform-1" value="EMAIL" id="1095340644" class=""/></div> <div class="dmforminput large-12 medium-12 dmRespDesignCol required" id="1031173250"> <label for="1263955134" id="1516805302" data-dm-for="dmform-3">MESSAGE</label> <textarea name="dmform-3" id="1263955134"></textarea> <input type="hidden" name="label-dmform-3" value="MESSAGE" id="1321489487" class=""/></div> <span id="1062009271" class="dmWidgetClear"></span> <div class="dmformsubmit dmWidget R" id="1983080780"><input class="" name="submit" type="submit" value="Send" id="1305343151"/></div> <input name="dmformsendto" type="hidden" value="O0wrseIfFLsSlLR4GAldF9BJLjmEn1HvJRKA5yywWBxgboGsVM1zAm+yMwFnyh1B" id="1506091347" class="" data-dec="true"/><input class="dmActionInput" type="hidden" name="action" value="/_dm/s/rt/widgets/dmform.submit.jsp" id="1476735487"/><input name="dmformsubject" type="hidden" value="Form Message" id="1362829036"/><input name="dmformsubmitparams" type="hidden" value="8mpKnCSiNQXK/d9M7IDrSzRkXjNcoSR4SYCE9oqbu9MujghELJi+6h1LxBjO54z+hLVE68JGXTp2IO9YqGh2nP3LtL92mqn+8Zsh2FQbEx8ZE+Hkb8maAxhrLNNt5i5Yc12wD5CWX2djbAV7UbfklWH91Sf+SOJHFEAeDWfQpi/KuZt1CSyPIgiZION08AmknckUBWKGIWw=" data-dec="true"/><input type="hidden" name="page_uuid" value="460574881f8a4fd29c425a69d9d0e391"/></form> </div> <div class="dmform-success" style="display:none" id="1551768173"><p class="rteBlock"><span style="color:rgba(195, 195, 195, 1);">Thank you for contacting us.</span></p><p class="rteBlock"><span style="color:rgba(195, 195, 195, 1);">We will get back to you as soon as possible</span></p></div> <div class="dmform-error" style="display:none" id="1702351953"><p class="rteBlock"><span style="color:rgba(251, 245, 245, 1);">Oops, there was an error sending your message.</span></p><p class="rteBlock"><span style="color:rgba(251, 245, 245, 1);">Please try again later</span></p></div></div> <div class="u_1204631312 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1204631312"><img src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/white_diagonale_1-2880w.png" id="1876778639" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/white_diagonale_1.png" onerror="handleImageLoadError(this)" height="178.0" width="1920.0"/></div> </div> </div> </div> <div class="dmRespRow u_Visitus" style="text-align: center;" id="Visitus" data-anchor="Visit us"> <div class="dmRespColsWrapper" id="1605435067"> <div class="u_1726072919 dmRespCol small-12 medium-12 large-12" id="1726072919"> <div data-element-type="html" class="dmCustomHtml" id="1924069533"> <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d828.4118705782238!2d35.498977829201706!3d33.84720059879141!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x151f19e75ce3d281%3A0x86636f85a76cbbfe!2sAirport%20Business%20Center!5e0!3m2!1sen!2slb!4v1583751845088!5m2!1sen!2slb" width="600" height="450" frameborder="0" style="border:0;" allowfullscreen=""></iframe> </div> </div> </div> </div> </div> </div> </div> </div> <div class="sticky-widgets-container-global" id="1788459645"> <a data-display-type="block" class="u_1851278315 align-center dmButtonLink dmWidget dmWwr default dmOnlyButton dmDefaultGradient sticky-desktop-position-bottom-left sticky-mobile-position-bottom-left" file="false" href="/#Contact" id="1851278315" data-element-type="dButtonLinkId"> <span class="iconBg" id="1773181241"> <span class="icon hasFontIcon icon-star" id="1360796020"></span> </span> <span class="text" id="1966050679">Contact Us</span> </a> </div> <div class="dmFooterContainer"> <div id="fcontainer" class="u_fcontainer f_hcontainer dmFooter p_hfcontainer"> <div dm:templateorder="250" class="dmFooterResp generalFooter" id="1943048428"> <div class="dmRespRow fullBleedChanged fullBleedMode u_1878591233" style="text-align: center;" id="1878591233"> <div class="dmRespColsWrapper" id="1737216764"> <div class="dmRespCol small-12 medium-12 large-12 u_1034140623" id="1034140623"> <div class="u_1955218150 imageWidget align-center" data-element-type="image" data-widget-type="image" id="1955218150"><img src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/white_diagonale_2-2880w.png" id="1579679120" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/white_diagonale_2.png" onerror="handleImageLoadError(this)" height="178.0" width="1920.0"/></div> </div> </div> </div> <div class="dmRespRow u_1632155419" style="text-align: center;" id="1632155419"> <div class="dmRespColsWrapper" id="1253858808"> <div class="u_1063824722 dmRespCol small-12 medium-12 large-12" id="1063824722"> <div class="u_1901167991 imageWidget align-center" data-widget-type="image" id="1901167991" data-element-type="image"> <a href="/" id="1067941554"><img src="https://lirp.cdn-website.com/a0f0d5e8/dms3rep/multi/opt/Mac+Logo-960w.png" id="1669146944" class="" data-dm-image-path="https://irp-cdn.multiscreensite.com/a0f0d5e8/dms3rep/multi/Mac+Logo.png" onerror="handleImageLoadError(this)" height="43.03125" width="53.0"/></a> </div> <h6 class="u_1832565973 dmNewParagraph" data-element-type="paragraph" id="1832565973" style="transition: none;"><div><span style=""><font style="color: rgb(234, 234, 234);"></font></span></div><span style=""><font style="color: rgb(255, 255, 255);"><div style="">2931,Airport Blvd., Airport Business center, </div><div style="">Beirut 2814-4105 , Lebanon - 4B, </div><div style="">Tel : +961-70-70 29 31</div><div style="">[email protected]</div></font></span><span style=""><font style="color: rgb(234, 234, 234);"><div style=""><span style=""></span></div></font></span><div><span style="color: rgb(234, 234, 234);"></span></div></h6> <div class="dmDividerWrapper clearfix u_1554904058" data-element-type="dDividerId" data-layout="divider-style-1" data-widget-version="2" id="1554904058"><hr class="dmDivider" style="border-width:2px; border-top-style:solid; color:grey;" id="1879137259"/></div> <h6 class="u_1293552929 dmNewParagraph" data-element-type="paragraph" id="1293552929" style="transition: none; display: block;"><font style="color: rgb(234, 234, 234);"></font><span style=""><font style="color: rgb(255, 255, 255);"><div style="">© Multi Assets Corporation SAL - MAC (Offshore) SAL<br/></div></font></span><div><font style="color: rgb(234, 234, 234);"></font></div></h6></div> </div> </div> </div> <div id="1236746004" dmle_extension="powered_by" data-element-type="powered_by" icon="true" surround="false"></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Add full CSS and Javascript before the close tag of the body if needed --> <!-- Google Fonts Include --> <!-- loadCSS function fonts.jsp--> <link rel="preload" href="https://irp.cdn-website.com/fonts/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Assistant:ital,wght@0,200..800;1,200..800&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&subset=latin-ext&display=swap" as="style" fetchpriority="low" onload="loadCSS(this)" /> <!-- RT CSS Include d-css-runtime-desktop-one-package-new--> <link rel="preload" as="style" fetchpriority="low" onload="loadCSS(this)" href="https://static.cdn-website.com/mnlt/production/5452/_dm/s/rt/dist/css/d-css-runtime-desktop-one-package-new.min.css" /> <!-- End of RT CSS Include --> <link rel="preload" href="https://irp.cdn-website.com/WIDGET_CSS/3975d7313b05540069770c5ab58835d0.css" id="widgetCSS" as="style" fetchpriority="low" onload="loadCSS(this)" /> <!-- Support `img` size attributes --> <style>img[width][height] { height: auto; }</style> <!-- Support showing sticky element on page only --> <style> body[data-page-alias="home"] #dm [data-show-on-page-only="home"] { display: block !important; } </style> <!-- This is populated in Ajax navigation --> <style id="pageAdditionalWidgetsCss" type="text/css"> </style> <!-- Site CSS --> <link rel="preload" href="https://irp.cdn-website.com/a0f0d5e8/files/a0f0d5e8_1.min.css?v=25" id="siteGlobalCss" as="style" fetchpriority="low" onload="loadCSS(this)" /> <style id="customWidgetStyle" type="text/css"> </style> <style id="innerPagesStyle" type="text/css"> </style> <style id="additionalGlobalCss" type="text/css" > </style> <!-- Page CSS --> <link rel="preload" href="https://irp.cdn-website.com/a0f0d5e8/files/a0f0d5e8_home_1.min.css?v=25" id="homeCssLink" as="style" fetchpriority="low" onload="loadCSS(this)" /> <style id="pagestyle" type="text/css"> </style> <style id="pagestyleDevice" type="text/css"> </style> <!-- Flex Sections CSS --> <style id="globalFontSizeStyle" type="text/css"> .font-size-36, .size-36, .size-36 > font { font-size: 36px !important; } </style> <style id="pageFontSizeStyle" type="text/css"> </style> <!-- ========= JS Section ========= --> <script> var isWLR = false; window.customWidgetsFunctions = {}; window.customWidgetsStrings = {}; window.collections = {}; window.currentLanguage = "ENGLISH" window.isSitePreview = false; </script> <script type="text/javascript"> var d_version = "production_5452"; var build = "2025-05-08T10_48_33"; window['v' + 'ersion'] = d_version; function buildEditorParent() { window.isMultiScreen = true; window.editorParent = {}; window.previewParent = {}; window.assetsCacheQueryParam = "?version=2025-05-08T10_48_33"; try { var _p = window.parent; if (_p && _p.document && _p.$ && _p.$.dmfw) { window.editorParent = _p; } else if (_p.isSitePreview) { window.previewParent = _p; } } catch (e) { } } buildEditorParent(); </script> <!-- Load jQuery --> <script type="text/javascript" id='d-js-jquery' src="https://static.cdn-website.com/libs/jquery/jquery-3.7.0.min.js"></script> <!-- End Load jQuery --> <!-- Injecting site-wide before scripts --> <!-- End Injecting site-wide to the head --> <script> var _jquery = window.$; var jqueryAliases = ['$', 'jquery', 'jQuery']; jqueryAliases.forEach((alias) => { Object.defineProperty(window, alias, { get() { return _jquery; }, set() { console.warn("Trying to over-write the global jquery object!"); } }); }); window.jQuery.migrateMute = true; </script> <script> window.cookiesNotificationMarkupPreview = 'null'; </script> <!-- HEAD RT JS Include --> <script id='d-js-params'> window.INSITE = window.INSITE || {}; window.INSITE.device = "desktop"; window.rtCommonProps = {}; rtCommonProps["rt.ajax.ajaxScriptsFix"] =true; rtCommonProps["rt.pushnotifs.sslframe.encoded"] = 'aHR0cHM6Ly97c3ViZG9tYWlufS5wdXNoLW5vdGlmcy5jb20='; rtCommonProps["runtimecollector.url"] = 'https://rtc.multiscreensite.com'; rtCommonProps["performance.tabletPreview.removeScroll"] = 'false'; rtCommonProps["inlineEditGrid.snap"] =true; rtCommonProps["popup.insite.cookie.ttl"] = '0.5'; rtCommonProps["rt.pushnotifs.force.button"] =true; rtCommonProps["common.mapbox.token"] = 'pk.eyJ1IjoiZGFubnliMTIzIiwiYSI6ImNqMGljZ256dzAwMDAycXBkdWxwbDgzeXYifQ.Ck5P-0NKPVKAZ6SH98gxxw'; rtCommonProps["common.mapbox.js.override"] =false; rtCommonProps["common.here.appId"] = 'iYvDjIQ2quyEu0rg0hLo'; rtCommonProps["common.here.appCode"] = '1hcIxLJcbybmtBYTD9Z1UA'; rtCommonProps["isCoverage.test"] =false; rtCommonProps["ecommerce.ecwid.script"] = 'https://app.multiscreenstore.com/script.js'; rtCommonProps["feature.flag.mappy.kml"] =false; rtCommonProps["common.resources.dist.cdn"] =true; rtCommonProps["common.build.dist.folder"] = 'production/5452'; rtCommonProps["common.resources.cdn.host"] = 'https://static.cdn-website.com'; rtCommonProps["common.resources.folder"] = 'https://static.cdn-website.com/mnlt/production/5452'; rtCommonProps["feature.flag.runtime.backgroundSlider.preload.slowly"] =true; rtCommonProps["feature.flag.runtime.newAnimation.enabled"] =true; rtCommonProps["feature.flag.runtime.newAnimation.jitAnimation.enabled"] =true; rtCommonProps["feature.flag.sites.google.analytics.gtag"] =true; rtCommonProps["feature.flag.runOnReadyNewTask"] =true; rtCommonProps["isAutomation.test"] =false; rtCommonProps['common.mapsProvider'] = 'mapbox'; rtCommonProps['common.mapsProvider.version'] = '0.52.0'; rtCommonProps['common.geocodeProvider'] = 'mapbox'; rtCommonProps['common.map.defaults.radiusSize'] = '1500'; rtCommonProps['common.map.defaults.radiusBg'] = 'rgba(255, 255, 255, 0.4)'; rtCommonProps['common.map.defaults.strokeColor'] = 'rgba(255, 255, 255, 1)'; rtCommonProps['common.map.defaults.strokeSize'] = '2'; rtCommonProps['server.for.resources'] = ''; rtCommonProps['feature.flag.lazy.widgets'] = true; rtCommonProps['feature.flag.single.wow'] = false; rtCommonProps['feature.flag.disallowPopupsInEditor'] = true; rtCommonProps['feature.flag.mark.anchors'] = true; rtCommonProps['captcha.public.key'] = '6LffcBsUAAAAAMU-MYacU-6QHY4iDtUEYv_Ppwlz'; rtCommonProps['captcha.invisible.public.key'] = '6LeiWB8UAAAAAHYnVJM7_-7ap6bXCUNGiv7bBPME'; rtCommonProps["images.sizes.small"] =160; rtCommonProps["images.sizes.mobile"] =640; rtCommonProps["images.sizes.tablet"] =1280; rtCommonProps["images.sizes.desktop"] =1920; rtCommonProps["modules.resources.cdn"] =true; rtCommonProps["import.images.storage.imageCDN"] = 'https://lirp.cdn-website.com/'; rtCommonProps["feature.flag.runtime.inp.threshold"] =150; rtCommonProps["feature.flag.performance.logs"] =true; rtCommonProps["site.widget.form.captcha.type"] = 'g_recaptcha'; rtCommonProps["friendly.captcha.site.key"] = 'FCMGSQG9GVNMFS8K'; rtCommonProps["cookiebot.mapbox.consent.category"] = 'marketing'; // feature flags that's used out of runtime module (in legacy files) rtCommonProps["platform.monolith.personalization.dateTimeCondition.popupMsgAction.moveToclient.enabled"] =true; window.rtFlags = {}; rtFlags["unsuspendEcwidStoreOnRuntime.enabled"] =true; rtFlags["scripts.widgetCount.enabled"] =true; rtFlags["ecom.ecwidNewUrlStructure.enabled"] = false; rtFlags["ecom.ecwid.storefrontV3.enabled"] = false; rtFlags["ecom.ecwid.old.store.fix.facebook.share"] = true; rtFlags["feature.flag.photo.gallery.exact.size"] =true; rtFlags["geocode.search.localize"] =false; rtFlags["feature.flag.runtime.newAnimation.asyncInit.setTimeout.enabled"] =false; rtFlags["twitter.heightLimit.enabled"] = true; rtFlags["editor.classicHybrid.photogallery.fix"] =true; rtFlags["runtime.lottieOverflow"] =false; rtFlags["runtime.monitoring.sentry.ignoreErrors"] = ""; rtFlags["contact.form.browserValidation.enabled"] =true; rtFlags["streamline.monolith.personalization.supportMultipleConditions.enabled"] =false; rtFlags["runtime.cwv.report.cls.enabled"] =true; rtFlags["editor.link.on.container"] =true; rtFlags["flex.runtime.popup.with.show"] =true; rtFlags["contact.form.useActiveForm"] =true; rtFlags["runtime.ssr.productStore.internal.observer"] =true; rtFlags["runtime.ssr.productCustomizations"] =true; rtFlags["flex.megaMenu.a11y"] =false; </script> <script src="https://static.cdn-website.com/mnlt/production/5452/_dm/s/rt/dist/scripts/d-js-one-runtime-unified-desktop.min.js" id="d-js-core"></script> <!-- End of HEAD RT JS Include --> <script src="https://static.cdn-website.com/mnlt/production/5452/_dm/s/rt/dist/scripts/d-js-jquery-migrate.min.js" ></script> <script> $(window).bind("orientationchange", function (e) { $.layoutManager.initLayout(); }); $(document).resize(function () { }); </script> <script type="text/javascript" id="d_track_campaign"> (function() { if (!window.location.search) { return; } const cleanParams = window.location.search.substring(1); // Strip ? const queryParams = cleanParams.split('&'); const expires = 'expires=' + new Date().getTime() + 24 * 60 * 60 * 1000; const domain = 'domain=' + window.location.hostname; const path = "path=/"; queryParams.forEach((param) => { const [key, value = ''] = param.split('='); if (key.startsWith('utm_')) { const cookieName = "_dm_rt_" + key.substring(4); const cookie = cookieName + "=" + value; const joined = [cookie, expires, domain, path].join(";"); document.cookie = joined; } }); }()); </script> <script type="text/javascript" > var _dm_gaq = {}; var _gaq = _gaq || []; var _dm_insite = []; </script> <script type="text/javascript" id="d_track_sp"> ;(function(p,l,o,w,i,n,g){if(!p[i]){p.GlobalSnowplowNamespace=p.GlobalSnowplowNamespace||[]; p.GlobalSnowplowNamespace.push(i);p[i]=function(){(p[i].q=p[i].q||[]).push(arguments) };p[i].q=p[i].q||[];n=l.createElement(o);g=l.getElementsByTagName(o)[0];n.async=1; n.src=w;g.parentNode.insertBefore(n,g)}}(window,document,"script","//d32hwlnfiv2gyn.cloudfront.net/sp-2.0.0-dm-0.1.min.js","snowplow")); window.dmsnowplow = window.snowplow; dmsnowplow('newTracker', 'cf', 'd32hwlnfiv2gyn.cloudfront.net', { // Initialise a tracker appId: 'a0f0d5e8' }); // snowplow queries element styles so we wait until CSS calculations are done. requestAnimationFrame(() => { dmsnowplow('trackPageView'); _dm_insite.forEach((rule) => { // Specifically in popup only the client knows if it is shown or not so we don't always want to track its impression here // the tracking is in popup.js if (rule.actionName !== "popup") { dmsnowplow('trackStructEvent', 'insite', 'impression', rule.ruleType, rule.ruleId); } window?.waitForDeferred?.('dmAjax', () => { $.DM.events.trigger('event-ruleTriggered', {value: rule}); }); }); }); </script> <div style="display:none;" id="P6iryBW0Wu"></div> <!-- photoswipe markup --> <!-- Root element of PhotoSwipe. Must have class pswp. --> <div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> <!-- Background of PhotoSwipe. It's a separate element as animating opacity is faster than rgba(). --> <div class="pswp__bg"></div> <!-- Slides wrapper with overflow:hidden. --> <div class="pswp__scroll-wrap"> <!-- Container that holds slides. PhotoSwipe keeps only 3 of them in the DOM to save memory. Don't modify these 3 pswp__item elements, data is added later on. --> <div class="pswp__container"> <div class="pswp__item"></div> <div class="pswp__item"></div> <div class="pswp__item"></div> </div> <!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. --> <div class="pswp__ui pswp__ui--hidden"> <div class="pswp__top-bar"> <!-- Controls are self-explanatory. Order can be changed. --> <div class="pswp__counter"></div> <button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title="Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button> <!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR --> <!-- element will get class pswp__preloader--active when preloader is running --> <div class="pswp__preloader"> <div class="pswp__preloader__icn"> <div class="pswp__preloader__cut"> <div class="pswp__preloader__donut"></div> </div> </div> </div> </div> <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> <div class="pswp__share-tooltip"></div> </div> <button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"> </button> <button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"> </button> <div class="pswp__caption"> <div class="pswp__caption__center"></div> </div> </div> </div> </div> <div id="fb-root" data-locale="en"></div> <!-- Alias: a0f0d5e8 --> <div class="dmPopupMask" id="dmPopupMask"></div> <div id="dmPopup" class="dmPopup"> <div class="dmPopupCloseWrapper"> <div class="dmPopupClose dm-common-icons-close oneIcon" onclick="dmHidePopup(event);"></div> </div> <div class="dmPopupTitle"> <span></span> Share by:</div> <div class="data"></div> </div><script id="d_track_personalization"> window?.waitForDeferred?.('dmAjax', () => { // Collects client data and updates cookies used by smart sites window.expireDays = 365; window.visitLength = 30 * 60000; $.setCookie("dm_timezone_offset", (new Date()).getTimezoneOffset(), window.expireDays); setSmartSiteCookiesInternal("dm_this_page_view","dm_last_page_view","dm_total_visits","dm_last_visit"); }); </script> <script type="text/javascript"> Parameters.NavigationAreaParams.MoreButtonText = 'MORE'; Parameters.NavigationAreaParams.LessButtonText = 'LESS'; Parameters.HomeLinkText = 'Home'; </script> <!-- End Script tags --> <!-- Site Wide Html Markup --> <!-- Site Wide Html Markup --> </body> </html>