https://ventario.pl/

已提交的 URL:
https://ventario.pl/
報告完成時間:

連結 · 找到 0 個

JavaScript 變數 · 找到 40 個

名稱類型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
landingiInternalDetailsobject
landingiExportDetailsobject
lazySizesConfigobject
Blinkloaderobject
lazySizesobject
$function
jQueryfunction

主控台記錄訊息 · 找到 1 條

類型類別記錄
errornetwork
URL
https://ventario.pl/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 (Not Found)

HTML

<!DOCTYPE html><html lang="pl"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="HandheldFriendly" content="true"><title></title><style>
        .animated-lightbox {
          transition: visibility 0.5s, opacity 0.5s;
          visibility: hidden;
          opacity: 0;
        }
    
        .show-lightbox {
          opacity: 1;
          display: block !important;
          visibility: visible;
        }
    </style><link rel="preconnect" href="//styles.assets-landingi.com"><link rel="preconnect" href="//old.assets-landingi.com"><link rel="preconnect" href="//fonts.googleapis.com"><link rel="preconnect" href="//images.assets-landingi.com"><link rel="preconnect" href="//cdn.lugc.link">
<link rel="preload" fetchpriority="high" media="(min-width: 764px) and (max-width: 959px)" as="image" href="https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/959x/"><link rel="preload" fetchpriority="high" media="(min-width: 960px) and (max-width: 1024px)" as="image" href="https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/1024x/"><link rel="preload" fetchpriority="high" media="(min-width: 1025px) and (max-width: 1200px)" as="image" href="https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/1200x/"><link rel="preload" fetchpriority="high" media="(min-width: 1201px) and (max-width: 1500px)" as="image" href="https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/1500x/"><link rel="preload" fetchpriority="high" media="(min-width: 1501px) and (max-width: 1800px)" as="image" href="https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/1800x/"><link rel="preload" fetchpriority="high" media="(min-width: 1801px) and (max-width: 2999px)" as="image" href="https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/2999x/"><link rel="preload" fetchpriority="high" media="(min-width: 3000px)" as="image" href="https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/x607/"><link rel="preload" fetchpriority="high" media="(max-width: 763px)" as="image" href="https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/x572/"><script>
const verifyRecaptchaOnSubmit = function (e) {
  e.preventDefault();
  showButtonSpinner($(this));
  const recaptchaAction = 'landing_form_submit';
  let that = this;
  grecaptcha.execute('6LdKrHsjAAAAABdQ3WpMFH24cXPVkm1YA-KQWjW-', {action: recaptchaAction})
    .then(function (token) {
        $(that).parents('form').prepend('<input type="hidden" name="g-recaptchav3-token" value="' + token + '">');
        hideButtonSpinner($(that));
        $(that).unbind('click', verifyRecaptchaOnSubmit).click();
      }
    );
}

const showButtonSpinner = function (button) {
  let overlay = button.find('.widget-overlay');
  overlay.css('color', button.css('color'))
    .append('<i class="fa fa-spinner fa-spin"></i>');
  button.css('color', 'transparent');
}

const hideButtonSpinner = function (button) {
  let overlay = button.find('.widget-overlay');
  button.css('color', '');
  overlay.empty();
}

const injectRecaptchaScript = function () {
  if (window.isRecaptchaScriptInjected) {
    return;
  }
  
  window.isRecaptchaScriptInjected = true;
  let recaptchaScriptTag = document.createElement("script");
  recaptchaScriptTag.type = "text/javascript";
  recaptchaScriptTag.src = "https://www.google.com/recaptcha/api.js?render=6LdKrHsjAAAAABdQ3WpMFH24cXPVkm1YA-KQWjW-";
  $("head").append(recaptchaScriptTag);
}

function initRecaptchaOnFormSubmit(formSelector) {  
  let forms = $(formSelector).filter(function () {
    return $('.g-recaptcha', this).length === 0;
  });

  if (forms.length > 0) {
    injectRecaptchaScript();
    forms.each(function () {
      $('button[type="submit"]', this).click(verifyRecaptchaOnSubmit);
    });
  }
}

function initRecaptchaOnEvent(event) {
  event.currentTarget.removeEventListener(event.type, initRecaptchaOnEvent);
    
  if (window.isRecaptchaInitialized) {
    return;
  }

  window.isRecaptchaInitialized = true;
  initRecaptchaOnFormSubmit('.widget-section form, .widget-smartsection form');
}

function waitForJQuery(method) {
    if (window.jQuery) {
        method(); 
    } else {
        setTimeout(function() { waitForJQuery(method) }, 100);
    }
}

waitForJQuery(function () {
  $('head').on('lightboxes-ready', function () {
    if (window.isRecaptchaInitialized && !window.isRecaptchaInitializedForLightboxes) {
      window.isRecaptchaInitializedForLightboxes = true;
      initRecaptchaOnFormSubmit('.landingi-popup form');
    } /* no else here, selector ".widget-section form" will bind forms from lightboxes on event */
  });

  document.addEventListener('scroll', initRecaptchaOnEvent);
  document.addEventListener('mousemove', initRecaptchaOnEvent);
  document.addEventListener('touchstart', initRecaptchaOnEvent);
});
</script><style>
.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: -7px !important;
    bottom: 10px !important;
    transform: scale(0.8) !important;
    z-index: 1000000 !important;
}
.grecaptcha-badge:hover {
    width: 256px !important;
    left: -2px !important;
    transform: scale(1) !important;
}

@media (max-width:764px) {
    .grecaptcha-badge {
        width: 62px !important;
        height: 55px !important;
        bottom: 1px !important;
    }
}
</style><script fetchpriority="high">
   (function(src, cb) {
    var s = document.createElement('script'); s.setAttribute('src', src); s.setAttribute('fetchpriority', 'high');
    s.onload = cb; (document.head || document.body).appendChild(s);
  })('https://ucarecdn.com/libs/blinkloader/3.x/blinkloader.min.js', function() {
    window.Blinkloader.optimize({
      fadeIn:false,
      lazyload:true,
      smartCompression:true,
      responsive:true,
      retina:true,
      webp:true,
      pubkey:'ca6af56c901b93c58ffa',
      cdnBase:'https://cdn.lugc.link'
    });
    
    if (window.location !== window.parent.location) {
        window.onload = function() {
            setTimeout(function () {
                window.dispatchEvent(new CustomEvent('scroll'))
            }, 500);
        };
    }
  })
</script><script src="https://ucarecdn.com/libs/blinkloader/3.x/blinkloader.min.js" fetchpriority="high"></script>
<style>@media (min-width: 764px) and (max-width: 959px) { body #abJ1GkSogxtcNUJMXJPUPvetwqHJlcTI.widget-section { background-image: url("https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/959x/");}} @media (min-width: 960px) and (max-width: 1024px) { body #abJ1GkSogxtcNUJMXJPUPvetwqHJlcTI.widget-section { background-image: url("https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/1024x/");}} @media (min-width: 1025px) and (max-width: 1200px) { body #abJ1GkSogxtcNUJMXJPUPvetwqHJlcTI.widget-section { background-image: url("https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/1200x/");}} @media (min-width: 1201px) and (max-width: 1500px) { body #abJ1GkSogxtcNUJMXJPUPvetwqHJlcTI.widget-section { background-image: url("https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/1500x/");}} @media (min-width: 1501px) and (max-width: 1800px) { body #abJ1GkSogxtcNUJMXJPUPvetwqHJlcTI.widget-section { background-image: url("https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/1800x/");}} @media (min-width: 1801px) and (max-width: 2999px) { body #abJ1GkSogxtcNUJMXJPUPvetwqHJlcTI.widget-section { background-image: url("https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/2999x/");}} @media (min-width: 3000px) { body #abJ1GkSogxtcNUJMXJPUPvetwqHJlcTI.widget-section { background-image: url("https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/x607/");}}</style><style>@media (max-width: 763px) { body #abJ1GkSogxtcNUJMXJPUPvetwqHJlcTI.widget-section { background-image: url("https://cdn.lugc.link/a4646196-eab2-4196-8045-a58fd4497887/-/format/auto/-/stretch/off/-/resize/x572/");}}</style><style>@media (min-width: 764px) and (max-width: 959px) { #An0PuOwTOCeoDixv33BbwgR58P1UltH5.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/4619c48b-11e0-4464-8dc9-49ff5ef1cd85/-/format/auto/-/stretch/off/-/resize/959x/");}} @media (min-width: 960px) and (max-width: 1024px) { #An0PuOwTOCeoDixv33BbwgR58P1UltH5.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/4619c48b-11e0-4464-8dc9-49ff5ef1cd85/-/format/auto/-/stretch/off/-/resize/1024x/");}} @media (min-width: 1025px) and (max-width: 1200px) { #An0PuOwTOCeoDixv33BbwgR58P1UltH5.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/4619c48b-11e0-4464-8dc9-49ff5ef1cd85/-/format/auto/-/stretch/off/-/resize/1200x/");}} @media (min-width: 1201px) and (max-width: 1500px) { #An0PuOwTOCeoDixv33BbwgR58P1UltH5.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/4619c48b-11e0-4464-8dc9-49ff5ef1cd85/-/format/auto/-/stretch/off/-/resize/1500x/");}} @media (min-width: 1501px) and (max-width: 1800px) { #An0PuOwTOCeoDixv33BbwgR58P1UltH5.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/4619c48b-11e0-4464-8dc9-49ff5ef1cd85/-/format/auto/-/stretch/off/-/resize/1800x/");}} @media (min-width: 1801px) and (max-width: 2999px) { #An0PuOwTOCeoDixv33BbwgR58P1UltH5.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/4619c48b-11e0-4464-8dc9-49ff5ef1cd85/-/format/auto/-/stretch/off/-/resize/2999x/");}} @media (min-width: 3000px) { #An0PuOwTOCeoDixv33BbwgR58P1UltH5.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/4619c48b-11e0-4464-8dc9-49ff5ef1cd85/-/format/auto/-/stretch/off/-/resize/x431/");}}</style><style>@media (max-width: 763px) { #An0PuOwTOCeoDixv33BbwgR58P1UltH5.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/4619c48b-11e0-4464-8dc9-49ff5ef1cd85/-/format/auto/-/stretch/off/-/resize/763x/");}}</style><style>@media (min-width: 764px) and (max-width: 959px) and ((min-aspect-ratio: 2048/1024) or (aspect-ratio: 2048/1024)) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/959x/");}} @media (min-width: 960px) and (max-width: 1024px) and ((min-aspect-ratio: 2048/1024) or (aspect-ratio: 2048/1024)) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/1024x/");}} @media (min-width: 1025px) and (max-width: 1200px) and ((min-aspect-ratio: 2048/1024) or (aspect-ratio: 2048/1024)) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/1200x/");}} @media (min-width: 1201px) and (max-width: 1500px) and ((min-aspect-ratio: 2048/1024) or (aspect-ratio: 2048/1024)) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/1500x/");}} @media (min-width: 1501px) and (max-width: 1800px) and ((min-aspect-ratio: 2048/1024) or (aspect-ratio: 2048/1024)) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/1800x/");}} @media (min-width: 1801px) and (max-width: 2999px) and ((min-aspect-ratio: 2048/1024) or (aspect-ratio: 2048/1024)) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/2999x/");}} @media (min-width: 3000px) and ((min-aspect-ratio: 2048/1024) or (aspect-ratio: 2048/1024)) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/format/auto/");}} @media (min-width: 764px) and (max-height: 800px) and (max-aspect-ratio: 2048/1024) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/x800/");}} @media (min-width: 764px) and (min-height: 801px) and (max-height: 962px) and (max-aspect-ratio: 2048/1024) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/x962/");}} @media (min-width: 764px) and (min-height: 963px) and (max-height: 1080px) and (max-aspect-ratio: 2048/1024) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/x1080/");}} @media (min-width: 764px) and (min-height: 1081px) and (max-height: 1280px) and (max-aspect-ratio: 2048/1024) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/x1280/");}} @media (min-width: 764px) and (min-height: 1281px) and (max-height: 1440px) and (max-aspect-ratio: 2048/1024) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/x1440/");}} @media (min-width: 764px) and (min-height: 1441px) and (max-height: 1920px) and (max-aspect-ratio: 2048/1024) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/x1920/");}} @media (min-width: 764px) and (min-height: 1921px) and (max-height: 2159px) and (max-aspect-ratio: 2048/1024) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/x2159/");}} @media (min-width: 764px) and (min-height: 2160px) and (max-aspect-ratio: 2048/1024) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/format/auto/");}}</style><style>@media (max-width: 763px) { #t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy.widget-section:not(.lazyload) { background-image: url("https://cdn.lugc.link/e4828588-9cfa-40dd-acb7-0748d4afd7f0/-/enhance/100/-/grayscale/-/stretch/off/-/format/auto/-/resize/x829/");}}</style>
<link href="https://landingi-fonts.s3.amazonaws.com/04aXaHq4/Roboto.css" type="text/css" rel="stylesheet" as="style" fetchpriority="high" onload="this.onload=null;this.rel='stylesheet'"><link href="//fonts.googleapis.com/css?family=Poppins:300,400,700&amp;subset=latin,latin-ext,cyrillic,cyrillic-ext&amp;display=swap" type="text/css" rel="stylesheet" as="style" fetchpriority="high" onload="this.onload=null;this.rel='stylesheet'"><link href="https://styles.assets-landingi.com/assets/css/170724-landend-base.css" type="text/css" rel="stylesheet" as="style" onload="this.onload=null;this.rel='stylesheet'"><link href="https://styles.assets-landingi.com/EGlmTt2g/base.css" type="text/css" rel="stylesheet"><script src="https://scripts.assets-landingi.com/lightboxes/lightbox-handler.min.js?v=20200804"></script><script>
    var landingiInternalDetails = {
        'landing_id': '1665148',
        'landing_hash': 'e2b5f07318e15a530883',
        'landing_variant_hash': '',
        
        'landing_lang': 'pl',
        'account_uuid': '5ede35de-5e7b-11e7-8b4a-02cbf204825c',
        'apikey': '4af4a39c-6dbc-4be6-91c3-93a716d939ee'
   }
</script><script>
    var landingiExportDetails = {
        exportUrl: 'https://www.landingiexport.com',
        hash: 'e2b5f07318e15a530883',
        tid: 'e2b5f07318e15a530883'
   }
</script><script>
(async function (w, d) {
    try {
        const response = await w.fetch(
            'https://' + 'tagmanager.landingi.io' + '/account/' + '5ede35de-5e7b-11e7-8b4a-02cbf204825c'
        );
        const gtm = await response.json();

        if (gtm) {
            const script = d.head.getElementsByTagName('script')[0];
            const tmpl = d.createElement('template');
            tmpl.innerHTML = gtm;
            tmpl.content.childNodes.forEach((node) => {
                let elem = node;

                if ('SCRIPT' === node.nodeName) {
                    elem = d.createElement('script');

                    if (node.textContent) {
                        elem.textContent = node.textContent;
                    }

                    if (node.src) {
                        elem.src = node.src;
                        elem.type = node.type;
                    }

                    script.parentNode.insertBefore(elem, script);
                }

                if ('STYLE' === node.nodeName) {
                    elem = d.createElement('style');

                    if (node.textContent) {
                        elem.textContent = node.textContent;
                    }

                    script.parentNode.insertBefore(elem, script);
                }
            })
        }
    } catch (err) {
        console.log(err);
    }
})(window, document);
</script><script>
window.lazySizesConfig = window.lazySizesConfig || {};
window.lazySizesConfig.init = false;
</script>
<script type="text/javascript" src="//assetslp.link/assets/js/landend/lazysizes.min.js?v=08112024123500"></script>
<script>
lazySizes.init();
</script><script defer="" fetchpriority="low" src="https://popups.landingi.com/api/v3/landing/install-code?apikey=4af4a39c-6dbc-4be6-91c3-93a716d939ee&amp;landing=e2b5f07318e15a530883"></script><script defer="" fetchpriority="low" src="https://scripts.assets-landingi.com/lightboxes/lightbox-render.js?v=1733305174"></script><script>
window.addEventListener('load', function () {
    LightboxRender.init({
        useAaf: true
    })
});
</script><script>
    if (typeof Lightbox !== 'undefined') {
        Lightbox.init({
            exportUrl: 'https://www.landingiexport.com',
            hash: 'e2b5f07318e15a530883',
            tid: 'e2b5f07318e15a530883',
            redirectUrl: 'https://ventario.pl/'
        });
        Lightbox.register();
    }
</script></head><body id="Zcc579e32ab7c2c234c287cbcbc03f3a7639f9f1">
<div id="abJ1GkSogxtcNUJMXJPUPvetwqHJlcTI" class="widget widget-section ">
    <div class="row">
        
        <div class="container ">
            
            <a href="#yzx0QGnxbPOqqgDdBQSoZK0JygV6UPg9" id="GE4ExE2JfkGcUieIvfDiWWn9IOfkTGuX" aria-label="Dowiedz się więcej" class="widget widget-button" version="3" subtype="anchor" rel="noopener noreferrer">
    <div class="widget-overlay"></div>
    <div id="k9DWgtG2yANoeOTtEo6wzErRgwZBu3Jg" class="widget widget-text">Dowiedz się więcej</div>
</a><a href="#t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy" id="MeKzt6muIfCvoGgTzPtgenME7TsthSBv" aria-label="Skontaktuj się z nami" class="widget widget-button" version="3" subtype="anchor" rel="noopener noreferrer">
    <div class="widget-overlay"></div>
    <div id="ZrEa3ae0G5PhUMgeM5Ck69lUvJu8QvOa" class="widget widget-text">Skontaktuj się z nami</div>
</a><div id="JD2KCyiJm52UczaLCn6PzT2Tfig8Q1AZ" class="widget widget-text"><p>Operator logistyczny, hurtownia farmaceutyczna</p></div><div id="TLa7CX9NlGnMysZzczc3wFMB6XPnegRC" class="widget widget-text"><p>Powierz nam obsługę logistyczną swojego biznesu</p></div><div id="a1g9KfSqzQkXf6eRodIAFH0IpfTJTVdH" class="widget widget-box"></div><img src="https://icons.assets-landingi.com/icon_c60df1e052bad22a597b5835cd0c20cc3085fb1a.svg" id="vS8N0HX3X6M97XCBdty52KERulzWdanV" class="widget widget-svgicon" alt="Icon"><div id="ETNtRH1BAI9ZDmPHTrQ2sMzT2ippWIZu" class="widget widget-box"></div>
        </div>
    </div>
</div>
<div id="eE0pAVLTyT9XyfVuZPyUXpdVgsLwrR4C" class="widget widget-section ">
    <div class="row">
        
        <div class="container ">
            
            
        </div>
    </div>
</div>
<div id="yzx0QGnxbPOqqgDdBQSoZK0JygV6UPg9" class="widget widget-section ">
    <div class="row">
        
        <div class="container ">
            
            <div id="GbTc5qnNw6GyLttWL0S5fFpCEcPKS8OV" class="widget widget-text"><p>Kim jesteśmy?</p></div><div id="hsTEEZAh2ZILnzFaog0PiFrUXlAOkcXh" class="widget widget-text"><p>Jesteśmy operatorem logistycznym, posiadającym dwie hurtownie farmaceutyczne.</p><p><br></p><p><span style="">Dysponujemy powierzchnią wystarczającą do przechowywania 3000 palet w temperaturze kontrolowanej, wynoszącej 15-25°C. </span><br></p></div><div id="nRfCpidid7h8CCrByNNOpDieKrz5G47e" class="widget widget-box"></div><div id="XTPeFIxgxWqqHZwkAgHVigLkxaKHdyeb" class="widget widget-box"></div><div id="AbHEKNt0DRD0UbFSUePJBtK1P54SeNSI" class="widget widget-text"><p>Lat doświadczenia w branży</p></div><div id="STrDCsoCQpQvsQE3iv7n2O3f74QQIpLi" class="widget widget-text"><p>Miejsc paletowych</p><p></p></div><div id="RtGv9iJNLETSKVyMTJf2pQ4QI4mV4EUD" class="widget widget-text"><p>Pracowników magazynowych</p></div><div id="l2UwaPvd1u6mzaP4tsFBu8B4gMG4kUyP" class="widget widget-box"></div><div id="t07bzySPwM4PNh5zlTbDeovkRz1xm85u" class="widget widget-box"></div><div id="duBGTZBHzLzKODA1wgb3dEOriZ78B4or" class="widget widget-box"></div><div id="mUdHk5pEXaxzNn7QClhDoD8K16zq5I1p" class="widget widget-text"><p>Przesyłek miesięcznie</p><p></p></div><img src="https://icons.assets-landingi.com/icon_35d68649a5b1a7b9ea08a9cea3cdc78d87c8435f.svg" id="y5P0FO0NZk9yp3e6gJMxT50nRnDRtQdB" class="widget widget-svgicon" alt="Icon"><div id="muMF1CTzlAoJRT2XTEI0zcn97BI7GPmy" class="widget widget-text"><p>13</p></div><div id="Cz4Ib6RtTcL96XXkw7RGPUJJUX6q8H5G" class="widget widget-text"><p>50</p></div><div id="gz3c4hG9z3MR8ne433XLKSbOF6htPrJh" class="widget widget-text"><p>3k</p></div><div id="SAd3c4gRpl5EGEb6VgWC3VkxzmLhhCKp" class="widget widget-text"><p>10k</p></div>
        </div>
    </div>
</div>
<div id="pabJuJ5re5AkxxtBczzhy6MGbI40XQP9" class="widget widget-section ">
    <div class="row">
        
        <div class="container ">
            
            
        </div>
    </div>
</div>
<div id="ytoD6diCkyauAGs2AoNnBNt8hhN3PsaQ" class="widget widget-section ">
    <div class="row">
        
        <div class="container ">
            
            
        </div>
    </div>
</div>
<div id="M81f4W2xEetBtUuc8ETIIaKVCSBH1yMT" class="widget widget-section ">
    <div class="row">
        
        <div class="container ">
            
            <div id="P7mfrWT4PGOHoHtPhUgigktC8Ile1SpH" class="widget widget-text"><p>Dlaczego warto z nami współpracować?</p></div><div id="CBprPnWxTer6A76tTOTL7Cltz9fKoyaC" class="widget widget-box"></div><div id="Vt5pMQ7GJ9CDe4ueeeCcgO1C4lWLdner" class="widget widget-text"><p><span style="letter-spacing: 0px;">Inteligentny system raportowania sprzedaży</span><br></p><p></p><p></p></div><div id="Qa49rg2o55LgefNAuUIQfJOR5SdxHglE" class="widget widget-box"></div><div id="TATOoKp2c9kUN60h7oDvgLIP4Xc6aiWQ" class="widget widget-text"><p><span style="letter-spacing: 0px;">Wieloletnie doświadczenie w branży logistycznej i załoga posiadająca certyfikaty potwierdzające ukończenie specjalistycznych szkoleń</span><br></p><p></p><p></p></div><div id="w1h4ZfK8434XO8DiWnFsqmK1Te5wAmMU" class="widget widget-box"></div><div id="VIAOINp7KoSEMsx9DkwrPQN6KOerlZ3B" class="widget widget-text"><p><span style="letter-spacing: 0px;">Wynegocjowane najniższe stawki u największych firm kurierskich oraz możliwość wykorzystania naszej floty transportowej</span><br></p><p></p><p></p></div><div id="imS9MJgzHRHqpToqga6DdAwvibLTZI3z" class="widget widget-box"></div><div id="TQtAxvbrbnGxtzoqyK5393wIUDM1JvSF" class="widget widget-text"><p><span style="letter-spacing: 0px;">Magazyny o dużym potencjale, spełniające wymogi Dobrych Praktyk Dystrybucyjnych</span><br></p><p></p><p></p></div><img src="https://icons.assets-landingi.com/icon_8d1a43467576ec63c53b4d76f481fe02acda1660.svg" id="RUtDHEcfieuuNbghipAtziaf4GWEL8QM" class="widget widget-svgicon" alt="Icon"><img src="https://icons.assets-landingi.com/icon_ee2a5142aebd5ec49d7c41e6b42d3072f58b5629.svg" id="grtq4An5yJJaxpi7B1KsOP7w4LCa5y0S" class="widget widget-svgicon" alt="Icon"><img id="LxR5F3Z0JM8TJfVrZBvJzT25bgge9odK" data-original="https://images.assets-landingi.com/uc/2f649cca-d1f9-49e2-b362-77349d6dab19/magazynyzobslugalogistyczna.crop_910x599_119,0.preview.jpeg" class="widget widget-image lazyload" data-srcset="https://cdn.lugc.link/2f649cca-d1f9-49e2-b362-77349d6dab19/-/crop/910x599/119,0/-/preview/320x210/-/format/auto/ 320w,  https://cdn.lugc.link/2f649cca-d1f9-49e2-b362-77349d6dab19/-/crop/910x599/119,0/-/preview/689x453/-/format/auto/ 689w" data-sizes="(max-width: 763px) 320px,   689px" data-src="https://cdn.lugc.link/2f649cca-d1f9-49e2-b362-77349d6dab19/-/crop/910x599/119,0/-/preview/320x210/-/format/auto/" alt="Image" width="689" height="453" decoding="async"><img src="https://icons.assets-landingi.com/icon_63dadb355f9350d407ff7d8d9a25561a4d5eb3f7.svg" id="Kc6d66ZNv5Ew7tNAJZuEvTruXCd8tUvy" class="widget widget-svgicon" alt="Icon"><img src="https://icons.assets-landingi.com/icon_f981bb6962c5fd3111d35917c88884272f873b43.svg" id="iBNkcdgEfgUh8tRxZfwmTlCeFePeNrhr" class="widget widget-svgicon" alt="Icon">
        </div>
    </div>
</div>
<div id="R6JqGP7BCOoUEmPfTG4foihhVbvhrcXs" class="widget widget-section ">
    <div class="row">
        
        <div class="container ">
            
            
        </div>
    </div>
</div>
<div id="ECSL1kccJIJf7kX5uJ3ZESR7lXEcIh6I" class="widget widget-section ">
    <div class="row">
        
        <div class="container ">
            
            
        </div>
    </div>
</div>
<div id="ctp3cQzVFE5VgxPKZCuIT4kvrBMxnJJz" class="widget widget-section ">
    <div class="row">
        
        <div class="container ">
            
            <div id="USSK0oHlD8zBU0cxiG5z4R42c5u83tTf" class="widget widget-text"><p>Nasze możliwości</p></div><div id="U884tvcmMnVhh76ybTLqTPn4FMCeVEeC" class="widget widget-text"><p><b>Sprzedaż towaru</b></p><p><b><br></b></p><p>sprzedaż towaru w cenach ustalonych przez producenta</p><p></p><p></p></div><div id="pxn6Z2hEwxWTT895WqCrZJszggWXiyLw" class="widget widget-text"><p><b>Składowanie towaru</b></p><p><br></p><p>nawet do 3000 palet w temperaturze 15-25°C</p><p></p><p></p></div><div id="ssXpanTlNZCDI7wMEWEvsNiEl1s8k4cQ" class="widget widget-text"><p><b>Przekazywanie informacji</b></p><p><b><br></b></p><p>w zakresie raportowania sprzedaży poszczególnych produktów</p><p></p><p></p></div><div id="MvoQly8SFKbn4XVa1hHTCyyTipIgkL1r" class="widget widget-text"><p><b>Dostawa towaru</b></p><p><b><br></b></p><p>do 24h od otrzymania zamówienia</p><p></p><p></p></div><img src="https://icons.assets-landingi.com/icon_c6372d4cd5165700c1e31657cf910805e4cc6ed5.svg" id="RE37xct2oyWxtJ1hy01cI5qBGQPHcOvT" class="widget widget-svgicon" alt="Icon"><img src="https://icons.assets-landingi.com/icon_a7119280ee5e1b41fda4768607ab373a0d4213ba.svg" id="Zi3Qqu9pGJV74fqIhPNDzAmSgJHOUTe9" class="widget widget-svgicon" alt="Icon"><img src="https://icons.assets-landingi.com/icon_5644beaf69081a19c1e7c92e58f17d1543e0d6e5.svg" id="TBCJvvCXpms7QsPXcTER2N738g4zKmk9" class="widget widget-svgicon" alt="Icon"><img src="https://icons.assets-landingi.com/icon_8048440a4b5cecbf3625f1f6b32729a4b777ed01.svg" id="ZXFM59pPEsTboNIwSRw8OwVKTHsIOusC" class="widget widget-svgicon" alt="Icon">
        </div>
    </div>
</div>
<div id="An0PuOwTOCeoDixv33BbwgR58P1UltH5" class="widget widget-section lazyload">
    <div class="row">
        
        <div class="container lazyload">
            
            
        </div>
    </div>
</div>
<div id="t9yD0DSkmKaZUorKEL6iM30H3Vg2IdJy" class="widget widget-section lazyload">
    <div class="row">
        
        <div class="container lazyload">
            
            <form id="WKwiQy2xJbkLmw7oHLyZCKmiAfg8lQ3X" class="widget widget-form" data-orientation="vertical" data-version="2.1" action="https://www.landingiexport.com/00b47669-8495-4bb7-85ed-86a4ee01e709/submit/e2b5f07318e15a530883?export_hash=e2b5f07318e15a530883&amp;tid=e2b5f07318e15a530883" enctype="multipart/form-data" method="post" novalidate="" data-hash="e2b5f07318e15a530883"><div id="mGrT5SJck42sr4NcUTH5nTs4CHzdJzkT" class="widget widget-container clearfix"><label id="TfMmX75b13mLRamHyWmMUTTZmhbViyhb" class="widget widget-text widget-regular-label widget-label">Imię i Nazwisko</label><input class="widget widget-input-text" id="aJlfcoz0kJzah9H1JkrGTl5LC9T2ofxH" type="text" subtype="name" parentid="WKwiQy2xJbkLmw7oHLyZCKmiAfg8lQ3X" name="name" value=""></div><div id="CyIMhkAc4owHrWw8DkkepTUU3eXdeirU" class="widget widget-container clearfix"><label id="UDIr7egXBHmpRWlWIiiT521vvFp2af56" class="widget widget-text widget-regular-label widget-label">Firma</label><input class="widget widget-input-text" id="Xqzx09h0v2iLZ9obZO2ROsETT54d6VMI" type="text" subtype="company" parentid="WKwiQy2xJbkLmw7oHLyZCKmiAfg8lQ3X" name="company" value=""></div><div id="zb4AmFaEmqE7fDSZFTTLxSBd4ibKxPa4" class="widget widget-container clearfix"><label id="lsGMUCV569mKsZbouemi61c0gOifG6lT" class="widget widget-text widget-regular-label widget-label">Telefon</label><input class="widget widget-input-text" id="zGns6ogKhRy8AP9UTpS1ihItAFruKgWf" type="tel" subtype="phone" parentid="WKwiQy2xJbkLmw7oHLyZCKmiAfg8lQ3X" name="phone" value=""></div><div id="LPaaKlOpvJBlHU53s9zGLXgxXFTVr0PJ" class="widget widget-container clearfix"><label id="bDCON93l9Pd3N331BCTxJ31d8dJwiHxe" class="widget widget-text widget-regular-label widget-label">Email</label><input class="widget widget-input-text" id="uCr1sOAvD6Afl54Nxl8XQH5Ieku14mUq" type="email" subtype="email" parentid="WKwiQy2xJbkLmw7oHLyZCKmiAfg8lQ3X" name="email" value=""></div><div id="Gcrk53ZeTOFhSEztk4qlUfdrZeLAD5pH" class="widget widget-container clearfix">
    <input class="widget widget-input-checkbox" type="checkbox" id="xPzXiEglPOCDrbelSHwnZDfNPUr8mvCL" parentid="WKwiQy2xJbkLmw7oHLyZCKmiAfg8lQ3X" name="checkbox"><label id="bgflmJdJ0GDbakf49fT0lOzqq1rMFxQ8" class="widget widget-text widget-checkbox-label widget-label" for="xPzXiEglPOCDrbelSHwnZDfNPUr8mvCL" data-toggle="tooltip" title="&quot;Wyrażam zgodę na przetwarzanie moich danych osobowych w celu udzielenia odpowiedzi, w tym przedłożenia oferty jeśli o nią pytam. Moje dane osobowe będą przetwarzane do czasu cofnięcia zgody lub przez okres niezbędny do ustalenia, dochodzenia lub obrony roszczeń. Mam prawo dostępu do danych, sprostowania, usunięcia lub ograniczenia przetwarzania, prawo sprzeciwu, prawo wniesienia skargi do organu nadzorczego i prawo do przeniesienia danych.&quot;">Wyrażam zgodę na przetwarzanie moich danych [...]</label>
</div><div id="ktS9T5V3reEupHNun2Iatnn0XN94ceSE" class="widget widget-container input-button-container clearfix"><button class="widget widget-input-button" type="submit" id="OkxqGbDtsePPNZudZLzK2UFXcyJ05VwN" parentid="WKwiQy2xJbkLmw7oHLyZCKmiAfg8lQ3X"><div class="widget-overlay"></div>Proszę o ofertę</button></div><input type="hidden" name="_name_" value=""><input type="hidden" name="_lead_uuid" value=""><input type="hidden" name="_uid" value="WKwiQy2xJbkLmw7oHLyZCKmiAfg8lQ3X"><input type="hidden" name="_redirect" value="https://ventario.pl/"></form><div id="p9uqxOgRF3EedrT6O7cF94TIkJty6ICy" class="widget widget-text"><p><span style="color: rgb(255, 255, 255);">Wypełnij formularz, aby poznać szczegóły współpracy</span></p></div><i id="QUmt7fa0R9kKiSS7ZwzGTXiZeSMgSlyt" class="fa fa-phone widget widget-icon"></i><div id="QX5gXJ3VKJUICW9I6EysbIE75cWyDVIZ" class="widget widget-box"></div><div id="cTU3lNuCXIGiKNX02EPRl3MkZZ8H0xWU" class="widget widget-box"></div><img src="https://icons.assets-landingi.com/icon_c60df1e052bad22a597b5835cd0c20cc3085fb1a.svg" id="NaEAENNRWTrLCIPBuXXFenUU4Zt2E74W" class="widget widget-svgicon" alt="Icon"><div id="qE1re8Uhn9GpZymxbebNxekxEkeqLfL3" class="widget widget-box"></div>
        </div>
    </div>
</div><script type="text/javascript" src="//assetslp.link/assets/js/landend/jquery-3-6-0.min.js" fetchpriority="high"></script><script async="" type="text/javascript" src="https://old.assets-landingi.com/bootstrap/js/landend.bootstrap.min.js"></script><script defer="" type="text/javascript" src="https://old.assets-landingi.com/assets/js/landend/anchors/030724-anchors.js"></script><script defer="" fetchpriority="low" type="text/javascript" src="https://scripts.assets-landingi.com/landend/tooltips-combined.js"></script>        <script src="https://landingistats.com/assets/js/landend/frodo.js"></script>
<script>
const lpStatsModule = (function () {    
    const url = "https://stats.landingi.com/visit/1665148";
    const data = {"lid":1665148,"luuid":"c62b8f2b-7052-42a1-9998-cb4c71d2d148","lhash":"e2b5f07318e15a530883","fid":1665148,"auuid":"5ede35de-5e7b-11e7-8b4a-02cbf204825c","acid":64740,"agid":null,"tid":null,"hasAccessToEventTracker":false,"hasAccessToEventTrackerDev":false,"hasAccessToEventTrackerData":false,"hasAccessToVisitWithoutCookie":false,"hasAccessToVisitWithLocalStorage":false,"hasAccessToExternalEvents":false,"hasAccessToEventTrackerAsyncEndpoints":false};
    const cookieName = "ls_sid_1665148";

    if (data.hasAccessToEventTrackerDev) { 
        console.log('Running runScript in dev mode')
        frodo.runScriptDev(cookieName, url, data)
    } else {
        frodo.runScript(cookieName, url, data)
    }

    return {
        getData: function() { return data; },
        cookieName: function() { return cookieName; },
        endpoint: function() { return url; },
        path: function() { return path; }
    };
})();
</script><script defer="" type="text/javascript" src="https://scripts.assets-landingi.com/landend/160721/files.js"></script><script defer="" fetchpriority="low" type="text/javascript" src="https://old.assets-landingi.com/assets/js/vendor/jquery-form/jquery.form.min.js"></script> <script type="text/javascript" src="https://scripts.assets-landingi.com/landend/211024/new_landend.js"></script></body></html>