___          _____  _____    __  ____  ____       _ 
  / _ \        / ____||_   _|  / _||___ \|___ \     | |
 | | | |__  __| (___    | |   | |_   __) | __) |  __| |
 | | | |\ \/ / \___ \   | |   |  _| |__ < |__ <  / _` |
 | |_| | >  <  ____) | _| |_  | |   ___) |___) || (_| |
  \___/ /_/\_\|_____/ |_____| |_|  |____/|____/  \__,_|
                          ______                       
                         |______|                      
  
0xSI_f33d_REPORT_ID: #146705
Submission Date
25/09/2026
Submitter
@bot_orange
Indicator URL
https://santander-gigs-demo.webflow.io/
Page Title
Santander
Taxonomy
phishingphishing
Infrastructure
IP: 104.18.36.248
CN: santander-gigs-demo.webflow.io
MX: N/A
Intel / Info
No intelligence notes recorded.
Visual Evidence
Evidence
Captured Source Code
VIEW_SOURCE: [HTML]
<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Thu Feb 19 2026 13:48:58 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="santander-gigs-demo.webflow.io" data-wf-page="697764e896f78e2ab18f31f7" data-wf-site="697764e696f78e2ab18f318e" lang="en"><head><meta charset="utf-8"/><link href="https://cdn.prod.website-files.com" rel="preconnect" crossorigin="anonymous"/><title>Santander</title><meta content="width=device-width, initial-scale=1" name="viewport"/><meta content="Webflow" name="generator"/><link href="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/css/santander-gigs-demo.webflow.shared.f14c764a3.css" rel="stylesheet" type="text/css" integrity="sha384-8Ux2Sjly4BqY/wlTeudirde/rOAPRIWLhhjGyt79slYbXF5ox+88ybTpxxTtRTVP" crossorigin="anonymous"/><link href="https://fonts.googleapis.com" rel="preconnect"/><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous"/><script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script><script type="text/javascript">WebFont.load({  google: {    families: ["Inter:300,400,500,600,700","Inter Tight:300,400,500,600,700"]  }});</script><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6979f3c1e3b6ec85a0c91433_Santander-favicon-svg.svg" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6979f3d897f0bdf3e590f9ab_Santander-webclip-256x256px.png" rel="apple-touch-icon"/><script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>

<script>
  document.addEventListener('DOMContentLoaded', function () {
    const formFields = document.querySelectorAll('[data-input="form-field"]');

    formFields.forEach(function (formField) {
      const input = formField.querySelector('[data-input="input"]');
      const isDisabled = formField.getAttribute('data-disabled') === 'true';

      let disabled = isDisabled;
      let filled = input.tagName === 'SELECT' ? input.value !== '' : input.value !== '';
      let focused = false;
      let hasPlaceholder = input.tagName === 'SELECT' ? input.options[0].text.trim() !== '' : input.placeholder !== '';

      function updateClasses() {
        // Manage form-field classes based on state
        formField.classList.toggle('disabled', disabled);
        formField.classList.toggle('filled', filled);
        formField.classList.toggle('focused', focused);
        formField.classList.toggle('has-placeholder', hasPlaceholder);

        // Set the disabled attribute on the input element
        input.disabled = disabled;
      }

      // Initialize classes and set disabled state based on initial state
      updateClasses();

      // Use requestAnimationFrame to defer adding the "ready" class until the next frame.
      // We want to avoid animating the field on page load (for cases where we have a prefilled field or placeholder).
      requestAnimationFrame(() => {
        formField.classList.add('ready');
      });

      // Event listeners for inputs and selects
      input.addEventListener('focus', function () {
        if (!disabled) {
          focused = true;
          updateClasses();
        }
      });

      input.addEventListener('blur', function () {
        if (!disabled) {
          focused = false;
          filled = input.tagName === 'SELECT' ? input.value !== '' : input.value !== '';
          updateClasses();
        }
      });

      if (input.tagName === 'SELECT') {
        input.addEventListener('change', function () {
          filled = input.value !== '';
          updateClasses();
        });
      }

      // Listen for changes to data-disabled attribute if needed
      new MutationObserver(function (mutations) {
        mutations.forEach(function (mutation) {
          if (mutation.attributeName === 'data-disabled') {
            disabled = formField.getAttribute('data-disabled') === 'true';
            updateClasses();
          }
        });
      }).observe(formField, { attributes: true });
    });
  });
</script>



<script type="text/javascript">
  // Allows any element to open the cookie consent manager.
  // Add attribute data-cm="settings" to the opener element.
  document.addEventListener('DOMContentLoaded', function() {
    document.querySelectorAll('a[data-cm="settings"]').forEach(function(link) {
      link.addEventListener('click', function(e) {
        e.preventDefault();
        cookiehub?.openSettings()
      });
    });
  });
</script>

<script type="text/javascript">
  // Prevent body scroll when mobile navigation is open.
  document.addEventListener("DOMContentLoaded", () => {
    const targetElement = document.querySelector("#nav-toggle")
    if (!targetElement) {
      console.warn("No element with aria-expanded attribute found.")
      return
    }

    const mutationCallback = (mutationsList) => {
      for (const mutation of mutationsList) {
        if (
          mutation.type === "attributes" &&
          mutation.attributeName === "aria-expanded"
        ) {
          const isExpanded =
            targetElement.getAttribute("aria-expanded") === "true"

          if (isExpanded) {
            document.body.classList.add("no-scroll")
          } else {
            document.body.classList.remove("no-scroll")
          }
        }
      }
    }

    const observer = new MutationObserver(mutationCallback)
    observer.observe(targetElement, {
      attributes: true,
      attributeFilter: ["aria-expanded"],
    })
  })
</script>


<script type="text/javascript">
  document.addEventListener('DOMContentLoaded', () => {
    const debounce = (fn, delay) => {
      let timer;
      return (...args) => {
        clearTimeout(timer);
        timer = setTimeout(() => fn(...args), delay);
      };
    };

    const tabListContainers = document.querySelectorAll('[data-tab-list-container]');

    tabListContainers.forEach((container) => {
      const tabList = container.querySelector('[data-tab-list]');
      const chevronLeft = container.querySelector('[data-tab-chevron="left"]');
      const chevronRight = container.querySelector('[data-tab-chevron="right"]');

      const updateChevronsAndAlignment = () => {
        const { scrollLeft, scrollWidth, clientWidth } = tabList;

        // Check if scrolling is required
        const isScrollable = scrollWidth > clientWidth;

        // Show/hide chevrons based on scroll position
        const shouldShowLeft = scrollLeft > 0;
        const shouldShowRight = scrollLeft + clientWidth < scrollWidth;

        chevronLeft.classList.toggle('hidden', !(isScrollable && shouldShowLeft));
        chevronRight.classList.toggle('hidden', !(isScrollable && shouldShowRight));

        // Add or remove the scrolling class
        tabList.classList.toggle('tab-list-scrolling', isScrollable);
      };

      const scrollByAmount = (amount) => {
        tabList.scrollBy({
          left: amount,
          behavior: 'smooth',
        });
      };

      // Attach event listeners
      chevronLeft.addEventListener('click', () => scrollByAmount(-200));
      chevronRight.addEventListener('click', () => scrollByAmount(200));

      // Attach scroll listener for immediate updates
      tabList.addEventListener('scroll', updateChevronsAndAlignment);

      // Attach debounced resize listener for dynamic screen size changes
      window.addEventListener('resize', debounce(updateChevronsAndAlignment, 200));

      // Initial update to set chevrons visibility and alignment
      updateChevronsAndAlignment();
    });
  });
</script>

<script type="text/javascript">
// Allows editors to limit how many items are displayed in a collection list
document.addEventListener("DOMContentLoaded", () => {
  document.querySelectorAll('[data-truncate="parent"]').forEach(parent => {
    const limit = parseInt(parent.getAttribute("data-limit"), 10);

    parent.querySelectorAll('[data-truncate="list"]').forEach(list => {
      const items = list.querySelectorAll('[data-truncate="item"]');
      const toggleContainer = list.querySelector('[data-truncate="toggle-container"]');
      const btn = list.querySelector('[data-truncate="toggle"]');

      // No valid limit → show everything, hide toggle
      if (isNaN(limit)) {
        if (toggleContainer) toggleContainer.style.display = "none";
        return;
      }

      // Hide items beyond the limit
      items.forEach((item, i) => {
        if (i >= limit) item.style.display = "none";
      });

      // Show/hide button
      if (items.length <= limit && toggleContainer) {
        toggleContainer.style.display = "none";
      }

      // Expand on click
      if (btn) {
        btn.addEventListener("click", e => {
          e.preventDefault();
          items.forEach(item => item.style.display = "");
          if (toggleContainer) toggleContainer.style.display = "none";
        });
      }
    });
  });
});
</script>

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/swiper@12/swiper-bundle.min.css"
/>

<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/tom-select.css" rel="stylesheet">
<script async src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/tom-select.complete.min.js"></script>


<!-- MONTO GLOBAL SCRIPT -->
<script
  src="https://www.monto.io/monto-global.js"
  data-shop-id="RLpqm4DQ6xjAdroJG7ednKMA"
  async
></script>
<!-- END MONTO GLOBAL SCRIPT -->


<!-- LOCALE CONFIGURATION -->
<script type="text/javascript">
  // Unified locale configuration used by all scripts
  // currency: ISO-4217 currency code for Monto conversion
  // miles.useConvertedPrice: true = use Monto's converted price, false = use base price
  // miles.multiplier: number to multiply the price by for miles calculation

  const DEFAULT_CURRENCY = 'USD';

  /*
    If you want automatic miles calculation, you can uncomment the miles configuration below.
    You must also add the following attributes to the product teaser element that will display the miles:
    - `data-miles` (no value)
    - `data-miles-base-price` = value set to the product's base price from the database in the default currency (usually USD)
    */

  window.LOCALE_CONFIG = {
    'br-pt': {
      currency: 'BRL',
      // miles: { useConvertedPrice: true, multiplier: 1 }
    },
    'cl-es': {
      currency: 'CLP',
      // miles: { useConvertedPrice: false, multiplier: 3 }
    },
    'or-en': {
      currency: 'USD',
      // miles: { useConvertedPrice: false, multiplier: 3 }
    },
    'or-es': {
      currency: 'USD',
      // miles: { useConvertedPrice: false, multiplier: 3 }
    },
  };
</script>
<!-- END LOCALE CONFIGURATION -->

<!-- MONTO CONVERSION SETTINGS -->
<script type="text/javascript">

  if (!window.__montoCurrencySet) {
    window.__montoCurrencySet = true;
    window.addEventListener('DOMContentLoaded', () => {
      // Get the locale from the URL
      const path = window.location.pathname;
      const matchedLocale = Object.keys(window.LOCALE_CONFIG || {}).find((locale) => path.startsWith('/' + locale));

      // Set the currency based on the locale
      const localeConfig = window.LOCALE_CONFIG?.[matchedLocale];
      const currency = localeConfig?.currency || DEFAULT_CURRENCY;

      // Create a hidden button to click. This is a workaround to set the currency.
      // Monto listens for clicks on elements with certain data-attributes,
      // and does not offer direct functions.
      const montoButton = document.createElement('button');
      montoButton.type = 'button';
      montoButton.style.cssText = 'position:fixed;left:-9999px;top:-9999px;';
      montoButton.setAttribute('data-monto-set-currency', currency);
      document.body.appendChild(montoButton);

      // Wait for Monto to be ready.
      const maxWait = 5000;
      const interval = 100;
      const start = Date.now();
      const poll = setInterval(() => {
        // If Monto is ready, click the button and remove it.
        if (window.MONTO?.isReady) {
          clearInterval(poll);
          setTimeout(() => {
            montoButton.click();
            montoButton.remove();
            console.log(`[Monto] set currency to ${currency}`);
          }, 300);
        }

        // If Monto is not ready after X seconds, remove the button and bail.
        if (Date.now() - start > maxWait) {
          clearInterval(poll);
          montoButton.remove();
          console.log(`[Monto] giving up after 5s, wanted ${currency}`);
        }
      }, interval);
    });
  }
</script>
<!-- END MONTO CONVERSION SETTINGS -->


<!-- MILES CALCULATION -->
<script type="text/javascript">
  (function() {
    // Use shared locale configuration
    const LOCALE_CONFIG = window.LOCALE_CONFIG || {};

    function getLocale() {
      const path = window.location.pathname;
      return Object.keys(LOCALE_CONFIG).find((locale) => path.startsWith('/' + locale)) || null;
    }

    function extractNumber(value) {
      const match = String(value || '').match(/[\d,]+\.?\d*/);
      return match ? parseFloat(match[0].replace(/,/g, '')) : null;
    }

    function getConvertedPrice(container, basePriceUSD) {
      // Monto creates a new element with data-montoprice containing the converted price
      const originalEl = container.querySelector('[data-monto-convert-price]');
      if (!originalEl) return null;

      const satelliteId = originalEl.getAttribute('data-montoprice-satelite');
      if (!satelliteId) return null;

      const convertedEl = container.querySelector(`[data-montoprice="${satelliteId}"]`);
      if (!convertedEl) return null;

      // Verify the element has actual text content (not just created)
      const text = convertedEl.textContent?.trim() || convertedEl.innerText?.trim();
      if (!text || text.length < 2) return null; // Too short to be a valid price

      const num = extractNumber(text);
      if (!num || num <= 0) return null;

      // Verify it's actually converted (different from USD base price)
      // Converted currencies are typically different from USD
      // Allow some tolerance but ensure it's significantly different
      if (Math.abs(num - basePriceUSD) < 0.5) {
        // Price hasn't been converted yet, still showing USD
        return null;
      }

      return num;
    }

    // Track updated elements to avoid re-processing
    const updatedElements = new WeakSet();

    function updateMiles() {
      const locale = getLocale();
      if (!locale) return;

      const elements = document.querySelectorAll('[data-miles-base-price]');
      if (elements.length === 0) return;

      // Use requestAnimationFrame to batch DOM updates
      requestAnimationFrame(() => {
        elements.forEach((el) => {
          const localeConfig = LOCALE_CONFIG[locale];
          // Gracefully skip if locale has no miles configuration
          if (!localeConfig || !localeConfig.miles) return;

          const milesConfig = localeConfig.miles;
          // For locales with multipliers, skip if already updated
          // For locales using converted currency, allow retries
          if (!milesConfig.useConvertedPrice && updatedElements.has(el)) return;

          // Find target element: [data-miles] in same container, or use element itself
          const container = el.closest('.products-item, .product-details') || el.parentElement;
          const targetEl = container?.querySelector('[data-miles]') || el;

          const basePriceAttr = el.getAttribute('data-miles-base-price');
          const basePrice = extractNumber(basePriceAttr);
          if (!basePrice || basePrice <= 0) return;

          let miles = null;

          if (milesConfig.useConvertedPrice) {
            // Use converted currency value
            const convertedPrice = getConvertedPrice(container, basePrice);
            if (convertedPrice) {
              miles = Math.round(convertedPrice * milesConfig.multiplier);
              // Only mark as updated if we successfully got converted price
              updatedElements.add(el);
              updatedElements.add(targetEl);
            } else {
              // Not converted yet, skip for now (will retry)
              return;
            }
          } else {
            // Use base price with multiplier
            miles = Math.round(basePrice * milesConfig.multiplier);
            updatedElements.add(el);
            updatedElements.add(targetEl);
          }

          if (miles !== null) {
            targetEl.textContent = miles.toLocaleString();
          }
        });
      });
    }

    function init() {
      const locale = getLocale();
      if (!locale) return;

      // Update immediately for locales that don't use converted price
      const localeConfig = LOCALE_CONFIG[locale];
      if (localeConfig?.miles && !localeConfig.miles.useConvertedPrice) {
        updateMiles();
      }

      // Watch for Monto converted prices and dynamically added elements
      let mutationTimeout = null;
      const observer = new MutationObserver((mutations) => {
        let shouldUpdate = false;

        for (const mutation of mutations) {
          // Check for Monto converted price elements (data-montoprice)
          for (const node of mutation.addedNodes) {
            if (node.nodeType === 1) { // Element node
              // Monto creates elements with data-montoprice when conversion is done
              if (node.hasAttribute?.('data-montoprice') &&
                  !node.hasAttribute('data-monto-convert-price')) {
                shouldUpdate = true;
                break;
              }
              // Also check for our miles elements
              if (node.hasAttribute?.('data-miles-base-price') ||
                  node.hasAttribute?.('data-miles') ||
                  node.querySelector?.('[data-miles-base-price], [data-miles]')) {
                shouldUpdate = true;
                break;
              }
            }
          }

          // Also check attribute changes (Monto might add data-montoprice to existing elements)
          if (mutation.type === 'attributes' &&
              mutation.attributeName === 'data-montoprice') {
            shouldUpdate = true;
          }

          if (shouldUpdate) break;
        }

        if (shouldUpdate) {
          // Debounce: clear previous timeout
          if (mutationTimeout) clearTimeout(mutationTimeout);
          mutationTimeout = setTimeout(() => {
            updateMiles();
            // For locales using converted currency, retry once more after a short delay
            const currentLocale = getLocale();
            const currentConfig = currentLocale ? LOCALE_CONFIG[currentLocale] : null;
            if (currentConfig?.miles?.useConvertedPrice) {
              setTimeout(() => updateMiles(), 300);
            }
          }, 200); // Slightly longer to ensure Monto has populated the text
        }
      });

      // Start observing immediately
      if (document.body) {
        observer.observe(document.body, {
          childList: true,
          subtree: true,
          attributes: true,
          attributeFilter: ['data-montoprice'] // Only watch for Monto price attribute
        });
      }

      // For locales using converted currency, also poll after Monto is ready (fallback for reliability)
      if (localeConfig?.miles?.useConvertedPrice) {
        let montoReady = false;
        const checkMonto = setInterval(() => {
          if (window.MONTO?.isReady && !montoReady) {
            montoReady = true;
            clearInterval(checkMonto);
            // Poll a few times to catch conversion
            let attempts = 0;
            const pollConversion = setInterval(() => {
              attempts++;
              updateMiles();
              if (attempts >= 5) clearInterval(pollConversion);
            }, 400);
          }
        }, 300);

        // Cleanup after 10s
        setTimeout(() => clearInterval(checkMonto), 10000);
      }
    }

    if (document.readyState === 'loading') {
      document.addEventListener('DOMContentLoaded', init);
    } else {
      init();
    }
  })();
</script>
<!-- END MILES CALCULATION -->

</head><body><div class="always-embed w-embed"><!-- The Webflow editor does not apply custom code that was added to the general site settings, it's only available on the published site. So if we want to invert a section, we can't see its text without the applied styles. For this reason we must embed this code block on each page manually. -->
<style type="text/css">
  .alt {
    --base--header-color: var(--alt--header-color);
    --base--text-color: var(--alt--text-color);
    --base--text-primary: var(--alt--text-primary);
    --base--text-secondary: var(--alt--text-secondary);
    --button--focus-ring-color: var(--alt--button-focus-ring-color);
    --button--secondary-border-color: var(--alt--button-secondary-border-color);
    --button--secondary-label-color: var(--alt--button-secondary-label-color);
    --button--tertiary-label-color: var(--alt--button-tertiary-label-color);
    --content--border-color: var(--alt--content-border-color);
    --content--divider-color: var(--alt--divider-color);
    --content--link-color: var(--alt--link-color);
		--content--star-rating-color: var(--alt--text-primary);
    --section--background: var(--alt--background);
    --tabs--text-color-active:  var(--alt--tabs-text-color-active);
    --tabs--text-color-inactive:  var(--alt--tabs-text-color-inactive);
    --tabs--border-color-active: var(--alt--tabs-border-color-active);
  }

  body {
    -moz-osx-font-smoothing: grayscale; /* better firefox font rendering */
    -webkit-font-smoothing: antialiased; /* better webkit font rendering */
  }

  .w-nav-overlay {
  	backdrop-filter: blur(4px);
    background-color: rgba(0,0,0,0.1);
  }

  .w-input[disabled]:not(.w-input-disabled),
  .w-select[disabled]:not(.w-input-disabled),
  .w-input[readonly],
  .w-select[readonly],
  fieldset[disabled]:not(.w-input-disabled) .w-input,
  fieldset[disabled]:not(.w-input-disabled) .w-select {
    background-color: transparent;
  }

  .form-field.active .form-label,
  .form-field.filled .form-label,
  .form-field.focused .form-label,
  .form-field.has-placeholder .form-label {
  	font-size: 12px;
    transform: translate(0, -13px);
  }
  .form-field.active .form-input,
  .form-field.filled .form-input,
  .form-field.focused .form-input,
  .form-field.has-placeholder .form-input {
		transform: translate(0, 10px);
  }

  .form-field.ready .form-input {
  	transition: transform 250ms ease;
  }
  .form-field.ready .form-label {
  	transition: transform 250ms ease, font-size 250ms ease;
  }
  .form-field:not(.ready) .form-label,
	.form-field:not(.ready) .form-input {
  	transition: none;
	}

  .form-field.focused {
  	border-color: var(--input--border-color-focused);
    outline: 1px solid var(--input--border-color-focused);
		outline-offset: 0px;
  }

  .form-field.error {
    background-color: var(--feedback--error-background-color);
		border-color: var(--feedback--error-border-color);
    color: var(--feedback--error-text-color);
  }

  .form-field.focused.error {
  	outline-color: var(--feedback--error-border-color);
  }

  .form-field.error .form-label {
	  color: var(--feedback--error-text-color);
  }

  .form-field-select::after {
    background-color: currentColor;
    bottom: 24px;
    content: "";
  	display: block;
    height: 11px;
    line-height: 1;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='11' viewBox='0 0 20 11' fill='none'%3E %3Cpath d='M1 0.878662L9.51047 9.38906C9.78083 9.65948 10.2192 9.65948 10.4895 9.38906L19 0.878662' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E");
		position: absolute;
    right: 16px;
    width: 20px;
    z-index: 2;
  }

  [x-cloak] { display: none !important; }
  .hidden { display: none !important; }
  .sr-only {
  	position: absolute;
    width:1px;
    height:1px;
    padding:0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space:nowrap;
    border:0
  }


  .tab-list-scrolling { justify-content: flex-start; }

  .bento-row::after,
  .bento-row::before {
  	display: none; /* Remove Webflow nonsense that breaks flex gap */
  }

  .product-card-details {
    grid-row-gap: 3.491cqi;
  }

  .product-card-details-left {
    grid-row-gap: 2cqi;
  }

  .product-card-details-data-wrapper {
    grid-column-gap: 2.3cqi;
  }

  .product-card-details-data {
    font-size: 11.45cqi;
  }

  .product-card-details-meta {
    font-size: 3.82cqi;
  }

  .product-card-details-tag {
    font-size: 4.62cqi;
    padding: 1.9cqi 3.03cqi;
  }

  .product-card-coverage {
    grid-column-gap: 3cqi;
  }

  .product-card-coverage-content {
    grid-row-gap: 0.5cqi;
  }

  .product-card-coverage-image {
    width: 8cqi;
  }

  .product-card-coverage-label {
  	font-size: 3.82cqi;
  }

  .product-card-coverage-value {
    font-size: 5cqi;
  }

  .product-card-header-left {
  	height: 5.75cqi;
  }

  .product-card .brand img {
    object-fit: contain;
    object-position: 0% 0%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    position: absolute;
    inset: 0;
  }

  .product-crosslink.w--current {
    background-color: var(--product-crosslink--background-color-active);
    border-color: var(--product-crosslink--border-color-active);
    color: var(--product-crosslink--text-color-active);
  }

  .product-crosslink.w--current .product-crosslink-price {
    color: var(--product-crosslink--text-color-secondary-active);
  }

  .swiper-button-next,
  .swiper-button-prev {
  	color: inherit;
	  height: 24px;
  	position: relative;
		width: 24px;
    top: auto;
    right: auto;
    left: auto;
    margin: 0;
   }
	.swiper-button-next { order: 2; }
  .swiper-button-prev { order: 1; }
  .swiper-controls::after,
  .swiper-controls::before,
  .swiper-button-next::after,
  .swiper-button-prev::after {
  	display: none;
  }
  .swiper-button-next svg,
  .swiper-button-prev svg {
  	fill: none;
  }

.product-search .ts-control {
  background: transparent;
  border: none;
  height: 100%;
  padding-left: 60px;
  padding-right: 4px;
}

@media screen and (max-width: 374px) {
  .product-search .ts-control {
    padding-left: 16px;
  }
  .product-search-icon-wrapper {
    display: none;
  }
}

.product-search .ts-wrapper.single.input-active .ts-control {
  background: transparent;
  border: none;
}

.product-search .ts-dropdown,
.product-search .ts-control,
.product-search .ts-control input {
  font-size: 16px;
}

.product-search .ts-control,
.product-search .ts-control input,
.product-search .ts-control input::placeholder {
  color: var(--product-search--text-color);
}

@media screen and (max-width: 380px) {
  .product-search .ts-control input::placeholder {
    font-size: 14px;
  }
}

.product-search .ts-dropdown {
  border: none;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  color: var(--product-search--item-text-color);
  margin-top: var(--space--8);
}

.product-search .ts-dropdown,
.product-search .ts-dropdown-content {
  border-radius: var(--input--corner-radius);
}

.product-search .ts-dropdown .option {
  padding: 13px;
}

.product-search .ts-dropdown .active {
  background-color: var(--product-search--item-background-color-active);
  color: var(--product-search--item-text-color);
}

.product-search .ts-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-search .ts-flag {
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-search .ts-flag img {
  height: auto;
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-search .item .ts-flag {
  display: none;
}

.product-search .clear-button {
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
}
</style></div><div data-w-id="6f0da6f2-69a6-539c-fbf9-b8f515e825ac" data-animation="default" data-collapse="medium" data-duration="250" data-easing="ease" data-easing2="ease" role="banner" class="navbar w-nav"><div class="container w-container"><div class="header-container"><div class="header-left"><a id="logo" href="/" aria-current="page" class="brand w-nav-brand w--current"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69776ea3f691a715a94682c7_santander-logo.svg" loading="lazy" alt=""/></span></a><nav role="navigation" class="header-nav-menu w-nav-menu"><a href="/#plans" class="header-nav-link w-nav-link">Plans</a><a href="/#howitworks" class="header-nav-link w-nav-link">How eSIMs work</a><a href="/#benefits" class="header-nav-link w-nav-link">Benefits</a><a href="/#faqs" class="header-nav-link w-nav-link">FAQs</a><div class="header-nav-buttons mobile"><a data-wf--button--variant="primary" href="#" class="button w-inline-block"><div class="button-label">My Account</div></a></div></nav></div><div class="header-nav-buttons"><a data-wf--button--variant="primary-small" href="#" class="button w-variant-21dc2980-7f44-df22-6f8a-d44234898bfe w-inline-block"><div class="button-label">My Account</div></a></div><div id="nav-toggle" class="menu-button w-nav-button"><div class="mobile-menu-icon w-embed"><!-- Fill must be set to "currentColor" in order to enable the template's color settings. Ideal size 16x16, max size 24x24. -->
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3 6.70032C3 6.14803 3.44772 5.70032 4 5.70032H20C20.5523 5.70032 21 6.14803 21 6.70032C21 7.2526 20.5523 7.70032 20 7.70032H4C3.44772 7.70032 3 7.2526 3 6.70032ZM3 12.7003C3 12.148 3.44772 11.7003 4 11.7003H20C20.5523 11.7003 21 12.148 21 12.7003C21 13.2526 20.5523 13.7003 20 13.7003H4C3.44772 13.7003 3 13.2526 3 12.7003ZM3 18.7003C3 18.148 3.44772 17.7003 4 17.7003H20C20.5523 17.7003 21 18.148 21 18.7003C21 19.2526 20.5523 19.7003 20 19.7003H4C3.44772 19.7003 3 19.2526 3 18.7003Z" fill="currentColor"/></svg></div></div></div></div></div><section class="hero"><div class="w-layout-blockcontainer hero-container w-container"><div class="hero-column-wrapper"><div class="hero-column-left"><h1 class="hero-heading">Stay connected wherever you go</h1><p class="hero-text">Instant data in 170+ countries, no surprise fees. </p><div class="product-search"><label for="product-search" class="product-search-label">Find your destination</label><div class="product-search-element"><span class="product-search-icon-wrapper"><div class="product-search-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M16.913 7.817c0 4.555-5.13 8.608-6.344 9.503a.95.95 0 0 1-.569.183.95.95 0 0 1-.569-.183c-1.213-.895-6.344-4.948-6.344-9.503C3.087 3.894 6.182.714 10 .714s6.913 3.18 6.913 7.103Z"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M7.5 7.324a2.5 2.5 0 1 0 5 0 2.5 2.5 0 0 0-5 0Z"/><path stroke="currentColor" stroke-linecap="round" d="M3 19h13.5"/></svg></div></span><select data-product-search="" placeholder="Where do you need an eSIM?" data-include-all-countries="true" data-use-fallback-icons="true" id="product-search" class="product-search-input"><option></option></select></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096bc51f57617cc5d620_293e1cee5c8efe86f823e85414c8b771_Santander-Hero-Desktop.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096bc51f57617cc5d620_293e1cee5c8efe86f823e85414c8b771_Santander-Hero-Desktop-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096bc51f57617cc5d620_293e1cee5c8efe86f823e85414c8b771_Santander-Hero-Desktop-p-800.jpg 800w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096bc51f57617cc5d620_293e1cee5c8efe86f823e85414c8b771_Santander-Hero-Desktop-p-1080.jpg 1080w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096bc51f57617cc5d620_293e1cee5c8efe86f823e85414c8b771_Santander-Hero-Desktop-p-1600.jpg 1600w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096bc51f57617cc5d620_293e1cee5c8efe86f823e85414c8b771_Santander-Hero-Desktop-p-2000.jpg 2000w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096bc51f57617cc5d620_293e1cee5c8efe86f823e85414c8b771_Santander-Hero-Desktop-p-2600.jpg 2600w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096bc51f57617cc5d620_293e1cee5c8efe86f823e85414c8b771_Santander-Hero-Desktop-p-3200.jpg 3200w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096bc51f57617cc5d620_293e1cee5c8efe86f823e85414c8b771_Santander-Hero-Desktop.jpg 4320w" class="hero-background-image"/><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096b4b50a8ed5b35f4a7_Santander-Hero-Mobile.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096b4b50a8ed5b35f4a7_Santander-Hero-Mobile-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096b4b50a8ed5b35f4a7_Santander-Hero-Mobile-p-800.jpg 800w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096b4b50a8ed5b35f4a7_Santander-Hero-Mobile-p-1080.jpg 1080w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/697a096b4b50a8ed5b35f4a7_Santander-Hero-Mobile.jpg 1125w" class="hero-background-image-mobile"/></section><section id="plans" class="section compacter"><div class="w-layout-blockcontainer container w-container"><div class="w-layout-blockcontainer container-plans w-container"><div class="vertical-block-64"><div class="text-width-centered"><div data-wf--heading-with-text--variant="center" class="heading-with-text w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73"><h2 class="heading-with-text---header w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73">Touchdown and connect</h2><div class="heading-text w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73">A smarter way to stay connected abroad. Choose an eSIM for your trip, install it in a tap, and get online as soon as you land.</div></div></div><div data-limit="3" x-data="{group: &#x27;&#x27;, mode: &#x27;tabs&#x27;, tab: &#x27;2&#x27;}" data-truncate="parent" class="product-nav"><div x-transition:enter="" x-show="mode == &#x27;tabs&#x27;" class="tabs"><div class="tab-content-list-wrapper"><div class="tab-content-list"><div class="tab-content-list-item"><div data-truncate="list" data-tab-content-id="2" x-show="tab == $el.getAttribute(&#x27;data-tab-content-id&#x27;)" class="tab-content"><div class="navcard-list-wrapper w-dyn-list"><div x-init="total = $refs.items.children.length" x-ref="items" role="list" class="navcard-list w-dyn-items"><div data-truncate="item" role="listitem" class="navcard-item w-dyn-item"><div data-group-id="europe" role="button" tabindex="0" x-on:click="group = $el.getAttribute(&#x27;data-group-id&#x27;); mode = &#x27;products&#x27;; ;$nextTick(()=&gt;{let el=document.querySelector(`[data-group-content-id=&#x27;${group}&#x27;]`);if(el&amp;&amp;el.getBoundingClientRect().top&lt;0)el.scrollIntoView({behavior:&#x27;smooth&#x27;,block:&#x27;start&#x27;})})" class="navcard"><div class="navcard-icon"><img width="Auto" src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f330b_europe.svg" alt="" loading="lazy"/></div><div class="navcard-content"><div class="navcard-header">Europe</div></div><div class="navcard-arrow"><div class="w-embed"><svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.58391 20.6798C8.19338 20.2892 8.19338 19.6561 8.58391 19.2655L14.8768 12.9727L8.58391 6.67976C8.19338 6.28924 8.19338 5.65607 8.58391 5.26555C8.97443 4.87502 9.6076 4.87502 9.99812 5.26555L16.9981 12.2655C17.3886 12.6561 17.3886 13.2892 16.9981 13.6798L9.99812 20.6798C9.6076 21.0703 8.97443 21.0703 8.58391 20.6798Z" fill="currentColor"/>
</svg></div></div></div></div><div data-truncate="item" role="listitem" class="navcard-item w-dyn-item"><div data-group-id="latam-caribbean" role="button" tabindex="0" x-on:click="group = $el.getAttribute(&#x27;data-group-id&#x27;); mode = &#x27;products&#x27;; ;$nextTick(()=&gt;{let el=document.querySelector(`[data-group-content-id=&#x27;${group}&#x27;]`);if(el&amp;&amp;el.getBoundingClientRect().top&lt;0)el.scrollIntoView({behavior:&#x27;smooth&#x27;,block:&#x27;start&#x27;})})" class="navcard"><div class="navcard-icon"><img width="Auto" src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f32d4_south-america.svg" alt="" loading="lazy"/></div><div class="navcard-content"><div class="navcard-header">Latin America &amp; Caribbean</div></div><div class="navcard-arrow"><div class="w-embed"><svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.58391 20.6798C8.19338 20.2892 8.19338 19.6561 8.58391 19.2655L14.8768 12.9727L8.58391 6.67976C8.19338 6.28924 8.19338 5.65607 8.58391 5.26555C8.97443 4.87502 9.6076 4.87502 9.99812 5.26555L16.9981 12.2655C17.3886 12.6561 17.3886 13.2892 16.9981 13.6798L9.99812 20.6798C9.6076 21.0703 8.97443 21.0703 8.58391 20.6798Z" fill="currentColor"/>
</svg></div></div></div></div><div data-truncate="item" role="listitem" class="navcard-item w-dyn-item"><div data-group-id="north-america" role="button" tabindex="0" x-on:click="group = $el.getAttribute(&#x27;data-group-id&#x27;); mode = &#x27;products&#x27;; ;$nextTick(()=&gt;{let el=document.querySelector(`[data-group-content-id=&#x27;${group}&#x27;]`);if(el&amp;&amp;el.getBoundingClientRect().top&lt;0)el.scrollIntoView({behavior:&#x27;smooth&#x27;,block:&#x27;start&#x27;})})" class="navcard"><div class="navcard-icon"><img width="Auto" src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977898f578fbaa68f3efdf0_north-america.svg" alt="" loading="lazy"/></div><div class="navcard-content"><div class="navcard-header">North America</div></div><div class="navcard-arrow"><div class="w-embed"><svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.58391 20.6798C8.19338 20.2892 8.19338 19.6561 8.58391 19.2655L14.8768 12.9727L8.58391 6.67976C8.19338 6.28924 8.19338 5.65607 8.58391 5.26555C8.97443 4.87502 9.6076 4.87502 9.99812 5.26555L16.9981 12.2655C17.3886 12.6561 17.3886 13.2892 16.9981 13.6798L9.99812 20.6798C9.6076 21.0703 8.97443 21.0703 8.58391 20.6798Z" fill="currentColor"/>
</svg></div></div></div></div></div></div><div data-truncate="toggle-container" class="navcard-toggle-container"><a data-truncate="toggle" href="#" class="button-secondary w-button">Show all destinations</a></div></div></div></div></div></div><div x-transition:enter="" x-show="mode == &#x27;products&#x27;" class="product-nav-plans"><div class="w-dyn-list"><div role="list" class="w-dyn-items"><div role="listitem" class="w-dyn-item"><div data-group-content-id="europe" x-show="group == $el.getAttribute(&#x27;data-group-content-id&#x27;)" class="product-group"><div class="product-group-header"><div tabindex="0" x-on:click="mode = &#x27;tabs&#x27;" role="button" class="product-group-back"><div class="product-group-back-arrow w-embed"><svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2755 5.7239C14.7962 6.2446 14.7962 7.08882 14.2755 7.60952L7.2183 14.6667L27.9993 14.6667C28.7357 14.6667 29.3327 15.2637 29.3327 16C29.3327 16.7364 28.7357 17.3334 27.9993 17.3334H7.2183L14.2755 24.3906C14.7962 24.9113 14.7962 25.7555 14.2755 26.2762C13.7548 26.7969 12.9106 26.7969 12.3899 26.2762L3.05654 16.9429C2.53584 16.4222 2.53584 15.5779 3.05654 15.0572L12.3899 5.7239C12.9106 5.2032 13.7548 5.2032 14.2755 5.7239Z" fill="currentColor"/>
</svg></div><div class="product-group-back-label">All destinations</div></div><div class="product-group-title"><div class="product-group-icon"><img loading="lazy" src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f330b_europe.svg" alt=""/></div><div class="product-group-title-text">Europe</div></div></div><div class="products-list-wrapper w-dyn-list"><div role="list" class="products-list w-dyn-items"><div role="listitem" class="products-item w-dyn-item"><a data-countries="Albania, Andorra, Armenia, Austria, Belgium, Bosnia and Herzegovina, Bulgaria, Croatia, Cyprus, Czechia, Denmark, Estonia, Faroe Islands, Finland, France, Georgia, Germany, Gibraltar, Greece, Hungary, Iceland, Ireland, Italy, Latvia, Liechtenstein, Lithuania, Luxembourg, Malta, Moldova, Montenegro, Netherlands, Norway, Poland, Portugal, Republic of North Macedonia, Romania, Serbia, Slovakia, Slovenia, Spain, Sweden, Switzerland, Turkey, Ukraine, United Kingdom" href="/plans/1gb-europe" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">1GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f32b1_europe-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">Europe</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977912c03a909a0c4143297_Santander-Card-Background-1.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977912c03a909a0c4143297_Santander-Card-Background-1-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977912c03a909a0c4143297_Santander-Card-Background-1.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>1GB</span><span> </span><span>Europe</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$88</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Designed for those who need only the essentials for short trips.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div><div role="listitem" class="products-item w-dyn-item"><a data-countries="Albania, Andorra, Armenia, Austria, Belgium, Bosnia and Herzegovina, Bulgaria, Croatia, Cyprus, Czechia, Denmark, Estonia, Faroe Islands, Finland, France, Georgia, Germany, Gibraltar, Greece, Hungary, Iceland, Ireland, Italy, Latvia, Liechtenstein, Lithuania, Luxembourg, Malta, Moldova, Montenegro, Netherlands, Norway, Poland, Portugal, Republic of North Macedonia, Romania, Serbia, Slovakia, Slovenia, Spain, Sweden, Switzerland, Turkey, Ukraine, United Kingdom" href="/plans/3gb-europe" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">3GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f32b1_europe-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">Europe</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977913792ee0293e7b392a9_Santander-Card-Background-2.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977913792ee0293e7b392a9_Santander-Card-Background-2-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977913792ee0293e7b392a9_Santander-Card-Background-2.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>3GB</span><span> </span><span>Europe</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$229</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Ideal for casual browsing, navigation, and light social media users.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div><div role="listitem" class="products-item w-dyn-item"><a data-countries="Albania, Andorra, Armenia, Austria, Belgium, Bosnia and Herzegovina, Bulgaria, Croatia, Cyprus, Czechia, Denmark, Estonia, Faroe Islands, Finland, France, Georgia, Germany, Gibraltar, Greece, Hungary, Iceland, Ireland, Italy, Latvia, Liechtenstein, Lithuania, Luxembourg, Malta, Moldova, Montenegro, Netherlands, Norway, Poland, Portugal, Republic of North Macedonia, Romania, Serbia, Slovakia, Slovenia, Spain, Sweden, Switzerland, Turkey, Ukraine, United Kingdom" href="/plans/5gb-europe" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">5GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f32b1_europe-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">Europe</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779146a4798a7a333fee04_Santander-Card-Background-3.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779146a4798a7a333fee04_Santander-Card-Background-3-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779146a4798a7a333fee04_Santander-Card-Background-3.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>5GB</span><span> </span><span>Europe</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$353</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Perfect for streaming, video calls, and staying connected on the go.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div><div role="listitem" class="products-item w-dyn-item"><a data-countries="Albania, Andorra, Armenia, Austria, Belgium, Bosnia and Herzegovina, Bulgaria, Croatia, Cyprus, Czechia, Denmark, Estonia, Faroe Islands, Finland, France, Georgia, Germany, Gibraltar, Greece, Hungary, Iceland, Ireland, Italy, Latvia, Liechtenstein, Lithuania, Luxembourg, Malta, Moldova, Montenegro, Netherlands, Norway, Poland, Portugal, Republic of North Macedonia, Romania, Serbia, Slovakia, Slovenia, Spain, Sweden, Switzerland, Turkey, Ukraine, United Kingdom" href="/plans/10gb-europe" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">10GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f32b1_europe-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">Europe</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779150318ae11bc54d1610_Santander-Card-Background-4.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779150318ae11bc54d1610_Santander-Card-Background-4-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779150318ae11bc54d1610_Santander-Card-Background-4.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>10GB</span><span> </span><span>Europe</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$652</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Great for heavy users who need reliable connectivity for work and play.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div></div></div></div></div><div role="listitem" class="w-dyn-item"><div data-group-content-id="latam-caribbean" x-show="group == $el.getAttribute(&#x27;data-group-content-id&#x27;)" class="product-group"><div class="product-group-header"><div tabindex="0" x-on:click="mode = &#x27;tabs&#x27;" role="button" class="product-group-back"><div class="product-group-back-arrow w-embed"><svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2755 5.7239C14.7962 6.2446 14.7962 7.08882 14.2755 7.60952L7.2183 14.6667L27.9993 14.6667C28.7357 14.6667 29.3327 15.2637 29.3327 16C29.3327 16.7364 28.7357 17.3334 27.9993 17.3334H7.2183L14.2755 24.3906C14.7962 24.9113 14.7962 25.7555 14.2755 26.2762C13.7548 26.7969 12.9106 26.7969 12.3899 26.2762L3.05654 16.9429C2.53584 16.4222 2.53584 15.5779 3.05654 15.0572L12.3899 5.7239C12.9106 5.2032 13.7548 5.2032 14.2755 5.7239Z" fill="currentColor"/>
</svg></div><div class="product-group-back-label">All destinations</div></div><div class="product-group-title"><div class="product-group-icon"><img loading="lazy" src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f32d4_south-america.svg" alt=""/></div><div class="product-group-title-text">Latin America &amp; Caribbean</div></div></div><div class="products-list-wrapper w-dyn-list"><div role="list" class="products-list w-dyn-items"><div role="listitem" class="products-item w-dyn-item"><a data-countries="Anguilla, Antigua and Barbuda, Argentina, Bahamas, Barbados, Belize, Bermuda, Bolivia, Bonaire, Sint Eustatius and Saba, Brazil, Cayman Islands, Chile, Colombia, Costa Rica, Cuba, Curaçao, Dominica, Dominican Republic, Ecuador, El Salvador, French Guiana, Grenada, Guadeloupe, Guatemala, Guyana, Honduras, Jamaica, Mexico, Montserrat, Nicaragua, Panama, Paraguay, Peru, Puerto Rico, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines, Sint Maarten (Dutch part), Suriname, Trinidad and Tobago, Turks and Caicos Islands, Uruguay, Venezuela, Virgin Islands (British)." href="/plans/1gb-latam-caribbean" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">1GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f3274_south-america-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">Latin America &amp; Caribbean</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977912c03a909a0c4143297_Santander-Card-Background-1.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977912c03a909a0c4143297_Santander-Card-Background-1-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977912c03a909a0c4143297_Santander-Card-Background-1.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>1GB</span><span> </span><span>Latin America &amp; Caribbean</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$141</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Designed for those who need only the essentials for short trips.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div><div role="listitem" class="products-item w-dyn-item"><a data-countries="Anguilla, Antigua and Barbuda, Argentina, Bahamas, Barbados, Belize, Bermuda, Bolivia, Bonaire, Sint Eustatius and Saba, Brazil, Cayman Islands, Chile, Colombia, Costa Rica, Cuba, Curaçao, Dominica, Dominican Republic, Ecuador, El Salvador, French Guiana, Grenada, Guadeloupe, Guatemala, Guyana, Honduras, Jamaica, Mexico, Montserrat, Nicaragua, Panama, Paraguay, Peru, Puerto Rico, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines, Sint Maarten (Dutch part), Suriname, Trinidad and Tobago, Turks and Caicos Islands, Uruguay, Venezuela, Virgin Islands (British)." href="/plans/3gb-latin-america-caribbean" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">3GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f3274_south-america-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">Latin America &amp; Caribbean</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977913792ee0293e7b392a9_Santander-Card-Background-2.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977913792ee0293e7b392a9_Santander-Card-Background-2-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977913792ee0293e7b392a9_Santander-Card-Background-2.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>3GB</span><span> </span><span>Latin America &amp; Caribbean</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$353</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Ideal for casual browsing, navigation, and light social media users.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div><div role="listitem" class="products-item w-dyn-item"><a data-countries="Anguilla, Antigua and Barbuda, Argentina, Bahamas, Barbados, Belize, Bermuda, Bolivia, Bonaire, Sint Eustatius and Saba, Brazil, Cayman Islands, Chile, Colombia, Costa Rica, Cuba, Curaçao, Dominica, Dominican Republic, Ecuador, El Salvador, French Guiana, Grenada, Guadeloupe, Guatemala, Guyana, Honduras, Jamaica, Mexico, Montserrat, Nicaragua, Panama, Paraguay, Peru, Puerto Rico, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines, Sint Maarten (Dutch part), Suriname, Trinidad and Tobago, Turks and Caicos Islands, Uruguay, Venezuela, Virgin Islands (British)." href="/plans/5gb-latin-america-caribbean" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">5GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f3274_south-america-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">Latin America &amp; Caribbean</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779146a4798a7a333fee04_Santander-Card-Background-3.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779146a4798a7a333fee04_Santander-Card-Background-3-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779146a4798a7a333fee04_Santander-Card-Background-3.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>5GB</span><span> </span><span>Latin America &amp; Caribbean</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$530</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Perfect for streaming, video calls, and staying connected on the go.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div><div role="listitem" class="products-item w-dyn-item"><a data-countries="Anguilla, Antigua and Barbuda, Argentina, Bahamas, Barbados, Belize, Bermuda, Bolivia, Bonaire, Sint Eustatius and Saba, Brazil, Cayman Islands, Chile, Colombia, Costa Rica, Cuba, Curaçao, Dominica, Dominican Republic, Ecuador, El Salvador, French Guiana, Grenada, Guadeloupe, Guatemala, Guyana, Honduras, Jamaica, Mexico, Montserrat, Nicaragua, Panama, Paraguay, Peru, Puerto Rico, Saint Kitts and Nevis, Saint Lucia, Saint Vincent and the Grenadines, Sint Maarten (Dutch part), Suriname, Trinidad and Tobago, Turks and Caicos Islands, Uruguay, Venezuela, Virgin Islands (British)." href="/plans/10gb-latin-america-caribbean" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">10GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/697764e896f78e2ab18f3274_south-america-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">Latin America &amp; Caribbean</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779150318ae11bc54d1610_Santander-Card-Background-4.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779150318ae11bc54d1610_Santander-Card-Background-4-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779150318ae11bc54d1610_Santander-Card-Background-4.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>10GB</span><span> </span><span>Latin America &amp; Caribbean</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$776</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Great for heavy users who need reliable connectivity for work and play.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div></div></div></div></div><div role="listitem" class="w-dyn-item"><div data-group-content-id="north-america" x-show="group == $el.getAttribute(&#x27;data-group-content-id&#x27;)" class="product-group"><div class="product-group-header"><div tabindex="0" x-on:click="mode = &#x27;tabs&#x27;" role="button" class="product-group-back"><div class="product-group-back-arrow w-embed"><svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2755 5.7239C14.7962 6.2446 14.7962 7.08882 14.2755 7.60952L7.2183 14.6667L27.9993 14.6667C28.7357 14.6667 29.3327 15.2637 29.3327 16C29.3327 16.7364 28.7357 17.3334 27.9993 17.3334H7.2183L14.2755 24.3906C14.7962 24.9113 14.7962 25.7555 14.2755 26.2762C13.7548 26.7969 12.9106 26.7969 12.3899 26.2762L3.05654 16.9429C2.53584 16.4222 2.53584 15.5779 3.05654 15.0572L12.3899 5.7239C12.9106 5.2032 13.7548 5.2032 14.2755 5.7239Z" fill="currentColor"/>
</svg></div><div class="product-group-back-label">All destinations</div></div><div class="product-group-title"><div class="product-group-icon"><img loading="lazy" src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977898f578fbaa68f3efdf0_north-america.svg" alt=""/></div><div class="product-group-title-text">North America</div></div></div><div class="products-list-wrapper w-dyn-list"><div role="list" class="products-list w-dyn-items"><div role="listitem" class="products-item w-dyn-item"><a data-countries="Canada, Mexico, United States" href="/plans/1gb-north-america" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">1GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69778992ec5fa7d3b1dd210c_north-america-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">North America</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977912c03a909a0c4143297_Santander-Card-Background-1.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977912c03a909a0c4143297_Santander-Card-Background-1-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977912c03a909a0c4143297_Santander-Card-Background-1.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>1GB</span><span> </span><span>North America</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$106</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Designed for those who need only the essentials for short trips.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div><div role="listitem" class="products-item w-dyn-item"><a data-countries="Canada, Mexico, United States" href="/plans/3gb-north-america" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">3GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69778992ec5fa7d3b1dd210c_north-america-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">North America</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977913792ee0293e7b392a9_Santander-Card-Background-2.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977913792ee0293e7b392a9_Santander-Card-Background-2-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/6977913792ee0293e7b392a9_Santander-Card-Background-2.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>3GB</span><span> </span><span>North America</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$300</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Ideal for casual browsing, navigation, and light social media users.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div><div role="listitem" class="products-item w-dyn-item"><a data-countries="Canada, Mexico, United States" href="/plans/5gb-north-america" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">5GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69778992ec5fa7d3b1dd210c_north-america-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">North America</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779146a4798a7a333fee04_Santander-Card-Background-3.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779146a4798a7a333fee04_Santander-Card-Background-3-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779146a4798a7a333fee04_Santander-Card-Background-3.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>5GB</span><span> </span><span>North America</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$441</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Perfect for streaming, video calls, and staying connected on the go.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div><div role="listitem" class="products-item w-dyn-item"><a data-countries="Canada, Mexico, United States" href="/plans/10gb-north-america" class="product-teaser w-inline-block"><div class="product-card"><div class="product-card-header"><div class="product-card-header-left"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69779573b86c5f8356c51232_santander-logo-white.svg" loading="lazy" alt=""/></span></div><div class="product-card-header-right"><div> </div></div></div><div class="product-card-details"><div class="product-card-details-row"><div class="product-card-details-left"><div class="product-card-details-data-wrapper"><div class="product-card-details-data">10GB</div><span class="product-card-details-tag">eSIM</span></div><div class="product-card-details-meta"><span> Valid for </span><span>30</span><span> Days</span></div></div><div class="product-card-details-right"><div class="product-card-coverage"><div class="product-card-coverage-image"><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69778992ec5fa7d3b1dd210c_north-america-light.svg" loading="lazy" alt="" class="product-card-coverage-image-element"/></div><div class="product-card-coverage-content"><div class="product-card-coverage-label">Coverage</div><div class="product-card-coverage-value">North America</div></div></div></div></div></div><img src="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779150318ae11bc54d1610_Santander-Card-Background-4.jpg" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779150318ae11bc54d1610_Santander-Card-Background-4-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e896f78e2ab18f322e/69779150318ae11bc54d1610_Santander-Card-Background-4.jpg 750w" class="product-card-background"/></div><div class="product-teaser-title"><h4 class="product-teaser-name"><span>10GB</span><span> </span><span>North America</span></h4><div data-monto-convert-price="true" class="product-teaser-price">MX$793</div></div><div class="product-teaser-meta"><div class="product-teaser-meta-row"><div class="product-teaser-meta-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
  <g clip-path="url(#clip0_88_5111)" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round">
    <path d="M5.71261 9.64275C5.51537 9.64275 5.35547 9.48285 5.35547 9.28561C5.35547 9.08837 5.51537 8.92847 5.71261 8.92847" />
    <path d="M5.71289 9.64275C5.91013 9.64275 6.07003 9.48285 6.07003 9.28561C6.07003 9.08837 5.91013 8.92847 5.71289 8.92847" />
    <path d="M9.99777 9.64275C9.80053 9.64275 9.64062 9.48285 9.64062 9.28561C9.64062 9.08837 9.80053 8.92847 9.99777 8.92847" />
    <path d="M9.99805 9.64275C10.1953 9.64275 10.3552 9.48285 10.3552 9.28561C10.3552 9.08837 10.1953 8.92847 9.99805 8.92847" />
    <path d="M5.71261 14.6428C5.51537 14.6428 5.35547 14.4829 5.35547 14.2856C5.35547 14.0884 5.51537 13.9285 5.71261 13.9285" />
    <path d="M5.71289 14.6428C5.91013 14.6428 6.07003 14.4829 6.07003 14.2856C6.07003 14.0884 5.91013 13.9285 5.71289 13.9285" />
    <path d="M9.99777 14.6428C9.80053 14.6428 9.64062 14.4829 9.64062 14.2856C9.64062 14.0884 9.80053 13.9285 9.99777 13.9285" />
    <path d="M9.99805 14.6428C10.1953 14.6428 10.3552 14.4829 10.3552 14.2856C10.3552 14.0884 10.1953 13.9285 9.99805 13.9285" />
    <path d="M14.2849 9.64275C14.0876 9.64275 13.9277 9.48285 13.9277 9.28561C13.9277 9.08837 14.0876 8.92847 14.2849 8.92847" />
    <path d="M14.2852 9.64275C14.4824 9.64275 14.6423 9.48285 14.6423 9.28561C14.6423 9.08837 14.4824 8.92847 14.2852 8.92847" />
    <path d="M2.85631 3.57129C2.47742 3.57129 2.11406 3.7218 1.84615 3.9897C1.57825 4.25762 1.42773 4.62097 1.42773 4.99986V17.1427C1.42773 17.5216 1.57825 17.885 1.84615 18.1529C2.11406 18.4207 2.47742 18.5713 2.85631 18.5713H17.142C17.5209 18.5713 17.8843 18.4207 18.1522 18.1529C18.42 17.885 18.5706 17.5216 18.5706 17.1427V4.99986C18.5706 4.62097 18.42 4.25762 18.1522 3.9897C17.8843 3.7218 17.5209 3.57129 17.142 3.57129H2.85631Z" />
    <path d="M5 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
    <path d="M15 1.42847V5.71418" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
  </g>
  <defs>
    <clipPath id="clip0_88_5111">
      <rect width="20" height="20" fill="white"/>
    </clipPath>
  </defs>
</svg></div><div class="product-teaser-meta-text"><span>Valid for </span><span>30</span><span> days from arrival</span></div></div></div><div class="product-teaser-text">Great for heavy users who need reliable connectivity for work and play.</div><div class="product-teaser-button-row"><span data-wf--button-fake--variant="primary" id="" class="button"><div class="button-label">Select Plan</div></span></div></a></div></div></div></div></div></div></div></div></div></div></div></div></section><section class="section compacter"><div class="text-width-centered"><div data-wf--heading-with-text--variant="center" class="heading-with-text w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73"><h2 class="heading-with-text---header w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73">Chosen by travelers around the world</h2><div class="heading-text w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73"></div></div></div><div class="testimonial-slider"><div class="swiper swiper-testimonials w-dyn-list"><div role="list" class="swiper-wrapper w-dyn-items"><div role="listitem" class="swiper-slide w-dyn-item"><div class="testimonial-large"><div class="testimonial-quote-large">“I wouldn’t have managed without my Santander eSIM in London. I thought it would be hard to download, but it was easy to set up and the connection worked great.”</div><div class="testimonial-author"><div class="testimonial-name">Anna</div><div class="testimonial-product"><div class="testimonial-badge w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path fill="currentColor" fill-rule="evenodd" d="M8.835.437a1.429 1.429 0 0 1 2.057 0l1.171 1.216 1.622-.467a1.429 1.429 0 0 1 1.782 1.029l.407 1.638 1.638.406a1.429 1.429 0 0 1 1.029 1.782l-.467 1.622 1.215 1.172a1.428 1.428 0 0 1 0 2.057l-1.215 1.171.467 1.622a1.429 1.429 0 0 1-1.029 1.782l-1.638.407-.407 1.638a1.429 1.429 0 0 1-1.782 1.029l-1.622-.467-1.17 1.215a1.429 1.429 0 0 1-2.058 0l-1.172-1.215-1.622.467a1.429 1.429 0 0 1-1.782-1.029l-.406-1.638-1.638-.407a1.429 1.429 0 0 1-1.03-1.782l.468-1.622-1.216-1.17a1.429 1.429 0 0 1 0-2.058l1.216-1.172-.467-1.622A1.429 1.429 0 0 1 2.215 4.26l1.638-.406.406-1.638a1.429 1.429 0 0 1 1.782-1.03l1.622.468L8.835.437Zm5.39 7.417a1.072 1.072 0 0 0-1.673-1.338l-4.208 5.26-1.598-1.198a1.071 1.071 0 0 0-1.286 1.714l2.429 1.821a1.071 1.071 0 0 0 1.48-.187l4.857-6.072Z" clip-rule="evenodd"/></svg></div><span class="testimonial-product-text"><div>Verified Purchase</div><div>·</div><div>3GB Europe</div></span></div></div></div></div><div role="listitem" class="swiper-slide w-dyn-item"><div class="testimonial-large"><div class="testimonial-quote-large">&quot;Santander&#x27;s travel eSIM saved me money while travelling in Europe. I&#x27;ll definitely use them again next time I go away&quot;</div><div class="testimonial-author"><div class="testimonial-name">John</div><div class="testimonial-product"><div class="testimonial-badge w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path fill="currentColor" fill-rule="evenodd" d="M8.835.437a1.429 1.429 0 0 1 2.057 0l1.171 1.216 1.622-.467a1.429 1.429 0 0 1 1.782 1.029l.407 1.638 1.638.406a1.429 1.429 0 0 1 1.029 1.782l-.467 1.622 1.215 1.172a1.428 1.428 0 0 1 0 2.057l-1.215 1.171.467 1.622a1.429 1.429 0 0 1-1.029 1.782l-1.638.407-.407 1.638a1.429 1.429 0 0 1-1.782 1.029l-1.622-.467-1.17 1.215a1.429 1.429 0 0 1-2.058 0l-1.172-1.215-1.622.467a1.429 1.429 0 0 1-1.782-1.029l-.406-1.638-1.638-.407a1.429 1.429 0 0 1-1.03-1.782l.468-1.622-1.216-1.17a1.429 1.429 0 0 1 0-2.058l1.216-1.172-.467-1.622A1.429 1.429 0 0 1 2.215 4.26l1.638-.406.406-1.638a1.429 1.429 0 0 1 1.782-1.03l1.622.468L8.835.437Zm5.39 7.417a1.072 1.072 0 0 0-1.673-1.338l-4.208 5.26-1.598-1.198a1.071 1.071 0 0 0-1.286 1.714l2.429 1.821a1.071 1.071 0 0 0 1.48-.187l4.857-6.072Z" clip-rule="evenodd"/></svg></div><span class="testimonial-product-text"><div>Verified Purchase</div><div>·</div><div>10GB Europe</div></span></div></div></div></div><div role="listitem" class="swiper-slide w-dyn-item"><div class="testimonial-large"><div class="testimonial-quote-large">&quot;Landing in the US I had data straight away, no fiddling with plastic SIMs - it was so easy and quick!&quot;</div><div class="testimonial-author"><div class="testimonial-name">Andre</div><div class="testimonial-product"><div class="testimonial-badge w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"><path fill="currentColor" fill-rule="evenodd" d="M8.835.437a1.429 1.429 0 0 1 2.057 0l1.171 1.216 1.622-.467a1.429 1.429 0 0 1 1.782 1.029l.407 1.638 1.638.406a1.429 1.429 0 0 1 1.029 1.782l-.467 1.622 1.215 1.172a1.428 1.428 0 0 1 0 2.057l-1.215 1.171.467 1.622a1.429 1.429 0 0 1-1.029 1.782l-1.638.407-.407 1.638a1.429 1.429 0 0 1-1.782 1.029l-1.622-.467-1.17 1.215a1.429 1.429 0 0 1-2.058 0l-1.172-1.215-1.622.467a1.429 1.429 0 0 1-1.782-1.029l-.406-1.638-1.638-.407a1.429 1.429 0 0 1-1.03-1.782l.468-1.622-1.216-1.17a1.429 1.429 0 0 1 0-2.058l1.216-1.172-.467-1.622A1.429 1.429 0 0 1 2.215 4.26l1.638-.406.406-1.638a1.429 1.429 0 0 1 1.782-1.03l1.622.468L8.835.437Zm5.39 7.417a1.072 1.072 0 0 0-1.673-1.338l-4.208 5.26-1.598-1.198a1.071 1.071 0 0 0-1.286 1.714l2.429 1.821a1.071 1.071 0 0 0 1.48-.187l4.857-6.072Z" clip-rule="evenodd"/></svg></div><span class="testimonial-product-text"><div>Verified Purchase</div><div>·</div><div>5GB North America</div></span></div></div></div></div></div></div><div class="swiper-controls w-embed"><div class="swiper-button-next"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m9.929 6.5 5.142 5.143-5.142 5.143"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M11.643 22.786c6.154 0 11.143-4.989 11.143-11.143C22.786 5.489 17.797.5 11.643.5 5.489.5.5 5.489.5 11.643c0 6.154 4.989 11.143 11.143 11.143Z"/></svg></div>
<div class="swiper-button-prev"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m13.357 6.5-5.143 5.143 5.143 5.143"/><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M11.643 22.786c6.154 0 11.143-4.989 11.143-11.143C22.786 5.489 17.797.5 11.643.5 5.489.5.5 5.489.5 11.643c0 6.154 4.989 11.143 11.143 11.143Z"/></svg></div></div></div></section><section id="howitworks" class="section compacter"><div class="w-layout-blockcontainer container mobile-fullwidth w-container"><div class="how-it-works-container"><div class="text-width-centered"><div data-wf--heading-with-text--variant="center" class="heading-with-text w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73"><h2 class="heading-with-text---header w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73">How eSIMs work</h2><div class="heading-text w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73">Experience roaming the way it should be. Simple and seamless, with no surprises.</div></div></div><div class="bento-row taller w-row"><div class="bento-column w-col w-col-4"><div data-wf--card--variant="base" class="card"><div class="card-content"><div class="card-subheader">Step 1</div><h3 class="card-header">Choose your plan</h3><div class="card-text">Browse destinations and choose a data plan that fits your trip. </div></div><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6978b93a95f547b0c1d5bfad_Santader-Step-1.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 96vw, (max-width: 991px) 229px, 300px, 100vw" srcset="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6978b93a95f547b0c1d5bfad_Santader-Step-1-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6978b93a95f547b0c1d5bfad_Santader-Step-1.jpg 760w" class="card-image"/></div></div><div class="bento-column w-col w-col-4"><div data-wf--card--variant="base" class="card"><div class="card-content"><div class="card-subheader">Step 2</div><h3 class="card-header">Install your eSIM</h3><div class="card-text">Install your eSIM with a tap of your phone  - no plastic SIM card needed.</div></div><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6978b93a74f0217d37e8b112_Santader-Step-2.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 96vw, (max-width: 991px) 229px, 300px, 100vw" srcset="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6978b93a74f0217d37e8b112_Santader-Step-2-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6978b93a74f0217d37e8b112_Santader-Step-2.jpg 760w" class="card-image"/></div></div><div class="bento-column w-col w-col-4"><div data-wf--card--variant="base" class="card"><div class="card-content"><div class="card-subheader">Step 3</div><h3 class="card-header">Activate and enjoy</h3><div class="card-text">Activate your eSIM on arrival and connect instantly to local networks. </div></div><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6978b93a95ff7c198929ecc9_Santader-Step-3.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 96vw, (max-width: 991px) 229px, 300px, 100vw" srcset="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6978b93a95ff7c198929ecc9_Santader-Step-3-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/6978b93a95ff7c198929ecc9_Santader-Step-3.jpg 760w" class="card-image"/></div></div></div></div></div></section><section id="benefits" class="section compacter"><div class="w-layout-blockcontainer container indent w-container"><div class="vertical-block-80"><div class="text-width-centered"><div data-wf--heading-with-text--variant="center" class="heading-with-text w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73"><h2 class="heading-with-text---header w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73">The benefits of using an eSIM abroad</h2><div class="heading-text w-variant-ebc4a4ac-f1aa-4e61-23cd-8e414c12bd73">eSIM is the easiest and most cost-effective way to stay connected when travelling. </div></div></div><div class="bento"><div class="bento-row compact w-row"><div class="bento-column w-col w-col-7 w-col-stack"><div data-wf--card--variant="alt" class="card"><div class="card-content"><div class="card-subheader w-variant-a38e3304-1620-b9f3-887b-23edc56dfd0a">Worry free roaming</div><h3 class="card-header w-variant-a38e3304-1620-b9f3-887b-23edc56dfd0a">170+ countries, no surprise fees</h3><div class="card-text"> </div></div><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275a1bbe3738cf433ae_Santander-bento-1.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 96vw, (max-width: 991px) 229px, 300px, 100vw" srcset="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275a1bbe3738cf433ae_Santander-bento-1-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275a1bbe3738cf433ae_Santander-bento-1-p-800.jpg 800w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275a1bbe3738cf433ae_Santander-bento-1-p-1080.jpg 1080w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275a1bbe3738cf433ae_Santander-bento-1.jpg 1280w" class="card-image w-variant-a38e3304-1620-b9f3-887b-23edc56dfd0a"/></div></div><div class="bento-column w-col w-col-5 w-col-stack"><div data-wf--card--variant="alt" class="card"><div class="card-content"><div class="card-subheader w-variant-a38e3304-1620-b9f3-887b-23edc56dfd0a">High speed data</div><h3 class="card-header w-variant-a38e3304-1620-b9f3-887b-23edc56dfd0a">Reliable, fast connectivity</h3><div class="card-text"> </div></div><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/698f14f8c0f963205901a6d0_Santander-bento-2%20(1).png" loading="lazy" alt="" sizes="(max-width: 767px) 96vw, (max-width: 991px) 229px, 300px, 100vw" srcset="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/698f14f8c0f963205901a6d0_Santander-bento-2%20(1)-p-500.png 500w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/698f14f8c0f963205901a6d0_Santander-bento-2%20(1)-p-800.png 800w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/698f14f8c0f963205901a6d0_Santander-bento-2%20(1).png 846w" class="card-image w-variant-a38e3304-1620-b9f3-887b-23edc56dfd0a"/></div></div></div><div class="bento-row w-row"><div class="bento-column w-col w-col-4"><div data-wf--card--variant="base" class="card"><div class="card-content"><div class="card-subheader">Quick activation</div><h3 class="card-header">Get started in minutes</h3><div class="card-text"> </div></div><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275126cc2373cb48491_Santander-bento-2.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 96vw, (max-width: 991px) 229px, 300px, 100vw" srcset="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275126cc2373cb48491_Santander-bento-2-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275126cc2373cb48491_Santander-bento-2-p-800.jpg 800w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275126cc2373cb48491_Santander-bento-2.jpg 1056w" class="card-image"/></div></div><div class="bento-column w-col w-col-4"><div data-wf--card--variant="alt" class="card"><div class="card-content"><div class="card-subheader w-variant-a38e3304-1620-b9f3-887b-23edc56dfd0a">Top-up your data anytime</div><h3 class="card-header w-variant-a38e3304-1620-b9f3-887b-23edc56dfd0a">Add extra data in a tap</h3><div class="card-text"> </div></div><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275649e5f6c1ea3b541_Santander-bento-4.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 96vw, (max-width: 991px) 229px, 300px, 100vw" srcset="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275649e5f6c1ea3b541_Santander-bento-4-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275649e5f6c1ea3b541_Santander-bento-4.jpg 724w" class="card-image w-variant-a38e3304-1620-b9f3-887b-23edc56dfd0a"/></div></div><div class="bento-column w-col w-col-4"><div data-wf--card--variant="base" class="card"><div class="card-content"><div class="card-subheader">Hotspot supported</div><h3 class="card-header">Connect multiple devices</h3><div class="card-text"> </div></div><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275afbb4e54d2ae5382_Santander-bento-5.jpg" loading="lazy" alt="" sizes="(max-width: 767px) 96vw, (max-width: 991px) 229px, 300px, 100vw" srcset="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275afbb4e54d2ae5382_Santander-bento-5-p-500.jpg 500w, https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69778275afbb4e54d2ae5382_Santander-bento-5.jpg 724w" class="card-image"/></div></div></div></div></div></div></section><section class="section"><div class="w-layout-blockcontainer container indent w-container"><div id="faqs" class="faqs-columns"><div class="faqs-col-1"><div data-wf--heading-with-text--variant="left" class="heading-with-text"><h2 class="heading-with-text---header">Frequently asked questions</h2><div class="heading-text">Got questions? Find answers.</div></div></div><div class="faqs-col-2"><div class="faq-collection-wrapper w-dyn-list"><div role="list" class="faq-collection w-dyn-items"><div role="listitem" class="faq-collection-item w-dyn-item"><div class="accordion-item"><div data-w-id="11e0fc87-a537-0853-6432-29a25155697e" class="accordion-opener"><div class="accordion-title">What happens if I run out of data?</div><div class="accordion-chevron w-embed"><svg width="32" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.53 21.773a.75.75 0 0 1-1.06 0l-7.647-7.647a.75.75 0 0 1 0-1.06l.354-.354a.75.75 0 0 1 1.06 0L16 19.475l6.763-6.763a.75.75 0 0 1 1.06 0l.354.354a.75.75 0 0 1 0 1.06l-7.647 7.647Z" fill="currentColor"/></svg></div></div><div class="accordion-content"><div class="accordion-text w-richtext"><p>You can easily top up your data online by logging in to &quot;My Account&quot;. We&#x27;ll notify you as you approach your limit, so you stay connected without interruptions.</p></div></div></div></div><div role="listitem" class="faq-collection-item w-dyn-item"><div class="accordion-item"><div data-w-id="11e0fc87-a537-0853-6432-29a25155697e" class="accordion-opener"><div class="accordion-title">How can I check coverage in my area?</div><div class="accordion-chevron w-embed"><svg width="32" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.53 21.773a.75.75 0 0 1-1.06 0l-7.647-7.647a.75.75 0 0 1 0-1.06l.354-.354a.75.75 0 0 1 1.06 0L16 19.475l6.763-6.763a.75.75 0 0 1 1.06 0l.354.354a.75.75 0 0 1 0 1.06l-7.647 7.647Z" fill="currentColor"/></svg></div></div><div class="accordion-content"><div class="accordion-text w-richtext"><p>Your phone will be automatically connected to the strongest network, ensuring the best possible coverage wherever you are.</p></div></div></div></div><div role="listitem" class="faq-collection-item w-dyn-item"><div class="accordion-item"><div data-w-id="11e0fc87-a537-0853-6432-29a25155697e" class="accordion-opener"><div class="accordion-title">How will I get my SIM?</div><div class="accordion-chevron w-embed"><svg width="32" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.53 21.773a.75.75 0 0 1-1.06 0l-7.647-7.647a.75.75 0 0 1 0-1.06l.354-.354a.75.75 0 0 1 1.06 0L16 19.475l6.763-6.763a.75.75 0 0 1 1.06 0l.354.354a.75.75 0 0 1 0 1.06l-7.647 7.647Z" fill="currentColor"/></svg></div></div><div class="accordion-content"><div class="accordion-text w-richtext"><p>Our SIM is an eSIM, which means there is no need for any shipping. eSIMs are the digital equivalent of a regular SIM card. You can install your eSIM on your phone and get connected almost immediately. As soon as you complete the checkout and the subscription is active, we will send you an email with instructions on how to install your new eSIM. Some devices don&#x27;t support eSIMs. You can check compatibility below.</p></div></div></div></div><div role="listitem" class="faq-collection-item w-dyn-item"><div class="accordion-item"><div data-w-id="11e0fc87-a537-0853-6432-29a25155697e" class="accordion-opener"><div class="accordion-title">Are there any hidden fees?</div><div class="accordion-chevron w-embed"><svg width="32" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.53 21.773a.75.75 0 0 1-1.06 0l-7.647-7.647a.75.75 0 0 1 0-1.06l.354-.354a.75.75 0 0 1 1.06 0L16 19.475l6.763-6.763a.75.75 0 0 1 1.06 0l.354.354a.75.75 0 0 1 0 1.06l-7.647 7.647Z" fill="currentColor"/></svg></div></div><div class="accordion-content"><div class="accordion-text w-richtext"><p>No, there are no hidden fees. All charges are displayed before you pay.</p></div></div></div></div><div role="listitem" class="faq-collection-item w-dyn-item"><div class="accordion-item"><div data-w-id="11e0fc87-a537-0853-6432-29a25155697e" class="accordion-opener"><div class="accordion-title">How do I know if my device is eSIM compatible?</div><div class="accordion-chevron w-embed"><svg width="32" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.53 21.773a.75.75 0 0 1-1.06 0l-7.647-7.647a.75.75 0 0 1 0-1.06l.354-.354a.75.75 0 0 1 1.06 0L16 19.475l6.763-6.763a.75.75 0 0 1 1.06 0l.354.354a.75.75 0 0 1 0 1.06l-7.647 7.647Z" fill="currentColor"/></svg></div></div><div class="accordion-content"><div class="accordion-text w-richtext"><p><strong>Most newer smartphones support eSIM. Generally:</strong></p><ul role="list"><li><strong>iPhones</strong>: Models released in the last 6 years (from iPhone XR and newer).</li><li><strong>Samsung Galaxy</strong>: Most models from S21 onwards.</li><li><strong>Google Pixel</strong>: From Pixel 4a and newer.</li><li><strong>Other Brands</strong>: Many flagship models from OnePlus, Xiaomi, and other major brands.</li></ul><p><strong>Check compatibility easily:</strong></p><ul role="list"><li><strong>Option 1:</strong> Go to your phone’s <strong>Settings &gt; Mobile Network &gt; Add eSIM</strong>. If you see this option, your device is eSIM compatible.</li><li><strong>Option 2:</strong> Visit the Manufacturer’s Compatibility Page for the latest information.</li></ul><p><strong>Important notes:</strong></p><ul role="list"><li><strong>Carrier unlock required</strong>: Your device must be carrier unlocked to use an eSIM.</li><li><strong>Regional limitations</strong>: Devices sold in China may not support eSIM, even if the model does in other countries.</li></ul><p>‍</p></div></div></div></div><div role="listitem" class="faq-collection-item w-dyn-item"><div class="accordion-item"><div data-w-id="11e0fc87-a537-0853-6432-29a25155697e" class="accordion-opener"><div class="accordion-title">How do I know if my device is unlocked?</div><div class="accordion-chevron w-embed"><svg width="32" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.53 21.773a.75.75 0 0 1-1.06 0l-7.647-7.647a.75.75 0 0 1 0-1.06l.354-.354a.75.75 0 0 1 1.06 0L16 19.475l6.763-6.763a.75.75 0 0 1 1.06 0l.354.354a.75.75 0 0 1 0 1.06l-7.647 7.647Z" fill="currentColor"/></svg></div></div><div class="accordion-content"><div class="accordion-text w-richtext"><p>Your device must be carrier unlocked to use an eSIM plan. If you&#x27;re unsure whether your device is carrier unlocked, you can find out via your device settings. Reference the Carrier Lock description in your settings to determine your device status. “No SIM restrictions” means that your device is unlocked. If you don&#x27;t see that message, please contact customer support.</p></div></div></div></div><div role="listitem" class="faq-collection-item w-dyn-item"><div class="accordion-item"><div data-w-id="11e0fc87-a537-0853-6432-29a25155697e" class="accordion-opener"><div class="accordion-title">Which payment methods are accepted?</div><div class="accordion-chevron w-embed"><svg width="32" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.53 21.773a.75.75 0 0 1-1.06 0l-7.647-7.647a.75.75 0 0 1 0-1.06l.354-.354a.75.75 0 0 1 1.06 0L16 19.475l6.763-6.763a.75.75 0 0 1 1.06 0l.354.354a.75.75 0 0 1 0 1.06l-7.647 7.647Z" fill="currentColor"/></svg></div></div><div class="accordion-content"><div class="accordion-text w-richtext"><p>You can use Apple Pay and Google Pay for safe and easy payments. We also accept all major credit and debit cards including:<br/>‍</p><ul role="list"><li>VISA</li><li>Mastercard</li><li>Maestro</li><li>American Express</li><li>Discover</li><li>JCB</li><li>UnionPay</li></ul></div></div></div></div><div role="listitem" class="faq-collection-item w-dyn-item"><div class="accordion-item"><div data-w-id="11e0fc87-a537-0853-6432-29a25155697e" class="accordion-opener"><div class="accordion-title">Can I keep my phone number?</div><div class="accordion-chevron w-embed"><svg width="32" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16.53 21.773a.75.75 0 0 1-1.06 0l-7.647-7.647a.75.75 0 0 1 0-1.06l.354-.354a.75.75 0 0 1 1.06 0L16 19.475l6.763-6.763a.75.75 0 0 1 1.06 0l.354.354a.75.75 0 0 1 0 1.06l-7.647 7.647Z" fill="currentColor"/></svg></div></div><div class="accordion-content"><div class="accordion-text w-richtext"><p>Of course, you can keep your existing SIM and phone number while using eSIM. Your WhatsApp phone number will remain the same when using eSIM. </p></div></div></div></div></div></div></div></div></div></section><div class="footer"><div class="w-layout-blockcontainer container w-container"><div class="footer-wrapper"><div class="footer-row"><div class="footer-logo"><a href="/" aria-current="page" class="brand w-nav-brand w--current"><span class="brand"><img src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/69776ea3f691a715a94682c7_santander-logo.svg" loading="lazy" alt=""/></span></a></div><nav class="footer-nav"><a href="/#plans" class="footer-nav-link">Plans</a><a href="/#howitworks" class="footer-nav-link">How eSIMs work</a><a href="/#benefits" class="footer-nav-link">Benefits</a><a href="/#faqs" class="footer-nav-link">FAQs</a><a href="/#faqs" class="footer-nav-link">My Account</a></nav></div><div class="footer-meta"><div class="footer-meta-left"><div class="footer-copyright">© 2026 Santander. All rights reserved.</div></div><div class="footer-meta-right"></div></div></div></div></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=697764e696f78e2ab18f318e" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/js/webflow.schunk.36b8fb49256177c8.js" type="text/javascript" integrity="sha384-4abIlA5/v7XaW1HMXKBgnUuhnjBYJ/Z9C1OSg4OhmVw9O3QeHJ/qJqFBERCDPv7G" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/js/webflow.schunk.811210bd722e3843.js" type="text/javascript" integrity="sha384-UKYFJll37qMYETHPx4qfc3hzDwtLumhygyI550MUFxkATX3hJ/iEzcD1e7JbCHi4" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/697764e696f78e2ab18f318e/js/webflow.a7df29cf.f6efd5cd8643ba19.js" type="text/javascript" integrity="sha384-rWvSdjMnueEkU6KpBObvaBEIl5ZXIZd3/t+pJYkGF6SqpqugVoQcGmUFGXjxgnht" crossorigin="anonymous"></script><script src="https://cdn.jsdelivr.net/npm/swiper@12/swiper-bundle.min.js"></script>

<script>
  const swiper = new Swiper('.swiper-testimonials', {
    navigation: {
      nextEl: ".swiper-button-next",
      prevEl: ".swiper-button-prev",
    },
    slidesPerView: 1,
  });
</script>

<script>
  ;(() => {
    const cssEscape = (v) =>
      window.CSS && CSS.escape
        ? CSS.escape(String(v))
        : String(v).replace(/"/g, '\\"')

    function truthyAttr(el, name, fallback = false) {
      const v = el?.getAttribute(name)
      if (v == null) return fallback
      return /^(1|true|yes|on)$/i.test(String(v).trim())
    }

    function stripEmoji(input) {
      const s = String(input ?? "")
      return s
        .replace(/[\u200D\uFE0E\uFE0F]/g, "")
        .replace(/[\u{1F1E6}-\u{1F1FF}]/gu, "")
        .replace(/[\p{Extended_Pictographic}]/gu, "")
        .replace(/\s+/g, " ")
        .trim()
    }

    function normalizeCountryName(raw, { isLast } = { isLast: false }) {
      let s = stripEmoji(raw).replace(/^\.+/, "").replace(/\s+/g, " ").trim()
      if (isLast) s = s.replace(/\.$/, "")
      return s
    }

    function parseCountriesList(csv) {
      const parts = String(csv || "").split(",")
      return parts
        .map((s, i) =>
          normalizeCountryName(s, { isLast: i === parts.length - 1 })
        )
        .filter(Boolean)
    }

    function collectCountriesForGroup(productNavEl, groupId) {
      const groupEl = productNavEl.querySelector(
        `.product-group[data-group-content-id="${cssEscape(groupId)}"]`
      )
      if (!groupEl) return []

      const out = new Set()
      groupEl.querySelectorAll("a[data-countries]").forEach((a) => {
        parseCountriesList(a.getAttribute("data-countries")).forEach((c) =>
          out.add(c)
        )
      })
      return Array.from(out)
    }

    function buildOptions(productNavEl, settings) {
      const groupMeta = new Map()

      productNavEl
        .querySelectorAll("[data-tab-content-id]")
        .forEach((panel) => {
          const tabId = panel.getAttribute("data-tab-content-id")

          panel.querySelectorAll("[data-group-id]").forEach((navcard) => {
            const groupId = navcard.getAttribute("data-group-id")
            if (!groupId || groupMeta.has(groupId)) return

            const label =
              navcard.querySelector(".navcard-header")?.textContent?.trim() ||
              groupId

            const imgEl = navcard.querySelector(".navcard-icon img")
            const iconSrc = imgEl?.getAttribute("src") || ""
            const iconAlt = imgEl?.getAttribute("alt") || ""

            groupMeta.set(groupId, {
              groupId,
              tabId,
              label,
              iconSrc,
              iconAlt,
              countries: [],
            })
          })
        })

      for (const meta of groupMeta.values()) {
        meta.countries = collectCountriesForGroup(productNavEl, meta.groupId)
      }

      const options = []
      const labelSet = new Set(
        Array.from(groupMeta.values()).map((m) => m.label)
      )

      for (const meta of groupMeta.values()) {
        options.push({
          id: `group:${meta.groupId}`,
          text: meta.label,
          tabId: meta.tabId,
          groupId: meta.groupId,
          keywords: [meta.label, ...(meta.countries || [])].join(" "),
          iconSrc: meta.iconSrc,
          iconAlt: meta.iconAlt,
        })
      }

      if (settings.includeAllCountries) {
        const allCovering = new Map()
        for (const meta of groupMeta.values()) {
          meta.countries.forEach((country) => {
            if (!allCovering.has(country)) allCovering.set(country, [])
            allCovering.get(country).push(meta)
          })
        }

        const countryToBest = new Map()
        for (const [country, metas] of allCovering.entries()) {
          const dedicated = metas.find((m) => (m.countries?.length || 0) === 1)
          if (dedicated) {
            countryToBest.set(country, dedicated)
          } else {
            let best = metas[0]
            for (const m of metas) {
              if ((m.countries?.length || 0) < (best.countries?.length || 0))
                best = m
            }
            countryToBest.set(country, best)
          }
        }

        for (const [country, bestMeta] of countryToBest.entries()) {
          if (labelSet.has(country)) continue

          options.push({
            id: `country:${country.toLowerCase()}`,
            text: country,
            tabId: bestMeta.tabId,
            groupId: bestMeta.groupId,
            keywords: country,
            iconSrc: settings.useFallbackIcons ? bestMeta.iconSrc : "",
            iconAlt: settings.useFallbackIcons ? bestMeta.iconAlt : "",
          })
        }
      }

      options.sort((a, b) => a.text.localeCompare(b.text))
      return options
    }

    function scrollToProductNav(productNavEl) {
      const doScroll = () => {
        productNavEl.scrollIntoView({ behavior: "smooth", block: "start" })
      }

      // If Alpine is present, wait for state-driven DOM changes before scrolling
      if (window.Alpine && typeof Alpine.nextTick === "function") {
        Alpine.nextTick(() => requestAnimationFrame(doScroll))
      } else {
        requestAnimationFrame(doScroll)
      }
    }

    function initOne(productNavEl) {
      if (productNavEl.__ts_inited) return
      if (!window.TomSelect) return

      const input =
        productNavEl.querySelector("[data-product-search]") ||
        document.querySelector("[data-product-search]")
      if (!input) return

      if (input.tomselect) {
        productNavEl.__ts_inited = true
        return
      }

      const settings = {
        includeAllCountries: truthyAttr(
          input,
          "data-include-all-countries",
          false
        ),
        useFallbackIcons: truthyAttr(input, "data-use-fallback-icons", false),
      }

      const options = buildOptions(productNavEl, settings)

      const ts = new TomSelect(input, {
        options,
        items: [],
        valueField: "id",
        labelField: "text",
        searchField: ["text", "keywords"],
        create: false,
        persist: false,
        closeAfterSelect: true,
        maxOptions: null,
        plugins: {
          clear_button: {
            html: (data) => {
              return `
                <button type="button" class="${data.className}" title="${data.title}">
                  <span class="ts-clear-button-icon">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 6L6 18"></path><path d="M6 6l12 12"></path></svg>
                  </span>
                </button>
              `
            },
          },
        },

        render: {
          option: (item, escape) => `
          <div class="ts-row">
            <span class="ts-flag" aria-hidden="true">${
              item.iconSrc
                ? `<img src="${escape(item.iconSrc)}" alt="${escape(
                    item.iconAlt || ""
                  )}">`
                : ``
            }</span>
            <span class="ts-label">${escape(item.text)}</span>
          </div>
        `,
          item: (item, escape) => `
          <div class="ts-row">
            <span class="ts-flag" aria-hidden="true">${
              item.iconSrc
                ? `<img src="${escape(item.iconSrc)}" alt="${escape(
                    item.iconAlt || ""
                  )}">`
                : ``
            }</span>
            <span class="ts-label">${escape(item.text)}</span>
          </div>
        `,
        },

        onItemAdd: function (id) {
          const item = this.options[id]
          if (!item) return

          const targetGroupId = item.groupId

          if (window.Alpine) {
            const data = Alpine.$data(productNavEl)
            data.tab = item.tabId
            data.group = targetGroupId
            data.mode = "products"
          } else {
            const navcard = productNavEl.querySelector(
              `[data-group-id="${cssEscape(targetGroupId)}"]`
            )
            if (navcard) navcard.click()
          }

          requestAnimationFrame(() => ts.blur())
          scrollToProductNav(productNavEl)
        },
      })

      input.addEventListener("focus", () => ts.open())

      productNavEl.__ts_inited = true
    }

    function initAll() {
      document.querySelectorAll(".product-nav").forEach(initOne)
    }

    function startWhenReady() {
      initAll()

      if (!window.TomSelect) {
        let tries = 0
        const maxTries = 200 // ~10s at 50ms
        const interval = setInterval(() => {
          tries++
          initAll()
          if (window.TomSelect || tries >= maxTries) clearInterval(interval)
        }, 50)
      }
    }

    if (window.Webflow && Array.isArray(window.Webflow))
      window.Webflow.push(startWhenReady)
    else if (document.readyState === "loading")
      document.addEventListener("DOMContentLoaded", startWhenReady)
    else startWhenReady()
  })()
</script>
</body></html>
Return to 0xSI_f33d